Search results

  1. S

    display green dots insted of value "1" in form? help.

    I would like the form to show a green dot, or equivalent, if the value is anything else than blank. the form is based on a crossquery that shows a lot of fields in columsn that has value 1, or blank. (it's always 1 or blank) It is about 15 colums with "skills" and the employees are sortered...
  2. S

    How to display message if box is checked with wrong criteria.

    Is there any way to do the following on a webform written in asp: If the user has checked a box called "utg" or "utgRI" or "inng" or "inngSt", and registered value 1 or 2 or 3 in a field called "activity", then a box should appear that says: "Hold your horses, check your input!", when the user...
  3. S

    Maintaining a large crossquery form with Yes/no values.

    I have a large query that contains a number of skills. It's designet with one table for employees, one for skills, and one for skillCombos. (so that an employee can have a number of skills, and a skill can be "known" to a number of employees). The structure: tblEmpl ------- INI Field1 Field2...
  4. S

    Changing to field value instead of fields.

    Help needed: Large Yes/no tables! I have a form with names of employees, and different skills that employee has. It is listed in a form as columns with the employee name in rows, and columns for the skills. The form is in fact really great, but I see that the solution might bring problems in...
  5. S

    Check box

    Hi. I tried your ExampleDB in the forum thread above. It only checkes one post in my form. I have a list that varies in size. Usually its varies between 4 to 30 posts. I would like the check all of them with with one click. Your exampleDB only checked one of the posts (the first post in the...
  6. S

    Authorize users based on network login name.

    Help with Authourizing users based on username??? Hi. I use a simple kode to authenticate users. The web page is based on a msaccess db, and the users all sit in the same office. <% login=ucase(request.servervariables("AUTH_USER")) login=right(login,len(login)-instr(login,"\")) if login...
  7. S

    Authorize users based on network login name

    Hi. I use a simple kode to authenticate users. The web page is based on a msaccess db. <% login=ucase(request.servervariables("AUTH_USER")) login=right(login,len(login)-instr(login,"\")) if login <>"ADM" and login<>"US1" and login<>"US2" and login<>"US3" and login<>"US4" then...
  8. S

    "Merge" to text fields in query.

    Forget it... my bad..I had already added the "/" in the domene field. Thanx a bunch! You rock!
  9. S

    "Merge" to text fields in query.

    Thanks, it almost works... I get: DOMENEVVLINI It adds a "v" instead of a "/" ???
  10. S

    "Merge" to text fields in query.

    Hi, I am trying to "merge" to textfields in a query. One field is [domene], the other has the name [VLini]. I need these fields to end up like this: DOMAIN/VLINI I am trying to make a security check with AUTH_USER from the domain user, but it also requires the domain name. Since there are...
  11. S

    How to keep filter functions, but disable design view function?

    Hi, is there a way to disable the design view of a form, but keep the right-click filter functions that are built in? I have disabled everything in the startup meny, that also deaktivates the filter functions (I really do like those filterfunctions, think the english name is standard shortcut...
  12. S

    How to see ALL users, not only logged users?

    That will only work in the "form" interface. The DAP's only checkes in the HTML code if the user is authenticated to open the index file. I use the "Authenticate User", and plot the networkusernames directly into the html code (no lookups in the db). Probably not the wisest solution... It...
  13. S

    How to see ALL users, not only logged users?

    A little comment, and back to the orginal question... How to see who's viewing my db. I have a log for each time a user logs on through the logonform. I use a onload command that records this (code obtain in forum here). It captures the network username, and the workstation. The username they...
  14. S

    How to see ALL users, not only logged users?

    Thank you. I have to upgrade to Sql soon anyway. My administrator will probably demand it. Thank you for your help, I really appreciate it. K.
  15. S

    How to see ALL users, not only logged users?

    When I open the file in notepad it looks encrypted. Like this...
  16. S

    How to see ALL users, not only logged users?

    Hi, I have a db with 3 users operating with forms, and 15 users operating with DAP's. I dont use access security because the users using dap's gets a load of login forms, on for each dap. (i.e I have 8 daps in one html file). In stead I have an easy html code that restricts the users who can...
  17. S

    Holding down Shift

    I already have log on form, and have problems implementing the code Hi, I use the following code wich I have found on this forum to create a logonform at startup. I have tried to use the code from ghudson in this post, and implement it with my code. I dont understand how I am supposed to do...
  18. S

    Help on saving a snapshotreport til file automatically when a new record is posted.

    How can I save a new record to file in snapshot format when the post is entered? Preferably the user enters a new post with a data access page (html), that automatically saves a finished report to file. The code for saving the document is here, but how can I "launch" this code to a button in...
  19. S

    Print a report directly from a data access page.

    I have some trouble printing a report from a data access page. The users fill out some fields in the data access page. I need a print function wich launches/prints the report (that also contains fields not entered in the access page). The problem is that the users dont have access installed...
Back
Top Bottom