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 strongm 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: icici
  • Order by date
  1. icici

    Time limited software

    you may also try this when the software is installed, change the dates of all the files associated to the date of installation and then check with the date of your main file. if its > 1 month (30 days) inform that the software license is required to be purchased for further use. otherwise...
  2. icici

    Reposition file pointer to next line?

    hi bitwise try the syntax cin.getline(....) this should solve your problem. this is part of TC++ syntax, and should work with other c++ compilers icici
  3. icici

    WalMart - AS2

    use a linux box or a win 9x box with ftp server enabled. this way walmart can push the data and also pull the data from this box. the ftp server software would restrict the movements of the walmarts access on your servers. also a firewall will be of help. a similar solution has been...
  4. icici

    Q

    try visual studio from microsoft, this helps in developing applications in vc++, vb, vj with backend any database.
  5. icici

    3DES, AES encryption on files

    Try using snuffle, the code is very small and can be downloaded (provided its not pulled out by US) from the web icici
  6. icici

    How Create a dbf file from a txt file directly?

    its simple in case u wish to append the data to the dbf file. lets say ur dbf file is origin.dbf and the text file is datafile.txt (line sequential format) use either dbase or fox or in clipper use dbu to open the file origin.dbf. next give the command append from dtafile.txt sdf and...
  7. icici

    uses of unions!!!

    hi cvrm have u used cobol any time? then u must have used redefines clause in cobol. well unions are similar to redefines clause of cobol. here u can share the same memory area for different purposes. i hope this answers ur query icici
  8. icici

    TLE for AS400 and FTP

    I dont know much about AS400, but in case u wish to receive files via FTP, you could look at FTP software such as CUTE FTP client or any other client which could be downloaded from the net for testing. icici
  9. icici

    Hipaa and Gentran

    hi Veens try the following site, it may be of intrest to u http://www.1edisource.com icici
  10. icici

    Help Needed ....

    try the following steps a. convert the number to string with left justification b. remove trailing spaces c. get the length of the string d. now group the string as required and then pass the numbers the way you want. icici
  11. icici

    clearing a screen

    you can use the function clrscr() to clear the screen. in case u want to set the background to say blue after the screen is cleared, then use the following commands textbackground(BLUE); clrscr(); pl. note the correct header files <CONIO.h>are required for using...
  12. icici

    Clearing the screen

    u can use the function clrscr() to clear the screen. in case u want to set the background to say blue after the screen is cleared, then use the following commands textbackground(BLUE); clrscr(); pl. note the correct header files are required for using this command...
  13. icici

    Looking to buy 1980s version of DOS Btrieve: 3 or 4

    try using the command butil -clone abc.btr abc.btr this command will zap the btrieve file abc.btr icici
  14. icici

    problems with Btrieve files.

    if u know the structure of the btrieve database files, then u can search for a utility called as btfiler, which will allow u save the files as ascii text in line sequential form, which can then imported in ur application.
  15. icici

    EDI FORMAT

    check the http://www.swift.com for more information on using xml in message formats. as regards the message itself the structure could be either proprietery or standard format such as ISO8583 icici
  16. icici

    date difference

    Thanks Denster for codifying the logic. The problem though has been solved, what happen when u have to find the difference between the two dates say date1 == may 01, 2002 date2 == october 10, 2001 some calculation has to be done for the year. the logic mentioned by me helps in calculation...
  17. icici

    date difference

    A crude but effective way is as follows { . . . /* for jan total days =0, feb = days till jan, ... aug = days till july and so on codify the logic for your use */ int months[]={0, 31, 59, 90, 120, 151 ...... 335} /* date has the following components date dd month mm year yy...
  18. icici

    Convert numeric check amount to word equivalent

    u have to write a function for converting the integer and the decimal parts separately. create an array as follows alpha[0]=zero alpha[1]=one alpha[2]=two . . . . . alpha[20]=twenty alpha[21]=thirty . . . . . . alpha[28]=hundred alpha[29]=thousand . . convert the integer part to a left...
  19. icici

    Searching for Obscure Clipper Library

    dear mdhall try the following link http://www.simtel.net/pub/msdos/clipper/ icici
  20. icici

    how to you add a string to the end of a line in a text file?

    adding string is a easy job. lets say u have two strings Source[101] and Dest[501]. Dest[] containg say &quot;Tek-Tips is a good forum &quot; u wish to add Source[] which contains say Source[] &quot;I want to join it&quot;. u can use strcat(Dest, Source); the problem what i forsee is that u...

Part and Inventory Search

Back
Top