Search results for query: *

  1. BrechtLS

    Commandprompt and vb.net

    It did suprise me too but it seems to be the only way to make it work again.
  2. BrechtLS

    Commandprompt and vb.net

    I mean I have to delete next code and type it in again: Private Sub GetProcessText(ByVal process As String, ByVal param As String, ByVal workingDir As String) Dim p As Process = New Process 'This is the name of the process we want to execute p.StartInfo.FileName = process If Not...
  3. BrechtLS

    Commandprompt and vb.net

    I'll repeat my last question. When I use this code: Shared Function GetProcessText(ByVal process As String, ByVal param As String, ByVal workingDir As String) As String Dim p As Process = New Process ' this is the name of the process we want to execute p.StartInfo.FileName = process If...
  4. BrechtLS

    Commandprompt and vb.net

    I got a couple of problems with that code: If I use the code in the function, all the lines stand after eachother. When I use the code in the sub it first works great but after a couple of times I don't get anything anymore (its totaly blank), I need to input the code again to make it work...
  5. BrechtLS

    Commandprompt and vb.net

    Hi, I should want to add a command (for example "ipconfig") to the commandprompt and use the output of the command in my program (show it in a textbox, ...). It is the meaning that the user of the program doesn't has to do anything in the commandprompt. And that the commandprompt closes...
  6. BrechtLS

    Text box date/time format

    I'm not sure, but I think you mean something like this: dim dteDatum as date dteDatum = cDate(textbox1.text) With this the text from the textbox is converted to a date.
  7. BrechtLS

    Printing WITH layout (colors, style, size etc)

    Take a look at this: http://vbdotnetforums.com/showthread.php?t=9741
  8. BrechtLS

    all files and folders in a treeview

    Hi, how can you put all the folders and the filles into a treeview component (I only want to get to see all the picture extensions (jpg, gif,...). Or is there a better way to show all those files? I want to show an example of the selected picture in a picturebox. So I should get the right...
  9. BrechtLS

    How to make a install wizard?!

    Ok, thanks!
  10. BrechtLS

    Print with layout

    Thanks a lot it works! Now I can finally finish my program. Thans for the help!
  11. BrechtLS

    Print with layout

    Well the programs exist of textboxes, listboxes, ... And it has to be possible to print a text, but this text exists out of different fonts. The text exists out of a standard text and the text that is filled in in the textboxes, listboxes,... It was possible for me to put this text in a rich...
  12. BrechtLS

    How to make a install wizard?!

    I have downloaded InnoSetup now and I saw that it exist only out of code, but I don't know this code. But I have found a program that automatically generates the code, so it will probably be easier for me, but it's al large program so I will need some time to figure it out. Thanks for the help...
  13. BrechtLS

    Textbox to database

    Ok, I will search some when I can and try a couple of things out. I'll see what it gives. Thanks!
  14. BrechtLS

    numbers or characters in a textbox

    Thanks a lot I was searching for this for some while now!
  15. BrechtLS

    Print with layout

    Hi, I have a problem. I want to print a text that has layout, but the problem is that al the ways I tried just print the text without the layout. For example this: My name My place of birth The date The text gets stipulated in the program and if I press print it has to be filled in some...
  16. BrechtLS

    How to make a install wizard?!

    Thanks it works, but at some points I am not totally happy about the result. How can you make your own install wizard? so you can make it in your own language, decide yourself where he has to set the files, and how can you make an extra map on the hard disk with the install wizard for example...
  17. BrechtLS

    Why empty textfile?

    Ah, I didn't see that you can do it that way. Thanks a lot!
  18. BrechtLS

    Why empty textfile?

    Thanks it works now! Do I have to close the readstream also? And another question I have is how can you convert the text in the file to a string?? I have tried to convert it but he gives an error. Is there a way to convert that so I can use the text from the file in my application??
  19. BrechtLS

    Why empty textfile?

    Is there someone who knows why the textfile I create this way is empty?: Dim oFile As System.IO.File Dim oWrite As System.IO.StreamWriter oWrite = oFile.CreateText("c:\Duiven\" & txtNG.Text & "_" & txtRGN.Text & "-" & txtRGJ.Text & ".txt") oWrite.WriteLine(txtNG.Text & "<" & txtRGN.Text & "<" &...
Back
Top