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. StuKregor

    Dates "corrupting" on others PC's

    I have a database that appends, amongst other things, the Date() function to a table via an SQL statement. On PC this work beatifully but in one of the areas that need to use this isn't working correctly. Instead of the date appending as dd/mm/ccyy (Australian format) it's somehow going in as...
  2. StuKregor

    Login forms......How !!!

    I have done this many times...however I use straight Access code rather than recordsets...on the enter button on a login form I use dlookup to check whether the userid (or name) and password are in the UserTable. (dlookup only works in access. The isnothing function determins if the lookup is...
  3. StuKregor

    Append Query vs Using Recordset vs SQL - which to use?

    Thanks for the answers guys. I have read that a saved query will run slightly faster than an SQL statement, although in this particular case it won't make much difference I would think.
  4. StuKregor

    Append Query vs Using Recordset vs SQL - which to use?

    Two parts to me question... One I have a database that will potentially have 50-60 users. It will have a frontend located on each PC. Each user enters data into a form and when they hit enter it adds that data to the backend on the server. To do this "adding" which is the quickest...
  5. StuKregor

    How do I include zero values on a column graph by period?

    I am creating a column graph to show number of transactions per week/month/quarter over a period. There are times however when there are no transactions in a week/month/quarter, and currently my graph doesn't show these zeroes (because my query doesn't show it). Do I need to change my query or...
  6. StuKregor

    How do I include zero values in Column Graph over Period?

    I am creating a column graph to show number of transactions per week/month/quarter over a period. There are times however when there are no transactions in a week/month/quarter, and currently my graph doesn't show these zeroes (because my query doesn't show it). Do I need to change my query or...
  7. StuKregor

    Access dropping out on WinNT Network

    I have an access database running on a WIN NT server that previously ran an a netware server with no problems. Now 3-4 times per week the database drops out but the network in general doesn't go down. I know its probably more a problem with NT than Access itself but any info will be a great help.
  8. StuKregor

    How can I run a module from a command button?

    To run a function from a module when you click a command button, you can use the code Call FunctionName() This is the same as using a macro and the RunCode action.
  9. StuKregor

    How do I maximise MS Access - the application

    Thanks Terry, thats exactly what I needed!
  10. StuKregor

    How do I maximise MS Access - the application

    I have a form with a timer that reminds users every half an hour to enter their data. At the moment a msgbox comes up which they click OK. (when access is minimised the msgbox comes up flashing on the task bar) When they click OK I would like to maximise Access, to save them having to then...
  11. StuKregor

    How do I set a OLEGraph's Row Source on Report Open??

    I want to set a graph's row source on opening a report based on a form. This code won't work: Me.OLEUnbound0.RowSource = "QueryName" I know I need some special code for manipultaing an OLE object (but I don't know what it is) How do I do it?
  12. StuKregor

    How do I set a Graph's Row Source on ReportOpen?

    I want to set a graph's row source on opening a report based on a form. This code won't work: Me.OLEUnbound0.RowSource = "QueryName" I know I need some special code for manipultaing an OLE object (but I don't know what it is) How do I do it?
  13. StuKregor

    Adding 7 hrs to Date()

    What about this logic? =IIf(Time()>#7:00:00#,Date()+1,Date())
  14. StuKregor

    Networked Access97 DB losing connection in NT

    Unfortunately I have no actual external connections. It's an all inclusive database which somehow is losing it's network connection. Could be timing out somehow?
  15. StuKregor

    Networked Access97 DB losing connection in NT

    I have an Access97 database being used by 5 users over a WINNT network. Each user has the database open all day. About 1 or 2 times a week the database loses its connection to the server and some data is lost. The network itself however does not go down as no other networked apps go down. It...

Part and Inventory Search

Back
Top