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 SkipVought 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. jayplus707

    Accress 2000 ADO Addnew Problem

    Hi, Has anyone had problems with using AddNew in Access 2000 with ADO? I am getting inconsistent results. Sometimes it adds data like it should and other times it doesn't. I put debug.print to make sure the .update was executed so I know it went through the code. However, sometimes data did not...
  2. jayplus707

    RDA.Pull Doesn't Always Pull

    My Pocket PC application pulls and pushes data from an external SQL Server source. I've noticed when I first try the program in the morning, I do the RDA.Pull, a couple of minutes pass by, it times out, and I get some wierd HResult error. Then right after, I exit out of the program, retry, and...
  3. jayplus707

    How to export a dataset to CSV, Excel, etc from Win App

    I've had to write a CSV file from a recordset in ASP, so I don't think it would be that much different to write a CSV file from a win application in .NET. I'm pretty much taking a stab in the dark, but I think you should look at the System.IO.File namespace. You will be able to create and open...
  4. jayplus707

    Learning C# as a beginner

    I'm learning right now and I have two books from APress... 1. C# and the .NET Platform (Andrew Troelsen) 2. ADO.NET Examples and Best Practices for C# Programmers (William R. Vaughn/Peter Blackburn) The book from Troelsen is a great book! Actually, I like APress books in general, but I...
  5. jayplus707

    C#, .NET, and Barcode Scanning Help Needed!

    I will be doing a lot of barcode scanning applications in the future with symbol (or symbol-like) devices. I'm currently learning C# and the .NET Compact Framework and I'm a bit confused as to how barcode scanning is tied into C# and .NET. Is there a class that does this already? Do I need a...
  6. jayplus707

    Initialize A Database

    How do you initialize a database? I know you can create it and the tables by executing various SQL statements, such as: SqlCeEngine engine = new SqlCeEngine ("Data Source = " + strPath); engine.CreateDatabase (); SqlCeCommand cmd = conn.CreateCommand(); cmd.CommandText =...
  7. jayplus707

    Form & Connection Class Design

    Thanks so much for your help so far....What I've done is created 3 different forms and pass the dataset and connection to each of the forms when creating the object....ie. frmTitle newForm = new frmTitle (myConn, myDataset); Is this how you could do it? I guess it boils down to trying to...
  8. jayplus707

    Form & Connection Class Design

    This is a general object-oriented design question: How would you design your application where each form was an object and needed a connection to the database? Does it make sense to make the connection and other data part of a connection class that is external to each form class? Or would you...
  9. jayplus707

    Add Function to Form Class

    I'm new at C# and I can't figure this out. I have two forms. One is called frmTitle. The other is called frmPasswords. My main is in frmTitle. I created a function called doThis() inside my frmTitle class. I used the following code: public void doThis() {} And within my main, it starts...
  10. jayplus707

    Can I install Win 95 apps onto Windows CE?

    Hi all! This may be the dumbest question ever posted to this forum, but I have a client who would like to know if applications that were optimized for Win 3.1/95/98/NT can be installed on Windows CE. Is this possible? Any information on this will be helpful......Thanks! ~jason
  11. jayplus707

    Opening Text File With Multiple Users

    All, I have this text file that my application opens and writes data to. When multiple users are trying to use the application, it looks like one person is able to use the file and the others get permissions errors. I'm only guessing, but it looks like this is why people are getting errors...
  12. jayplus707

    Integrating an Existing ASP Application With SAP

    Thanks so much. I'll look into the links.
  13. jayplus707

    Integrating an Existing ASP Application With SAP

    Hi. I'm trying to integrate an existing ASP web application with SAP and I don't know where to start. The current application has SQL Server as the backend, but the information has been moved to SAP and now the web application needs to be changed. Right now, SAP does nightly data dumps into...
  14. jayplus707

    ole not registered error, access 2000

    I stumbled upon this and hopefully it will help everyone out. http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q181496&
  15. jayplus707

    Creating text file on different server

    I need some help!!! I have my application on some server, but I would really like to create the file on my machine. My machine has a shared folder that gives everyone read/write permissions. Is it possible? Thanks!!
  16. jayplus707

    Problems Creating CSV File

    I've got the thing to work, but now I'm getting pushback from the sys admin..... Anyways, what I'm trying to do is set up a function in my asp web application, where the user can click on the link, and the record he/she is currently looking at gets saved to a CSV file. The user can then save...
  17. jayplus707

    Update Second Combo Box Based on First Combo Box Choice

    Please help me.... I basically want to update the options available in my second combo box based on what the user chose from my first combo box. I saw a couple of examples already, but each of them refreshed the page and I'm sure there must be a way to do this without reloading the whole page...

Part and Inventory Search

Back
Top