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 Wanet Telecoms Ltd 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. wusinik

    Importing a DBF data file

    In Access in the File name: box, type *.dbf
  2. wusinik

    Dynamically assigning a value to a recordset

    Thanks - I tried this but I get an error: Run time error '3265' Item not found in this collection. Do I have to change some properties for the data object?
  3. wusinik

    Dynamically assigning a value to a recordset

    I can execute the following code fine, but the value in FIELD is a variable...is there any way to dynamically assign this value in the recordset? datFirst.RecordSource = "SELECT DISTINCT " & field & " FROM table order by " & field & ";" While datFirst.Recordset.EOF...
  4. wusinik

    Can I create an Access table from VB?

    I get an error - Compile error: Expected: end of statement on the line - cnn.ConnectionString = "ODBC;DBQ="MDBFile.mdb" & ";UID=;PWD=;Driver={Microsoft Access Driver (*.mdb)}" Then the cursor highlights the quotation mark where MDBFile.mdb is referenced. Do I need...
  5. wusinik

    Can I create an Access table from VB?

    OK, now here's the last step, I want to fill this new table with the contents of a dbgrid...I have the contents of the dbgrid saved into a table named template. I want to save the contents of template/dbgrid as NEW_Table and then clear the contents of template so that I can repeat this process.
  6. wusinik

    Can I create an Access table from VB?

    That dbText did the trick - thanks so much!
  7. wusinik

    Can I create an Access table from VB?

    I have implemented the code but I get a run time error when the code hits the line: dbsNew.TableDefs.Append tdfNew 'add the table to the DB the eroor is : Run time error '3259': Invalid field data type Any ideas why this is occuring? The only real change I made to this code is I referenced a...
  8. wusinik

    Can I create an Access table from VB?

    I'm looking to allow users to create a custom table by editing an existing table or creating a new table from scratch. Can VB allow for a createTable - like property? Thanks
  9. wusinik

    Save the contents of a dbGrid

    I am looking to allow users to create a custom table. What I want to do is have a dbGrid based on a table called TEMPLATE. Then I want to allow users to enter data in the 2 rows: VALCODE, VALDESC. When they are done and click the DONE command button, I prompt them for the new table name. My...
  10. wusinik

    Storage of AVI's

    I am working on a project which includes several AVI's which add up to more than 740 MB of space...I think I am going to have to store the files on 2 cd's but I'm not sure how I can go about doing this so that users will not get too confused. I was thinking I could run a setup program which...
  11. wusinik

    Compacting Access Database From a Form with DAO's

    I am trying to compact my local databse every time data is written there(initiated by pressing a command button)...the problem is that I get a message saying that the database is already opened for exclusive use by myself. There are DAO's on the form. Can I execute the compact command even if...
  12. wusinik

    View clients current available RAM

    Both of these code bits were very helpful...thanks!
  13. wusinik

    View clients current available RAM

    Also, I only need to check the C:\ Drive on clients' machines because that is the only drive where my program writes to. Thanks so much for your assistance!
  14. wusinik

    View clients current available RAM

    This code will be very helpful...however I need to read the amount of AVAILABLE/FREE memory, not total (used + unused) RAM.
  15. wusinik

    View clients current available RAM

    I am looking to check the amount of RAM available on client machines before a command can be executed...I think I need to utilize sysinfo but I am not sure exactly what functions to call. Thanks
  16. wusinik

    Sorting by Formula Results...

    I meant to open up a separate thread. This issue with dynamically assigning the sort order is separate from the sort by the running total...however I am looking to store a value in my table to determine the sort order eventually. Reference the 1st post. Thanks
  17. wusinik

    Sorting by Formula Results...

    How can I sort by a variable stored in my table without utilizing SQL server commands? Basically I want to store the sort order in the table, have Crystal read this value or values and then sort based upon the variable. Thanks
  18. wusinik

    Sorting by Formula Results...

    Can you sort by formula results? If so, how?
  19. wusinik

    Problem sorting(possibly due to a group), help please

    Can you sort by formula results? If so, how?
  20. wusinik

    Cancel out of a routine which calls other routines

    I am tring to have an option available to users so that when a user hits a command button which triggers a long process, a "cancel" button can be available so that they can go back to the main form. I'm having trouble truly exiting out of the routine b/c the routine which sends the...

Part and Inventory Search

Back
Top