Search:

Type: Posts; User: I Love VB6

Page 1 of 10 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    8
    Views
    1,074

    Re: [RESOLVED] Lost Books of the _________

    Where did you get that silly idea:)
  2. Replies
    7
    Views
    1,079

    Re: Writing Usernames | CSV File | Issue

    One further note: You should change your For loop to:
    For Index = 1 To Index
    or move your
    NumUser = NumUser + 1 line
    after you write the file otherwise you get an extra line in your output...
  3. Replies
    7
    Views
    1,079

    Re: Writing Usernames | CSV File | Issue

    Index = NumUser and NumUser is probably defined as Public in a .BAS mod and is incremented by 1 each time in the sub so Index will alway have the same value as the number of times into the sub.
    ...
  4. Replies
    7
    Views
    1,079

    Re: Writing Usernames | CSV File | Issue

    If you don't type in a user name it will result in a null field. It looks like only user C was actually entered and the other 3 (not 2) nothing was entered
  5. Re: Combo Box | IF Statement | Command Button

    That's exactly what I mean. That has already been answered in posts 5 and 9. If those do not answer your question then you need to explain further what you are doing with these names once selected....
  6. Re: Combo Box | IF Statement | Command Button

    What do you mean by usernames can be added to the program? They can be added during design time or added during run-time?

    If you select Miser, then when you click on the button you have two...
  7. Re: Combo Box | IF Statement | Command Button

    nvm...
  8. Re: [RESOLVED] Input Past End of File | Not at End of File

    You use #FF in all of your open statements but I do not see where you have initialized it with a value. Usually, as I know it, you initialize it like this: FF = FreeFile but I don't see that...
  9. Re: How about we make a VB7 (upgrade version of VB6)

    How about you make it and the rest of us will try to help you with your design and code questions
  10. Re: saved listview1 record in record.txt but this method

    Your ListView shows items like this:

    1111111
    1111112
    1111113
    1111114
    1111115

    But you say your file looks like this
  11. Replies
    2
    Views
    4,204

    Re: How to create Animated GIFs

    I think joaquim has animated gif code examples in the Code Bank
  12. Re: saved listview1 record in record.txt but this method

    long file not saved because you did not ask for it to be saved. if you had wanted it to be saved then why didn't you say so in your first post
  13. Re: saved listview1 record in record.txt but this method

    Each time through the loop it saves as a new text line in the file so your first picture is how it should be saved. If you want it like your second picture then you need to concatenate each record...
  14. Replies
    5
    Views
    976

    Re: missing statement insert into

    Your question needs to asked in the VB.NET Forum. I asked moderator to move it there
  15. Re: Moving a text file to the users desktop (screen)

    Another excellent code example I'll add to my arsenal
  16. Re: Moving a text file to the users desktop (screen)

    Above post refers to post #5, not post #6
  17. Re: Moving a text file to the users desktop (screen)

    Have you tried moving the file to "...\User\All Users\Desktop\File Name
  18. Re: Moving a text file to the users desktop (screen)

    I think he stating that he uses SHGetFolderPath instead of FileSystemObject

    I don't know much about OS's but I was just thinking isn't there somplace on the system where the name of the current...
  19. Thread: Query files

    by I Love VB6
    Replies
    7
    Views
    1,032

    Re: Query files

    Oh so it is:blush:
  20. Re: Text save error when the pc shutdown or restart

    Saving data will always be external to the program and I suspect that you will always have some sort of problem under these circumstances so it probably doesn't matter. I do not know if there is any...
  21. Thread: Query files

    by I Love VB6
    Replies
    7
    Views
    1,032

    Re: Query files

    That would have been my guess but OP stated the time was 13:25 and I could not find anything that 13:25 could be converted to 140245. I tried minutes, and seconds but they don' compute
  22. Re: Text save error when the pc shutdown or restart

    Doesn't make sense
  23. Re: [RESOLVED] How to position a form over a specific area on another form?

    Very nice, Magic. Now if you will excuse me I need to go and learn VB:D

    One thing I will say: you need to close the keyboard Form when you close the app otherwise it will remain hanging


    ...
  24. Re: How to position a form over a specific area on another form?

    Actually, you don't even need the label

    Keyboard.Move Me.Left, Me.Top + n
    Keyboard.Show

    where n is the offset from the top of your main Form to the position where you want the top of the...
  25. Re: How to position a form over a specific area on another form?

    You can place a small invisible label where it's upper left corner is the same position where you want to place the keyboard form. When you are ready to load the keyboard Form just move it to...
  26. Re: Compiler Error Message: BC30188: Declaration expected.

    Well, it is VB, it even says VB.NET, it just ain't VB6
  27. Re: put data value in web pag and get result...

    If you are on XP then your goose is probably already cooked. I.E. 8 is the highest version that will run on XP. I.E. 9 is the lowest version that will support .Document.getElementsByClassname (see...
  28. Re: put data value in web pag and get result...

    Are you using an old version of I.E. Clicking on the VB Form button "Click Calcola Button" or clicking on the I.E. button "Calcola Sin e Iban >>" do not work if you are using an older version of...
  29. Re: put data value in web pag and get result...

    Your alternative approach works and so does mine. I don't know what the page does. I'm using I.E.7. Yes, I figured it was an I.E. issue but wasn't sure so now I am sure. I don't think I can run I.E....
  30. Re: put data value in web pag and get result...

    Yes, it is strange. I cannot use 'btn' or 'btn-primary' as the classname. I have to use both as the classname: 'btn btn-primary'. Also, i cannot get .Document.getElementsByClassname to work either....
  31. Re: How to change the specified color in the picture to another color?

    I guess you didn't read my post correctly. I pasted your images (all three) from MS-WORD into RTB and they are exactly the same
  32. Re: put data value in web pag and get result...

    Not really. As I stated, I was unable to find the button by using classname="btn-primary" but when I changed it to "btn btn-primary" I was able to find the button and click on it however I was unable...
  33. Re: put data value in web pag and get result...

    Why do you say "btn-primary" above but you show "btn btn-primary" in your posted html code. This is what I am having problems because when I run your code I get same problem as luca. I had to change...
  34. Re: put data value in web pag and get result...

    I wasn't referring to his line of code. I was referring to the line in the HTML. In his code, yes, he commented out that line and used the line that has "btn-primary" but this is not what the line...
  35. Re: put data value in web pag and get result...

    And you didn't have to change "btn-primary" to "btn btn-primary" because that is the class name as given in the HTML document

    <button type="button"...
  36. Re: put data value in web pag and get result...

    I don't see how since his code was incorrect in Command3_Click(). His code looks for classname "btn-primary" which is not the correct classname: it needs to be "btn btn-primary". Even after I changed...
  37. Replies
    23
    Views
    2,454

    Re: I get a different Erro

    You don't offend me. I don't answer your PMs because I don't answer PMs from anyone. It not personal. You ignore other requests from others trying to help you, not just me. You should do all you can...
  38. Replies
    23
    Views
    2,454

    Re: I get a different Erro

    Eren ignores a lot of questions:confused:. I asked him on post #4 and post #8
  39. Re: How to change the specified color in the picture to another color?

    I pasted your images from MS-WORD into RTB and they are exactly the same
  40. Replies
    23
    Views
    2,454

    Re: I get a different Erro

    Why don't you just wrap up the sub or part of it and highlight the error line. Don't need the entire project
Results 1 to 40 of 376
Page 1 of 10 1 2 3 4



Click Here to Expand Forum to Full Width