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 gkittelson 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: Geo45
  • Order by date
  1. Geo45

    TASM, is there a free version?

    Think i have sorted it moved to version turbo C++ 1.01 and used the TASM v1. by moving to version 1.01 stoped the TASM2MSG error from appearing Geo The student will become the master Until then i will code for food
  2. Geo45

    TASM, is there a free version?

    Hi im using borland turbo C and the C code im tring to do uses ASM. My complier has requested a TASM. but i cannot find a free version. does any one know where i can get a free one that will work with my compiler? compiler version: Turbo C++ 1.00 many thanx Geo The student will become the...
  3. Geo45

    ASM with C, to use the mouse?

    Ok don't worry i have found a few sites http://www.htl-steyr.ac.at/~morg/pcinfo/hardware/interrupts/inte1at0.htm http://www.brackeen.com/home/vga/index.html http://goforit.unk.edu/cprogram/advcw3.htm http://www.geocities.com/SiliconValley/Vista/2459/programming/index.htm hth other...
  4. Geo45

    ASM with C, to use the mouse?

    Hi I understand most of the code located in http://www.tek-tips.com/gviewthread.cfm/lev2/4/lev3/32/pid/205/qid/797275 but am unsure of the ASM mov ax,0003h int 33h I think that AX is a register, is it a general purpose one or is it just for the mouse? is this the same about the...
  5. Geo45

    Please Explain? use of Pages/lists with VBS

    Found the error this line if CPage > numPage then CPage = numPages should be if CPage > numPages then CPage = numPages sorry for bothering anyone Geo -- the student will become the master
  6. Geo45

    Reading and writing to an access database

    hi D2C i use http://www.asp101.com hope this helps Geo -- the student will become the master
  7. Geo45

    Please Explain? use of Pages/lists with VBS

    Hi I have based the following code upon a ASP101.com (http://www.asp101.com/samples/viewasp.asp?file=db%5Fpaging%2Easp) tutoral. but what i gather is the page numbers start form 1, but with this code they have started from 0 this is part of my custom forum, for my website. it accesses an...
  8. Geo45

    Bind 9 with win2k, help me setup, plz!!!!

    Hi I am tring to set up a DNS server on a windows 2k computer I have download BIND 9.2.2 and installed this in winnt\system32\DNS folder Sofar i have created a rndc.key file in the etc folder and created the rndc.conf file but i am confussed on what to do next. the txt file says something...
  9. Geo45

    This code used to work but now it doesn't any assistance appreciated.

    Hi Try the following code, as you may have guessed replace table name with the table that you want to open <% dim RS set RS=Server.CreateObject(&quot;ADODB.Recordset&quot;) RS.open &quot;table name&quot;, &quot;DSN=pb&quot; then what you want to do with this recordset %> Also is the DSN a...
  10. Geo45

    Runtime error 2427, Help

    Hi In a form I have added an option group and inside this, I added 4 option(radio) buttons. I have not changed any of the properties. Using a command button called cmdsearch, I see which button is selected and then it give a message. heres the code I have used, it works in VB but not ACCESS...
  11. Geo45

    Data base control via script

    In a form I have written a function, that edits a string passed to it and then it returns a new string the function is like this function name(inputstr as string) as string name = inputstr + &quot; is cool&quot; end function in the database file lets call it &quot;DB1&quot; it contains name...
  12. Geo45

    Emailing

    lets say that your autonumber field on your form is called &quot;Autonum&quot; sub combobox_afterupdate() DoCmd.SendObject ,,, acFormatRTF, combobox, , , Autonum & &quot; requires your response, please launch the database to open the ticket&quot;, &quot;Some text in the main message bit&quot...
  13. Geo45

    Strings

    Cheers
  14. Geo45

    Strings

    OK I have a string varible called textstr, it stores a string that i only want part of Ie textstr = &quot;hello&quot; now I want to only shore the last 3 letters in the string so.. textstr = &quot;llo&quot; Please help Geo45
  15. Geo45

    Is it possible to set the value or

    If you do not mind text boxes with the same name then try using an array of text boxes. I have not tried this in VBA but it works in VB ie txtbox(0) txtbox(1) txtbox(2) ..... txtbox(9) ' code for 10 boxes dim i as integer 'used as a pointer sub form_load() for i = 0 to 9 txtbox(i).text =...
  16. Geo45

    Long and Tough Problem - Need Possible Solutions

    Can you give a small example of what problem is entered and what sort of thing is entered as a solution.
  17. Geo45

    windows logged in user

    I am using Win 2000 and Access 97 In the command prompt when you type in the command &quot;set&quot;. It lists a couple of windows varibles, including the username How can I access that in Access97 so I can tell who is logged in IE. dave logs onto the computer starts up the database, the...
  18. Geo45

    Emailing

    Instead of saying john in the combo box you could show the mail addesses, the code will create a email when the combobox is changes, this code requires outlook to be running. DoCmd.SendObject attachment type, attacted file name, HTML rtf mail, to, CC, BCC, Subject, Message sub...
  19. Geo45

    Find out the Current user

    I am using Win 2000 and Access 97 In the command prompt when you type in the command &quot;set&quot;. It lists a couple of windows varibles, including the username How can I access that in Access97 so I can tell who is logged in IE. dave logs onto the computer starts up the database, the...

Part and Inventory Search

Back
Top