Search:

Type: Posts; User: Bobbles

Page 1 of 13 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    44
    Views
    3,110

    Re: [RESOLVED] Unicode TextBox

    This is marked as Resolved, but after reading the 'discussions' I am not so sure ?
    I came across these free controls, that future Googlers (readers of this thread) may care to try -
    UniSuiteFree...
  2. Re: how to make vb6 applicataion that tart automatically when windws starts

    Will this help -
    http://www.vbforums.com/showthread.php?643387-RESOLVED-Make-my-application-run-at-startup-Windows-Seven-Problem
  3. Replies
    7
    Views
    431

    Re: VB Project Opening Problem

    They have to get up early in the morning to fool me.
    OOPs
  4. Replies
    7
    Views
    431

    Re: VB Project Opening Problem

    If it was free, you could post the link, and one of us can give it a run
  5. Replies
    7
    Views
    266

    Re: VB6 IDE freezes Windows 7

    I have learned to not stuff with the Form_Load event.
    And I even go further, and I am selective about what code I place in there (Some goes in to Form_Activate, with a wee flag to avoid the code...
  6. Re: [RESOLVED] Drawing a Color Border around TextBox - Need modification

    What I have done in the past is use a Shape control.
    You can play with it's properties, until the border is what you want.
    If you have multiple Textboxes you can use a control array of shapes.
    You...
  7. Replies
    10
    Views
    1,146

    Re: Copy Form to another project

    Yup the solution given years ago, and forgotten by me, works.
    Here is the solution (for future Googlers) -

    frmDefaultCancelProps references isButtonTest.isButton - isButtonTest is the library...
  8. Replies
    10
    Views
    1,146

    Re: Copy Form to another project

    Thanks for responding Bonnie.
    Still getting same error.

    My Googling has come up with another hit, where I asked the same question years ago.
    I am (still) old, so had forgotten that.
    I am...
  9. Replies
    10
    Views
    1,146

    Re: Copy Form to another project

    The solution here, is not working for me.
    I have a form in an existing (large) project. It has the IsButton User Control on the form....
  10. Re: Error : ByRef argument type mismatch

    You have not shown us all the code prior to making the call
    What may be causing your problem is using declarations similar to this -
    Dim strSQL, m_database As String
    Instead use -
    Dim strSQL as...
  11. Replies
    1
    Views
    187

    Re: Windows 7 Touchscreen focus issues .

    I know from past experience that Win 7 can differ (from XP) in the way that apps get/maintain focus.
    If the form is meant to be 'active' all the time, perhaps use a timer, and an API call like...
  12. Re: Hovering mouse over variables doesn't always work

    See my post 11 above
    It is just the keyboard shortcuts for the menu items -
    Saving your current page ALT fs (ALT File Save)
    And ALT rf (ALT Run Fullcompile)
    And you can do them in one ALT fsrf...
  13. Re: Hovering mouse over variables doesn't always work

    If my Alt fsrf does not help, I could tell you a story about what happened to me a few years ago.
    Have you noticed any other minor irritations with VB6 IDE ?
    I cannot recall how many months this...
  14. Re: Hovering mouse over variables doesn't always work

    Have you tried my
    Alt fsrf
    to force all errors to be notified ?
  15. Re: Not able to get the textbox focus from one form to another

    Firstly please don't use Data Controls.

    Secondly why hide the search form. Unload it instead.
    When a form is shown VBModal, and that Form is then Unloaded, control is returned to the original...
  16. Replies
    9
    Views
    277

    Re: Can I trust in this function?

    I would not be messing around in the Form_Load event.
  17. Replies
    9
    Views
    277

    Re: Can I trust in this function?

    If it ain't broke, don't fix it.
    I do not sprinkle DoEvents everywhere.
    But if I see something is 'living in the past', and the controls Refresh command does not help, then it cops a DoEvents.
    I...
  18. Re: Hovering mouse over variables doesn't always work

    I have not simulated your example today, and have not been in the IDE for some time.
    Notwithstanding that, my recollections may be handy.
    In the past, when expected Tooltip info was not appearing,...
  19. Re: How to Send Keys from my VB5 App to another App's open Web Page

    I was going to give you a hard time for not upgrading from VB5 to VB6 (as VB6 has better ADO interaction, and a couple of other small but great improvements).
    I am glad I didn't, as I would have...
  20. Replies
    5
    Views
    274

    Re: Error - Text Property is read-only

    Is it a normal combobox ?
    What style is it set to ?
    My quick test was style = 0, and I could do this -
    Private Sub Form_Click()
    Combo1.Text = "Rob"
    End Sub
    And "Rob" appeared

    Rob
    And I...
  21. Re: How to Send Keys from my VB5 App to another App's open Web Page

    I haven't studied your code YET, however sometimes a 'focus' problem can be solved by just hiding your app.
    EG Your program is running (minimized into Taskbar)
    User has 'focus' (it is active) on a...
  22. Replies
    6
    Views
    361

    Re: Help me to use following source code:)

    Could you specify your needs.
    Please take the time to do that thoroughly and in detail.
    If you tell us 35% of what you need, then it can be a long and confused and tortuous journey before arriving...
  23. Replies
    6
    Views
    361

    Re: Help me to use following source code:)

    I downloaded it to have a wee peek.
    You would be better off finding another example, because -
    - It uses the Data Environment
    - It (probably) uses Data Controls, and possibly Binding (They are...
  24. Replies
    5
    Views
    395

    Re: 'pin' to desktop

    What I believe is desired by the OP is (was ?) A bottommost API = His Form stays beneath all others.
    I am not really thinking of multiple Sticky Notes, but probably could work for those as well.
    I...
  25. Re: run time error 3061 - too few parameters. expected 2

    Use a string variable to compose/resolve your query, and then Debug.Print it to see what it looks like.


    Dim sSQL As String
    sSQL = "Select * from Table_Name WHERE Field1 like '" &...
  26. Re: How do I clear a textbox by just clicking on it? Also, a database(?) related ques

    First question:
    I will be sticking with
    Text1.Text = ""
    I have been rubbing garlic on my neck for decades, and never had a vampire bite.
    I have been using "" for decades, and never had a problem....
  27. Replies
    9
    Views
    393

    Re: How do you connect to a remote PC?

    I have XP Pro SP3
    I cannot see WMI in my list of Exceptions ?
  28. Replies
    9
    Views
    393

    Re: How do you connect to a remote PC?

    What DataMiser said (is 100% of what I nearly said)
  29. Thread: program hangs

    by Bobbles
    Replies
    19
    Views
    517

    Re: program hangs

    Instead of giving us tiny portions of information (and some guessing by us), describe fully what you are doing.
    It is the last time I will ask.
  30. Replies
    5
    Views
    384

    Re: dropping text

    Dim sLineOfText As String
    Dim sLineOfTextShortened As String
    sLineOfText = "1234567890abcdefgh"
    sLineOfTextShortened = Mid(sLineOfText, 11)
  31. Re: VB6 How to declare an array as global.

    Knock up a small project, and attach it.
    And either here, or in comments in the program state what you want it to do.
  32. Replies
    10
    Views
    483

    Re: Save VB6, PLEASE VOTE FOR VB6

    Done (with 3 votes ? ?)
    Rob

    PS This is being run by Visual Studio Mag, which I gave up subscribing to, when they abandoned VB6.
    But the much bigger abandonment was by MS who purged samples(etc)...
  33. Replies
    4
    Views
    299

    Re: Dynamic array related question

    I have not worked with Winsock, so I don't know how the data (strings) look, and what the delimiters will be like.
    But it is possible you could use one the useful features that VB6 introduced -...
  34. Thread: program hangs

    by Bobbles
    Replies
    19
    Views
    517

    Re: program hangs

    Just to aid communication, let us say there is an 'Allowed List' and a 'Currently Running' List
    Are you looking up BOTH OF THOSE LISTS every 2 seconds ?

    - - - - ALLOWED LIST
    Why do you have to...
  35. Thread: program hangs

    by Bobbles
    Replies
    19
    Views
    517

    Re: program hangs

    "bobbles, i need to check on the db frequently for any changes in the whitelist or in the processes. "
    Which of those peeks into the DB requires it to be every 2 secs and why so frequent ?
    What...
  36. Thread: program hangs

    by Bobbles
    Replies
    19
    Views
    517

    Re: program hangs

    Elaborate on why you need to check the DB so frequently.
    The more detail you provide, the more likely you will receive a quick solution
  37. Replies
    15
    Views
    541

    Re: [RESOLVED] vb6 keeps crashing so annoying

    Not sure if it will still be used. (I will be 121 then, but If I am still alive, it will still be being used.)
    What history will record is -
    - XP was the pinnacle of MS OS's. It was downhill from...
  38. Thread: vb 6 project

    by Bobbles
    Replies
    9
    Views
    367

    Re: vb 6 project

    They should put the button back in the 'Quick Reply'.
    With the current way you first have to work out how to 'upload it'.
    Then (if you have a large history of uploads), you need good eyesight to...
  39. Thread: vb 6 project

    by Bobbles
    Replies
    9
    Views
    367

    Re: vb 6 project

    Do you know how to attach your project ?
    I only ask because it is not as easy as I recall.
    I recently attached something, and I am sure it was easier the previous time that I did it (mind you I...
  40. Replies
    22
    Views
    972

    Re: VB6 Command Button

    Your line and the line I posted earlier ARE DIFFERENT -
    YOURS
    result = ShellExecute(Me.hWnd, "Open", sPathAndFile, ",", SW_SHOWNORMAL)
    MINE
    result = ShellExecute(Me.hWnd, "Open", sPathAndFile,...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4