User Profile

Collapse

Profile Sidebar

Collapse
shekoasinger
shekoasinger
Last Activity: May 8 '10, 11:24 AM
Joined: May 8 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • shekoasinger
    replied to Combo Box
    Try ComboBox1.Updat e()
    I dont know If it works.
    See more | Go to post

    Leave a comment:


  • shekoasinger
    replied to Time calculations
    James already gave the right asnwer but he was a little confused:

    Static LOF As DateTime = "15:27:06"
    Static RT As DateTime = "1:05:27"
    MsgBox(LOF.Subt ract(RT).ToStri ng)

    you can also replase the times with:
    Static LOF As DateTime = textbox1.text
    Static RT As DateTime = textbox2.text
    MsgBox(LOF.Subt ract(RT).ToStri ng)
    See more | Go to post

    Leave a comment:


  • A best answer is given already. But if you want to get the cursor on (100, 100) on the screen, and next time you want it somewhere else.. You dont really need to add the form's location value. Do it like this. Use 2 textboxes(or nothing.) to write the position you want to get on the form.

    dim ax as integer = val(100) + val(me.location .x)
    dim ay as integer = val(100) + val(me.location .y)
    setcursorpos(ax , az)

    ...
    See more | Go to post

    Leave a comment:


  • How to get full path of running process.

    Im working on a Dll Injector. But that is not my problem. I am using a picturebox to display the icon of a running process.
    E.g. If google chrome is running. The picturebox should display the icon of google chrome.

    I can extract the icon to my picturebox only if I know the full path of the process. That API was easily found and works very well.

    But know I want my application to get the full path of a running process...
    See more | Go to post
No activity results to display
Show More
Working...