Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: lived
  • Content: Threads
  • Order by date
  1. lived

    how to use a string variable to input command

    I'm trying to get the user input a line of code and then execute it. I want it to look like this: Private Sub inputbox_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then commandline$ = inputbox.Text End Sub Private Sub Command1_Click() commandline$ 'execute the command End Sub or there is a...
  2. lived

    can i use a string as a command?

    i want to ask the user for a command that vb can execute and didn't find a way to do it. i want to do something like: Let InputCommand$ = "For I = 1 to 10 : next I" InputCommand$ 'execute command line Or there is a way to create a file that VB can use to input command ? SkyFighter
  3. lived

    Caps lock on at windows start-up

    i was wondering how i can manage to turn the caps lock on at windows start-up. i looked into the api viewer and did only find this: Private Const CAPSLOCK_ON = &H80 someone have any ideas? SkyFighter skyfighta@hotmail.com Get the fun out of life!
  4. lived

    way for not using ltrim$ rtrim$

    i use ltrim$(rtrim$(str$(number))) to get rid of the heading and ending space that str$ is returning, and i wonder if there is not a more efficient way to do this because it take a lot more time cause i'm calculate numbers larger than 10000 characters long and its taking eternity to calculate...
  5. lived

    enter keycode

    i'm triyng to show the text that i write in a text box in another textbox (with multiline = true) and i can't get to change of line when i put in the enter code like listed below please help me. Private Sub parle_KeyDown(Keycode As Integer, Shift As Integer) If Keycode = 13 Then...
  6. lived

    number limit

    i'm doing a calcul program and when i'm multipliing or divising number a get a number with an exposant.&nbsp;&nbsp;ex:1283450E+2. or 1.002344E-3 there is a way to allow variable to get more digits.<br>tanx in advance <p>miguel<br><a href=mailto:migoul@hotmail.com>migoul@hotmail.com</a><br><a...
  7. lived

    starting programming qbasic

    Always take a look to the HELP FILE when you don't know how to do something. I, every time a start a programs that i don't know how to achieve it, ALWAYS go to the help there's all what you need to help you. if you don't know what to search for, use the SEARCH menu in the help and type in some...
  8. lived

    need help using qbsock

    i did download qbsock to program using socket over the internet but i think i've miss some library because the simgle program telnet.bas don't work and i can't find information on qbsock please tell me what i need

Part and Inventory Search

Back
Top