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 Mike Lewis 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: *

  1. susuke

    modem serial number

    Hello! I use varian async 32 package with borland c++ builder 5. I want read the serial number of a modem with ATIx AT command. Can anyone tell me which va32 component(s) and method(s) should I use to get this number? Thank you!
  2. susuke

    database connection from dll

    Hi! I want ot create functions in a dll (in bcb5), to use datas from a database with ODBC connection. How can i do this? I try to create a data module inside a dll, and create a TDatabase object, and the dll was compiled succesful, but when i tried to call the dll function (it creates and...
  3. susuke

    get phone number

    Hi! I want to get the SIM card's phone number from a GSM modem with AT commands. I look after for this, but I didn't find anything. Please write me an AT command for this problem. Thanks.
  4. susuke

    gsm modem sms problem

    I want to send sms under a sw, that was written in borland c++ builder 5. I use Varian Async 32 package (TVaComm component). There is no problem sending sms, but the text of the sms is not correct. There's some 'alien' characters at the beginning of the sms when it is received by the phone and...
  5. susuke

    c++ filechange

    Yes. I'm using the FILE_NOTIFY_CHANGE_LAST_WRITE parameter. I tried all the parameters. If the sw doesn't close the file, then what can i do?
  6. susuke

    c++ filechange

    Hi! There's a file, what stores events. I don't know how can it be, but when the software (what makes this file) write a new event to the file, the file last write date is not changing and the size is fix (fill with x00). I try to watch the file with FindFirstChangeNotification and...
  7. susuke

    c++ handle

    Hello! My question: If the FindFirstChangeNotification function return with a handle, how can i get the file name what changed? thanx
  8. susuke

    filechange c++

    Ok, i see. Thanx
  9. susuke

    filechange c++

    OK, but if i use this then i need a timer, what run this command cyclic, don't i? But i don't want to use timer. I imagine this like this: the file changes -> an event activate -> run code. I want that the code run when the file changes, but i don't want to check it from the program with...
  10. susuke

    filechange c++

    Hi! I want to catch the changes of a file (time or size) in c++, but not with timer, i want to start a code automatically when the file is changed. Is there any possibilities for this in c++?
  11. susuke

    c++ serial port

    Thanx for the help, but i found a component for com port (ComPort Library v2.64). I think it's more useful. But i couldn't use this for comuunication too, because the message was wrong, because the message has to be closed with \r\n not only \n. Thanx.
  12. susuke

    c++ serial port

    i've add these settings: ---- DCB PortDCB; PortDCB.DCBlength=sizeof(DCB); GetCommState(hPort,&PortDCB); PortDCB.BaudRate=9600; PortDCB.ByteSize =8; PortDCB.Parity =NOPARITY; PortDCB.StopBits =ONESTOPBIT; SetCommState(hPort,&PortDCB); ---- but it still doesn't work. I know there are more...
  13. susuke

    c++ serial port

    In the source code i did not set the serial port. I use the default. Should i set? (i thouhgt if it works in hyperterminal then the port settings are correct and the c++ use the windows settings...) If i'm wrong then please write what should i set. thanx
  14. susuke

    c++ serial port

    Hello! I have connected a n6310 to the COM2 through the phone's serial cable and write this code in C++: ----- ... void* hPort; hPort=CreateFile("COM2:",GENERIC_READ|GENERIC_WRITE,0, NULL,OPEN_EXISTING,0,NULL); AnsiString Message; DWORD dwNumBytesWritten...
  15. susuke

    Hello! Does anybody know how can

    Hello! Does anybody know how can i access to a modem (and give at commands to it) or a com port in c++ (under win2k)? thanx
  16. susuke

    nokia6310 modem

    Hi! I have an ma-8610c usb cable with a nokia6310. I want to use the phone's modem, but the windows and the nokia modem setup prg can't find the phone. I've tried to reinstall the cable driver and the nokia modem setup, and all the usb ports on the pc but it doesn't works. Please send me...
  17. susuke

    How can i query by date/time type with 2 operand?

    I have a table (in MSACCESS_2000)with a 'timestamp' column, in these format: 'yyyy. mm. dd. hh:mm:ss'. I want to query records between two date like this: '...WHERE timestamp BETWEEN '2002. 07. 17. 12:12:05' AND '2002. 07. 17. 12:21:04';'. The program send an inputbox asking for a parameter and...

Part and Inventory Search

Back
Top