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 Mike Lewis 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. jagilman

    Folder Permisions

    Hey Karl, I have a similar need. My customers need to be able to upload files. I wanted to be able to create folders for them also. The problem I seem to be running into is keeping the "upload" folder private to prevent any user from creating a web folder link to the folder. I hope...
  2. jagilman

    How to make the page refresh?

    If the user is a manager, the session variable is set to True and then when I hit the refresh button my page reloads and because the variable is True the manager menu choice is now visible. All I need is some way for my code to refresh the browser right in the middle of the "If...
  3. jagilman

    How to make the page refresh?

    Ok guys! Here is the problem again! I failed to fully explain the problem. If the user who logs in is a manager I set a session variable (manager) = True If I click the refresh button, my menu choices change and the management button will show up. I am using frames and the extra button is on...
  4. jagilman

    How to make the page refresh?

    After the user logs into my site I would like the code to perform the same step as if the user clicked the refresh button. This is being used to make additional menu choices available for different users. I have not found any VBScript code to cause this to happen. Thanks John A. Gilman...
  5. jagilman

    How To High Light the Current Row in Continuous Forms!

    I now have the sample database on the web: http://uslink.net/~jagilman/CoolStuff.htm John A. Gilman gms@uslink.net
  6. jagilman

    i opened a form using DoCmd.OpenForm "Name",,,,,acDialog

    ruthcali, have you used the break mode for watching code execution? This will allow you to see just what is happening as your code executes. John A. Gilman gms@uslink.net
  7. jagilman

    i opened a form using DoCmd.OpenForm "Name",,,,,acDialog

    use the openArgs part of the DoCmd.OpenForm "FrmLateProjects",,,,,,"Form To Return To" that way you can tell the form what to do when it is closed. in your onclose event check the information you placed into the OpenArgs and take the required action. I use it this way...
  8. jagilman

    i opened a form using DoCmd.OpenForm "Name",,,,,acDialog

    On the close event of your FrmLateProjects do this. Forms("frmSwitchboard").SetFocus John A. Gilman gms@uslink.net
  9. jagilman

    Using multiple fields to validate data

    Burro, I have made a quick and dirty sample database to show you how to populate a temp table with all the days affected by the users attempt to check out a property. It starts with the earlier of the checked out date or the users selected check out date and then goes to the latter date for...
  10. jagilman

    Using multiple fields to validate data

    I would avoid the use of daily entries. The check out and check in dates provide enough info for a test, however is there a need to overlap the check in and out dates. As in returning the property in the AM and checking it out in the PM. Use the following logic for your availability test...
  11. jagilman

    Stored Procedures with a list and the Parameter?

    TriggerMom, it would appear that you could create a basic sql statement that only required the user to generate the "where part of the statement" then put the whole thing togeather and execute it. Do I have part of this right? John A. Gilman gms@uslink.net
  12. jagilman

    SQL Server - MS Access front-end...general opinion

    Here is an example of an Access query using ODBC. The value of 0 = forever!! Set qry = db.QueryDefs("qryPackage") If Err Then Set qry = db.CreateQueryDef("qryPackage") Err.Clear qry.Connect = ConnectionString qry.sql = "sp_SWPackage @ShipBatch = " & ThisBatch...
  13. jagilman

    Stored Procedures and Triggers

    Just a thought, in Access I would use the error object to test for this duplicate value error. Try to follow your insert statement with an error test somthing like this. If (@@Error > 0) --See if an error was produced If (@@Error = YourError#) --Expose your error (Resume or T-SQL...
  14. jagilman

    Setting Backcolor property

    Rick Sprague, send me an email if you would be interested in kicking around some questions regarding ODBC connection problems using Access and SQL Server. John A. Gilman gms@uslink.net
  15. jagilman

    Setting Backcolor property

    Rick Sprague, wow! Just another note. I wonder how many Access 2000 users are familar with the conditional formatting available that can give a wide range of formating capabilities to data sheet or Continuous forms? John A. Gilman gms@uslink.net
  16. jagilman

    Concurrency in Access

    Be carefull, if your number of users is getting that big you should probably looking at somthing like SQL Server. John A. Gilman gms@uslink.net
  17. jagilman

    Continuous form user input help

    filmar68, with just this small amount of information it is hard to understand what other choices might be available to you. Feel free to email me a copy of the database if you can. I'll take a look and get right back to you. John A. Gilman gms@uslink.net
  18. jagilman

    Setting Backcolor property

    Yes and no. I ran across the behavior first and then found a printed article on it somewhere. It seems Access will remember the backcolor value of the last selection you made. It looks weird if you choose several different backcolors for several text boxes. That is how I found it. Although this...
  19. jagilman

    Attach/Reattach MDB

    orens1, use the span disk option in winzip. it lets you use more than one disk. John A. Gilman gms@uslink.net
  20. jagilman

    Preparing to combine databases and acess remotely - suggestions please

    You will need to use SQL Server as the database from what my experience has been. When you need data just make a request via a stored procedure. When you update data you take the same approach. Access mdb tables would not be suited to the WAN acces you need. All the database management is under...

Part and Inventory Search

Back
Top