Search results

  1. ReAn

    IP Address, Computer names and such.

    if you can somehow import the winsock library you can create a "WinSock" object and get the LocalIP property.
  2. ReAn

    appending data from form to table

    Use a VALUES clause... INSERT INTO TRAN (VEN_ID, CARRIER, CTRL_NUM, PALLET_TYP, CTRL_ID, CTRL_DT, TRAILER_ID, TRAN_DT, IN_OK, OUT_OK ) VALUES ('ValOfVEN_ID','ValOfCARRIER',....) You fill it in, but follow the format defined in the first set of parenthesis.
  3. ReAn

    MCount - Faster than DCount?

    Mile: Make functions in VB6, compile to DLL, reference DLL. This way, your code is compiled, so it will run much faster than through access (aka interpreted). Give it a try see what happens.
  4. ReAn

    Importing data from csv in to Complex table

    Link the CSV file as a table, make append query, simple.
  5. ReAn

    Keeping text box on top

    Delete the box, change background color of textbox.
  6. ReAn

    Need some basic help

    Not sure what you mean by "placing the form" under "headings". Care to elaborate?
  7. ReAn

    Progress bar or message

    Progress-Bar That is VBA Code driven, so you can prolly set up a timer on the form that counts it down for 45 seconds. Otherwise make a form, turn it to popup in the properties and open it when you start, close it when you end.
  8. ReAn

    Share a database? Am I on the right page?

    1) The update query if set up properly will update old records AND add missing ones. 2) Tools->Startup, Choose initial form.
  9. ReAn

    Page Header wont grow.

    I don't think you all understand the scope and design of my report.
  10. ReAn

    Page Header wont grow.

    no, it must be on each page
  11. ReAn

    Page Header wont grow.

    Are you sure? I cannot seem to find them anywhere.
  12. ReAn

    Story

    on his face
  13. ReAn

    Share a database? Am I on the right page?

    Haha, no worries about that, but you know my location is valid look up ^^^
  14. ReAn

    Access Path too long for Target Shortcut

    np, enjoy :D
  15. ReAn

    Share a database? Am I on the right page?

    the linked tables in my test db(s) for they may be absolute which would mean you need a user 'ablondah' on you're machine and a folder 'asdasd' on the desktop for you to put it in if you want it to work. However, it may be storing the links as relative paths, in which case you are set.
  16. ReAn

    Rank function -rank by who has most points/quickest time?!

    You need a query of the events table, put a criteria on the teamid to filter for whichever team you need, then make a field called tDiff and make it's definition: DateDiff("s",Date() + [TimeStart],Date() + [TimeEnd]) Sort by decending order.
  17. ReAn

    Share a database? Am I on the right page?

    Try modeling your query like this one: may have to re-link tables...
  18. ReAn

    Share a database? Am I on the right page?

    Just read that link above, let me modify my query to update records as well.
  19. ReAn

    Share a database? Am I on the right page?

    All it does is add the new ones. Match the form properties, it might help out ^_^
  20. ReAn

    Story

    with a large
Back
Top Bottom