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 strongm 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. hiker0310

    Variables Losing Information!!

    I changed the Module that the code was in and it still does not hold the variables. The Variables are set to Public in the global code module and I loose the variables when I go from a form to it's sub form. SO that seems to be the link. I still have no clear understanding of why. Please Help.
  2. hiker0310

    Variables Losing Information!!

    yes, compiling the code works without a hitch. The module the variable is in is called UserSettings. I doubt this has any bering. Again please help if you can. I am lost!
  3. hiker0310

    Variables Losing Information!!

    ALL the global variables are getting lost but what ever Form I am currently on does not loose it's vars. I assume this is because the form has not lost scope yet. I thought that global variables held their settings until the project was closed? The variables are global variables that I am...
  4. hiker0310

    Variables Losing Information!!

    I have been using variables for a while. Now when the database is running (Access 2003), some of the variables will lose their information and revert to empty. If anyone can help I would be thankful. There are no errors that I can see that are stopping the code. Please help if you have any...
  5. hiker0310

    Automatic services not starting up

    Go to the properties of the service and check the Log on tab. Is the log on using the Local System Account or other. Also check the dependencies. Make sure all dependant services are running. Stephen Ludwig
  6. hiker0310

    KUDOS to whoever can figure out this wireless problem!

    Are both accounts using the same login script? You said they wern't. Can you post a copy of both scripts? What are the member groups of both accounts?
  7. hiker0310

    How to automate a logoff when Access Closes

    I have the database open on startup and I would like it to logoff the computer when Exiting Access. Can someone Please help me with this. I can make it work if I start Access with a batch file and have the batch file logoff the system when I exit access but I was hoping for a Macro or VB Code...
  8. hiker0310

    Public Or Global Variable HELP!! Out Of My Mind!!

    I created a module called Security this is what is in the module: Option Compare Database Dim m_UserName As String Public Sub SetUserName(MyUsername As String) m_UserName = MyUsername End Function Public Function GetUserName() As String GetUserName = m_UserName End Function...
  9. hiker0310

    Public Or Global Variable HELP!! Out Of My Mind!!

    I have a form that initially ask for the username and password. So when the user enters their information I want it to be stored in a variable. This will allow me to verify the accesws permissions for each form my validating the fnUserName variable against a certain set of criteria. If some...
  10. hiker0310

    Public Or Global Variable HELP!! Out Of My Mind!!

    I have a form that acts as my login screen. I need to set the values entered as username and password to as variable that will be accessable in other forms. I would like to use the variable names fsUserName and fsPassword. Can anyone Please help me. Currently, after the Username and...
  11. hiker0310

    Printing to 2 printers simultaneously

    I have a button on a form that prints two different reports two printers. I use the on click event to trigger a macro. The macro uses the OpenReport action with the view property set to print. You can use two OpenReport actions in a row to specify the two reports you want to print. On the...
  12. hiker0310

    Need To Double Click On Datasheet to change data On Main Form.

    I have a form that ahows the sales person information like customerID, CustomerName, AddressInfo, QuoteNumber, FollowUp Dat, Ect.. On that Form I have Embeded another form in Datasheet view. That embedded Form in datasheet view displays limited information about other quotes for that same...
  13. hiker0310

    Need To Double Click On Datasheet to change data On Main Form.

    I have a main form named QLSalesFollowup. This Form has a subform in datasheet view. The Subform's name is QLSalesFollowupSF. If I open a quote on the main form the subform displays all the quotes we have sent to that customer. The two forms are linked with the customerID field. I would...
  14. hiker0310

    Need To Double Click On Datasheet to change data On Main Form.

    I have a main form named QLSalesFollowup. This Form has a subform in datasheet view. The Subform's name is QLSalesFollowupSF. If I open a quote on the main form the subform displays all the quotes we have sent to that customer. The two forms are linked with the customerID field. I would...

Part and Inventory Search

Back
Top