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
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...
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...
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...
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
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...
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...
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("ADODB.Recordset")
RS.open "table name", "DSN=pb"
then what you want to do with this recordset
%>
Also is the DSN a...
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...
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 + " is cool"
end function
in the database file lets call it "DB1"
it contains
name...
lets say that your autonumber field on your form is called "Autonum"
sub combobox_afterupdate()
DoCmd.SendObject ,,, acFormatRTF, combobox, , , Autonum & " requires your response, please launch the database to open the ticket", "Some text in the main message bit"...
OK I have a string varible called textstr, it stores a string that i only want part of
Ie
textstr = "hello"
now I want to only shore the last 3 letters in the string so..
textstr = "llo"
Please help
Geo45
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 =...
I am using Win 2000 and Access 97
In the command prompt when you type in the command "set". 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...
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...
I am using Win 2000 and Access 97
In the command prompt when you type in the command "set". 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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.