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 TouchToneTommy 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. Nordyck

    front end synchronizing tool

    All you need is 2 fields. 1 in the BE (Version) and 1 in the FE (FE_Version) When the user opens the FE, the two version is compaired. If the two don't match then need to update the FE then have the FE kick off an update script. nordycki@hotmail.com
  2. Nordyck

    access query help

    Not sure what your trying to do, but I would use binary for your days. This way, you an just OR it together to get the days you want. Sunday = 1000000 Monday = 0100000 etc. M,T,Th = 0110100 nordycki@hotmail.com
  3. Nordyck

    Bulk Import

    I'm getting this error: Msg 4866, Level 16, State 1, Line 1 The bulk load failed. The column is too long in the data file for row 1, column 52. Verify that the field terminator and row terminator are specified correctly. Msg 7399, Level 16, State 1, Line 1 The OLE DB provider "BULK" for linked...
  4. Nordyck

    converting update sql to oracle

    Trying to convert this to oracle syntac Update G081_ELTNHA e set e.NHAPN = e1.PN inner join G081_ELTNHA e1 on (e.NHACEI = e.CEI and e.NHASN = e1.SN) Thanks, Dave nordycki@hotmail.com
  5. Nordyck

    oracle batch/scripts

    thanks, that worked great. nordycki@hotmail.com
  6. Nordyck

    Autobackup

    provide more clarification, depending upon your network permissions, the exe (written in vb6) file could be on the local PC, as in my case, or executed from the network. The file size <40kb. The FE (front end), captured the network logon ID for automatic logon. With this process, I also...
  7. Nordyck

    Autobackup

    the code was written in vb6. When the user open the app (FE) he's automatically logged on via a hidden form when the app opens. a checkbox by his userid is automatically checked and date when he logs on. Then when he closes the app, he is automatically signs out and date cleared. On close of...
  8. Nordyck

    Autobackup

    I tried a bat process and it didn't work reliably. I had to backup and compact the db every night, a trick I used when the last user closed the database (check the ldb file or keep track of who is logged on), it would kick off an exe file. The exe would then compact the db and create a zip...
  9. Nordyck

    Out of memory with 2Gb RAM

    I had the same problem with an app I worked on, one of the problem was in the code, there were bunch of recordsets being created through out the app. I had to track down all of the recordsets and close them. On rare occasions, I simply had to import everything into a new blank database and...
  10. Nordyck

    oracle batch/scripts

    I'm attempting to build update.sql file that updates several tables with the same values. Update file is executed from a batch file. file: update.sql ------------------ dte date := systimestamp; st varchar2 := "test"; / update tbl1 set Source=st, ProcessDate=dte where ProcessDate is null; /...
  11. Nordyck

    Working with image file

    What I'm trying to do is read a image file in (which works), and then rewrite it. The problem is in the rewriting it. I can't just copy it because I'll be doing some bit manipulation before it's written back out. Tried various stuff and it didn't work. Sub test Dim binfile As Variant...
  12. Nordyck

    converting from char * to char[]

    Need some help converting this. Thanks in advance, Nordyck gm.ipcp.name = strcpy(&(gm.ipcp.name),(char*)AttrValue); //gm.ipcp.name = (char*)AttrValue; //error message --> cannot convert from 'char *' to 'char [96] nordycki@hotmail.com
  13. Nordyck

    b-tree

    Yea, it does sound like homework but it isn't. Last time I did anything like this it was over 10 years ago and not very good then. I get these error any idea what this crap means? --------------------Configuration: test - Win32 Debug-------------------- Linking... nafxcwd.lib(thrdcore.obj) ...
  14. Nordyck

    b-tree

    Does anyone have a working example of n-way b-tree written in vc++ 6.0? If so, can I get a copy of it. Each node could have max of 52 children. Thanks in advance Nordyck nordycki@hotmail.com
  15. Nordyck

    Copying a Table

    Paul, The simplist way would to create your backup mdb with code that when it's open, it automatically pulls the data from the other database. Use the task scheduler, to start the mdb at specified time. This will do your daily backups. Don't forget to compact on close. Otherwise the mdb...
  16. Nordyck

    starting a &quot;Save As&quot; popup form programatically

    Function Export_Excel(tbl As String) Dim path As Variant path = BrowseFolder 'Browses the folder On Error Resume Next DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, tbl, path & "output.xls", True, tbl End Function nordycki@hotmail.com
  17. Nordyck

    Interview questions

    Need some interview questions about C++ and .net Can you supply some questions and what the appropriate response would be. This is for experienced programmer centering around sockets, device drivers, etc. I've got some interviews starting tomorrow morning. Thanks in advance. Nordyck...
  18. Nordyck

    csocketfile peer to peer

    Unfortunately there is between message and files. That's why the post. nordycki@hotmail.com
  19. Nordyck

    encryption

    Thanks Chris, I agree, logging into the site uses 1 way encryption but once there, I needed a way to crypt/uncrypt stored username/password. On one of the pages, I have bunch of web links to job boards and they all want different username/password. I don't want to store the info locally...
  20. Nordyck

    encryption

    Does anyone have 2way encryption code that I could have. I need to encrypt & decrypt passwords. Thanks, nordycki@hotmail.com

Part and Inventory Search

Back
Top