Search:

Type: Posts; User: Joshlad

Page 1 of 5 1 2 3 4

Search: Search took 0.19 seconds.

  1. Replies
    8
    Views
    1,390

    Re: How to validate input in a textbox?

    you can use textboxname.text.substring(startpos , lengthofstringtocheck(usually 1)) = "bla"
  2. Replies
    5
    Views
    727

    Re: OCR help almost done need b&w code

    12 second google search.

    http://www.dreamincode.net/code/snippet2063.htm
  3. Replies
    6
    Views
    1,042

    Re: Send keys to only self?

    you could try the timer with asynckeystate... that would create a complete copy of everything you do on the keyboard into the part you want to type into...
  4. Replies
    4
    Views
    1,920

    Re: sendkeys(keys.back) problem.

    oh, keys"{BACKSPACE}" worked, thank you very much :). still curious as to why back did not though!
  5. Replies
    4
    Views
    1,920

    Re: sendkeys(keys.back) problem.

    ^^ doing exactly that ( apart from the buying new keyboard!), get async keystate is a hook, so when numpad 6 is pressed, it plays the next song. my only problem is that it then types a number 6 into...
  6. Replies
    4
    Views
    1,920

    Re: sendkeys(keys.back) problem.

    can keys.back only be used to check if it has been pressed or?
  7. Replies
    4
    Views
    1,920

    sendkeys(keys.back) problem.

    i have a very short program that is basically mimicking the back, playpause and next functions for music (becuase my keyboard does not have buttons along top ), so i am using numpad.

    now,...
  8. Re: How to make something always on top *like mouse*

    anyone?
  9. Replies
    10
    Views
    1,533

    VS 2010 Re: Speed Up An Process

    can't do anything without knowing what you do or code to speed up...
  10. Re: How to make something always on top *like mouse*

    any ideas?
  11. How to make something always on top *like mouse*

    topmost is great, but when a game or windows is locked, it's not on top anymore, but the mouse is. so, does anyone know a way to make it fully on top like the mouse?

    Josh
  12. Replies
    24
    Views
    2,461

    VS 2010 Re: Downloader, Calculating speed.

    new question, new topic, mark resolved.
  13. Replies
    9
    Views
    816

    Re: Publishing a windows app

    If there's a public drive which all users can access (feature of a p2p/client server network) then put the database in that drive, and link to that file path, then the users will each have a copy of...
  14. VS 2010 Re: Simulating Mouse Click Without Form Being Selected

    if the clicking is going on in a web browser, and it's a document(e.g. not game or something) then you can do this using id's and the invoke click, which i can provide code for if you ask nicely...
  15. Replies
    13
    Views
    5,632

    Re: Noobie: Homework help?

    also, on a logical point of view, when you declare your variables as

    Dim AmountCompound As Double = 1000 * 1.05
    Dim AmountSimple As Double = 1000 + 50

    you may as well just declare...
  16. Replies
    13
    Views
    5,632

    Re: Noobie: Homework help?

    congrats figuring it out yourself!
  17. Replies
    5
    Views
    1,232

    VS 2010 Re: Taskbar Application

    you basically want to pin an application to the task bar? (more commonly known as start bar)...?

    because that is done with trayicon... also, you could publish the app, and then just pin it, on the...
  18. Thread: timer

    by Joshlad
    Replies
    17
    Views
    1,433

    Re: timer

    are you timer1.enabling in the timer_tick? because that would be why it never begins...
  19. Replies
    9
    Views
    816

    Re: Publishing a windows app

    you can either include the db with the application, but it would be seperate for each person, or you can set up a remote access for them to connect too on a server...

    are you running a P2P...
  20. Replies
    11
    Views
    1,609

    VS 2010 Re: Need Help Running Dos Console commands

    weird, using vb.net 08, the thing just gave me error, perhaps i'm missing something... oh well glad you got it fixed.
  21. Thread: Question:

    by Joshlad
    Replies
    2
    Views
    547

    Question:

    is it better to...

    dbconnection.open
    'code
    dbconnection.close
    OR
    using dbconnection
    'code
    end using
  22. Replies
    11
    Views
    1,609

    VS 2010 Re: Need Help Running Dos Console commands

    press f11(start step thru), click debug, windows, auto's, now press f11 and step through your code with all variables visible. the thing is, i don't understand the long path, but all i see it doing...
  23. Replies
    11
    Views
    1,609

    VS 2010 Re: Need Help Running Dos Console commands

    Isn't that the method for shortening the file name? i don't see how you are 'I'm trying to have VB open a command console and enter path to a batch file. So far I have not been able to get VB to open...
  24. Replies
    10
    Views
    2,473

    VS 2008 Re: listBox Lost Focuse problem

    I see why you'd put focus on, if you use a sub to call a next sub, in which it fills a text value, ends, and returns to that sub. after the call you should put me.focusto put it back to the listbox,...
  25. Replies
    8
    Views
    847

    VS 2005 Re: Delete a position on structure array

    i looked up list(of t) on msdn, their example uses dinosaurs xD

    http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx definately worth knowing though, thank you .paul helped me in something...
  26. Re: [REGISTRY] Trying to toggle registry setting - getting error

    could you highlight error in red, and use highlight vbcode instead of code.
  27. Replies
    6
    Views
    826

    Re: Please assist me on saving text

    instead of form closing, you could use textbox1 w/o focus, to re-save the text.
  28. Replies
    13
    Views
    13,334

    Re: Simplify Algebraic Expression

    I'd recommend #Regions to split it up a bit, increase searching etc. but some very cool calculations!
  29. Replies
    22
    Views
    1,886

    Re: newbie question string to hex

    the fyi made me lol.
  30. Replies
    20
    Views
    6,602

    VS 2010 Re: Detecting mouse/keypress input

    http://www.developer.com/net/net/article.php/11087_2193301_2 is a brilliant web page that sums it up nicely.
  31. Replies
    20
    Views
    6,602

    VS 2010 Re: Detecting mouse/keypress input

    I see how the mouse is an invoke, since you're just telling it to do something, but the keyboard is a hook because you can check what your keyboard is pressing.

    keyboard hook can get values...
  32. Replies
    3
    Views
    1,275

    VS 2010 Re: Split A String !?!?!

    nvm he solved it
  33. Thread: Webbrowser

    by Joshlad
    Replies
    8
    Views
    908

    VS 2008 Re: Webbrowser

    I don't speak french, and include source code.
  34. Replies
    3
    Views
    653

    Re: IF, Then, Else Assistance

    if the problem is that 2 is not equalling gm_id, then before the loop, or anywhere that gm_id is suppose to hold a value, use messagebox.show(gm_id) to view the value, or step through your code.
  35. Replies
    3
    Views
    653

    Re: IF, Then, Else Assistance

    ElseIf k = 2 And 2 = GM_ID Then

    Too
    'will be where K=2. I need to compare that value against GM_ID and if it matches
    Elseif k = 2 AndAlso GM_ID = K then 'k because you said you wanted to check...
  36. Replies
    8
    Views
    7,741

    VS 2010 Re: renaming files in a folder....

    Then just have to sort the end out so that the user gets a upload sucess message.....

    _Stream.Write(buff, 0, contentLen)
    contentLen = _FileStream.Read(buff, 0, buffLength)
    Loop

    ** Put Success...
  37. Replies
    8
    Views
    7,741

    VS 2010 Re: renaming files in a folder....

    With System.IO.File.
    .delete()
    .create()
    .copy()
    .open()
    .read()
    'etc etc...
    End With

    oh i should of...
  38. Replies
    20
    Views
    6,602

    VS 2010 Re: Detecting mouse/keypress input

    mouse hook: http://www.youtube.com/watch?v=M40zYFUOe-w in description
    keyboard hook: auto-typer in sig :) (look in timer to see how to use, and you want to copy the public declare)

    Josh
  39. Replies
    5
    Views
    795

    VS 2010 Re: Hi! Student here. Extra credit help.

    something like...

    If Mid(firstwordoftextfile, 1, 1) = Mid(word) Then 'bla bla
    Mid(firstword, 2, 1) = Mid(word,2,1) then
    'Return suggestions
    End If
  40. VS 2008 Re: toolstripsplitbutton drop down state

    don't know if any of these will be helpful... but i really can't figure out what you're trying to do!


    ToolStripSplitButton1.DropDown.Enabled = False 'use to hide the dropdown menu/lock it?
    ...
Results 1 to 40 of 161
Page 1 of 5 1 2 3 4



Click Here to Expand Forum to Full Width