Search:

Type: Posts; User: jmsrickland

Page 1 of 13 1 2 3 4

Search: Search took 0.92 seconds.

  1. Re: How to put a semi-transparent image on top of a RTB (not Win 7 or superior)

    Post 26 of your other thread

    http://www.vbforums.com/showthread.php?882697-Put-a-stable-image-on-top-of-Richtextbox&p=5448473&viewfull=1#post5448473
  2. Re: how see picture1 to send image in picture2 using paintpicture and save image

    Wrong. Labmany is correct and Code Dummy is also correct. You do not have a image in picOriginal. Even if picOriginal has a valid picture you still won't get the images of the controls using your...
  3. Re: Webbrowser mouse over and click automaticly

    See this thread

    http://www.vbforums.com/showthread.php?370770-RESOLVED-hmmm-MouseMove-in-webbrowser-control
  4. Re: [RESOLVED] hmmm MouseMove in webbrowser control

    I don't think this code can be used for what you are asking. The only way to call the method _onmousemove() is that you manually move the mouse and if you do that you are already over the target you...
  5. Re: Want some guidance on translating texts in HTML snippets

    I can show you how to get the strings that you have in red but not to translate them
  6. Re: Moving Objects On 2 Different Computers Using Winsock

    Because that is how you have it coded

    You have two applications, let's call them App1 and App2 and they both have the same code

    Which ever app sends the move is the host and which ever app...
  7. Replies
    19
    Views
    4,967

    Re: [RESOLVED] Auto search textbox

    I made a working sample project but discarded it as OP has resolved this thread so I guess he is happy with what you posted so I'll let it stand as is
  8. Replies
    19
    Views
    4,967

    Re: Auto search textbox

    Seems to work the same as your first example. What is different?

    I enter "s" - the word "Some stuff" fills in the textbox - same as before

    I decide I don't want it so I enter next letter, let's...
  9. Replies
    19
    Views
    4,967

    Re: Auto search textbox

    When I type an "s" I only get "Some Stuff" but I never get "Something". Also, if I don't want what is inserted and continue on I get a capital "S" even though I entered a small "s"

    I thought the...
  10. Replies
    19
    Views
    4,967

    Re: Auto search textbox

    I din't see how either one of those previous two examples work????
  11. Replies
    19
    Views
    4,967

    Re: Auto search textbox

    It would have to be done on the 1st letter of a word and not on each letter thereafter. User types in 1st letter. Code looks up that letter in data base and if empty do nothing for that word. If...
  12. Re: trying to add a icon when drag AND Icon When Drop

    Then you better post your entire project because this code works for me and everyone else who has used it
  13. Re: trying to add a icon when drag AND Icon When Drop

    This code will allow you to drag/drop and change the order of the items



    Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" _
    (ByVal hwnd As Long, ByVal wMsg As Long, ByVal...
  14. Re: trying to add a icon when drag AND Icon When Drop

    Do you have the drag mode set to manual on the listbox and are you actually getting the icon you want to drag
  15. Re: trying to add a icon when drag AND Icon When Drop

    Then remove Text1 and List2 objects and remove their code -



    Private Sub Form_Load()
    List1.AddItem "A"
    List1.AddItem "B"
    List1.AddItem "C"
    List1.ListIndex = 0
    List1.DragIcon =...
  16. Re: trying to add a icon when drag AND Icon When Drop

    Change all List2 to List1
  17. Re: trying to add a icon when drag AND Icon When Drop

    Here is sample - modify it as you need to



    Private Sub Form_Load()
    List1.AddItem "A"
    List1.AddItem "B"
    List1.AddItem "C"
    List1.ListIndex = 0
    List1.DragIcon = LoadPicture("C:\Program...
  18. Re: trying to add a icon when drag AND Icon When Drop

    Where do you want to drag from and where do you want to drag/drop to. In other words, the source and the target
  19. Re: How to install the LaVolpe AlphaImgControl functionality?

    http://www.vbforums.com/showthread.php?630193-vb6-Alpha-Image-Control-v2-Final-Update-(15-Jan-2012)

    http://www.vbforums.com/showthread.php?598771-VB6-GDI-Usage-amp-Samples
  20. Re: should i really move to an installer??

    I always liked Install Shield. I especially liked that it allowed me to write my own custom install program and make it as fancy as I pleased. Don't know if the others did that
  21. Re: Location Of Text File Value Sometimes Changes

    Why don't you just grab the 3rd decimal , providing that doesn't change, then you will have the value you need wheather it's .n, n.n, n.nn, or nn.nn
  22. Re: Error in webautomation using vb6 in windows 10

    I don't know what the error is because you didn't tell us but since when do you navigate to

    "http https://mytestingsite/login.html ", 8

    It should be one or the other, not both
  23. Re: Location Of Text File Value Sometimes Changes

    If nothing else changes then search for the 2nd decimal point. Now you know that you have two numbers followed by a space followed by the value you want to get



    +-- 1st...
  24. Re: How to Make Each Line of a Listbox a Different Colour?

    I understood your request. The code was not written especially for you and common sense tells you that you only need to use one of the Listboxes. However, I don't think you read my signature since if...
  25. Re: DragDrop file and display its name only?

    Nitpicking
  26. Re: DragDrop file and display its name only?

    If you already know how to display path and name then why don't you just strip off the name using Mid and InStrRev to the first "\"



    '
    '
    Dim txt As String

    Dim fname As Variant
  27. Replies
    5
    Views
    916

    Re: what does this code mean?

    https://msdn.microsoft.com/en-us/library/windows/desktop/ms644944(v=vs.85).aspx

    In your case pbExecute
  28. Re: Force KeyUp (even when not up) with API

    You can remove the Text1.SetFocus. I don't see the reason for the textbox in the first place
  29. Re: How to Show Modal Form And Code Running In The Background Form

    How to Show Modal Form And Code Running In The Background Form

    You can't

    Once you load modal form:

    frmb.Show vbModal, Me


    You will not enter here until you close the modal form
  30. Re: How to change space between two lines in a textbox

    Use two or more vbCrLf's instead of one

    Single spacing (normal)

    This is line 1 & vbCrLf
    This is line 2 & vbCrLf

    Double spacing

    This is line 1 & vbCrLf & vbCrLf
  31. Re: How to Make Each Line of a Listbox a Different Colour?

    Put List1 and List2 on a Form and make their Style = Checkbox


    Form Code



    Private Sub Form_Load()
    Dim I As Integer
  32. Replies
    16
    Views
    1,588

    Re: [Help] Listview Problem

    No .rar file; use .zip instead
  33. Replies
    16
    Views
    1,588

    Re: [Help] Listview Problem

    You say you have a function called AppPath and I suggested that perhaps the error is coming from somewhere else and you said that you have included all code and yet you do not post your function...
  34. Replies
    4
    Views
    963

    Re: pixel color withing webbrowser

    OP would need the handle of the window no matter what API is used
  35. Replies
    16
    Views
    1,588

    Re: [Help] Listview Problem

    I already said that
  36. Replies
    16
    Views
    1,588

    Re: [Help] Listview Problem

    Then it could be the Codejock ListView that is causing the error. Check it's properties and see what it has and doesn't have especially the .Text property

    Also post which line is getting the error...
  37. Replies
    16
    Views
    1,588

    Re: [Help] Listview Problem

    You has a problem here:

    strEncrypt(sData(i), txtAESPW.Text)

    No such function



    I ran your code. No such error, With block Var not Set or similar. In fact, other than what I pointed out...
  38. Replies
    16
    Views
    1,588

    Re: [Help] Listview Problem

    You have

    Dim sData() As String
    Dim sExtension() As String
    Dim i As Integer

    twice in your code. Only Dim one time.
  39. Replies
    10
    Views
    3,158

    Re: Keep an inputbox in focus

    Do While InputBox("Enter the number 2", "Enter Data") <> "2"
    MsgBox "Wrong value"
    Loop


    or in your case


    Do While InputBox("Enter your Pin", "Enter Pin") = ""
    MsgBox "You must enter...
  40. Replies
    21
    Views
    2,822

    Re: Browse Data in VB 6.0 while Debugging?

    Misleading question.

    OP wants to "browse" (which means to look at) his data (which means values) but doesn't want to look at his data values in the variables:confused:
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width