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 Wanet Telecoms Ltd 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: adi316
  • Content: Threads
  • Order by date
  1. adi316

    Converting a hex value contained in a string to integer

    Hi. I have a string which contains a hex value. I want to somehow convert this value to an int. how is it possible? TIA
  2. adi316

    Locking text box auto scroll?

    is it possible to stop a text box from auto scrolling up when something is added to it? what i do is txtbox = txtbox + newtext and it scrolls up, and then i have to scroll it back down with txtbox.SelStart=Len(txtbox). considering that i am logging data from the serial port into this text box...
  3. adi316

    How can i make msg boxes that have buttons other than the standard

    how can i make the msg box say yes/cancel as opposed to yes/no (vbYesNo) to be more specific. TIA
  4. adi316

    Radio buttons question

    hi i got like 15 radio buttons on a form, is there a way to specify a default one when the form is loaded?
  5. adi316

    Scrollbars question

    is there any way to make the scrollbar automatically go to the bottom most position, other than something like txtBox.SelStart = Len(txtBox) every time i add new data? TIA
  6. adi316

    Can anyone plz look at this?

    hi, this function gives an "overflow" error 6 at random times, and i have no idea why!! plz give me some ideas Private Sub MSComm1_OnComm() If FlStart = True Then 'Button "Start" pressed If MSComm1.InBufferCount >= 1 Then 'Input buffer is not empty...
  7. adi316

    can i parse an int from a string?

    if so can you tell me the procedure?
  8. adi316

    can i parse an int from a string?

    if so can u tell me the procedure?
  9. adi316

    Problem with string manipulation

    why is it that when i do this: output = line.substr(line.find("V"),line.find("/")) + " "; line.erase(0,line.find("//")+3); output+=line; on this line for example: line = 27009V234288/27008G00000000/270008// 14 2707 08 234288 032022 i get this: output...
  10. adi316

    How do i find out the index im on in a listbox

    i need to have an ok button that returns what index i am on in a listbox. anyone know how to do it? tia
  11. adi316

    how do i open a file and read in one line at a time?

    ? tia
  12. adi316

    Can i link a text box to a txt file?

    can i make it so a text box is actually a txt file? so the textbox displays the contents of the file.
  13. adi316

    How do i continuously write to a log file?

    I want to continuously write lines to a log file. I want to keep adding text to the file and not replacing the stuff i wrote before basically. how can i do it plz help, TIA.
  14. adi316

    Can i make it so a form can never be resized smaller than a min value?

    But it can be resized larger? TIA!
  15. adi316

    Resizing a textBox when i resize the window

    I got a textbox, and i want it to auto resize as i change the size of the window. As it is now it stays the same size even when i maximize (the grey area just gets larger, which doesnt help at all!!) TIA!!
  16. adi316

    Is it possible to change the MsgBox font size to something larger?

    also can i change the font itself and what is the newline char for the msgbox text
  17. adi316

    Help with listboxes

    Hi. I got a prog which has 3 listboxes in a form and as it is right now when i click on an item from a different listbox then the one im in it will select the first item in the list and not the one i clicked on, which is what i want. (i.e: i click on the second item but always selects the first)...
  18. adi316

    How do i find out if Acrobat Reader is installed?

    How do i find out if Acrobat Reader is installed and if so in what directory? Also how do i find out what directory my prog was installed in?

Part and Inventory Search

Back
Top