Search results

  1. M

    Security Certificates

    Howdy all; I've got a data access page accessing an access database on the web, but whenever anyone tries to access the page, they're prompted to lower their security settings so that they can submit information... this is no good. Does anyone know how to get around this?! -Mike
  2. M

    Creating linked Sub-forms

    Ha Ha - sounds good, thanks! Ya, it is definately what you're after, and if you follow his settings/properties for the subforms he uses it'll be smooth sailing! Glad I could help :D -MF
  3. M

    Creating linked Sub-forms

    Your relationships are now right - good job. To make a form that incorporates the two forms that you've already created, a subform can be used. The form containing course information would be the subform on the form with the employee info. I had to create something just like what you're...
  4. M

    Creating linked Sub-forms

    You can select multiple primary keys in one table by holding down ctrl (or shift) to select multiple fields before hitting the little key icon. A foreign key is a primary key from another table -- so in your joining table (Employeecourse), the two ID fields make up the primary key for that...
  5. M

    Single Use Only Form

    you're right, it does sort of defeat the purpose! But that's alright, you can't decide what your boss asks you to do, right? I would suggest running a delete query after printing - perhaps embedded into a printing Macro that just deletes all the records (which should really only be 1 record -...
  6. M

    unable to load database schema

    done and done Good call. I thought it was updated (assumed, more like it) - turns out it wasn't and the service pack 3 update has fixed my problem. MAGICAL! thanks Kodo
  7. M

    unable to load database schema

    Wow, am I ever stuck. I'm using a data access page to access a database over the web. I have edited the scripts with hyperlinks only, other than that, it is as Access created it. My problem is that since I have loaded the data access page onto my server, I cannot go back into access and...
  8. M

    I have a vision...

    Okay, I think I'm going to try to push for ASP - my boss will go for it. Do you know how to parse info from the actual URL - I know you can store arguments in the URL itself by preceeding them with '?', but I don't know how to access them - is there an ASP tag that'll allow me to do that? if...
  9. M

    I have a vision...

    I'm dumb- I should have looked into Brinkster first-- they let you use your own domain :rolleyes:
  10. M

    I have a vision...

    Okay, thanks for clearing up the confusion. Well the disadvantages of using DAPs seem to be coming damn near close to the benefits that they provide... Can you think of any other solutions that might work aside from using ASPs (ie. solutions that wouldn't require me to put up a fuss to get an...
  11. M

    I have a vision...

    Each student account (in this case email account is not student designated) has some space on a file server that can be accessed through the Universities FTP protocol that they have developed. Basically, I upload pages to the appropriate folder, and when I go to the designated webspace-- in...
  12. M

    I have a vision...

    I'm using IE 6.0 to look at the DAP
  13. M

    I have a vision...

    Wow - okay, I created a file named test.asp, and in it there is only one line -- the line from the post above. When I go to access the page, the only thing on the screen is <%="hello world"%> just as it is written in the file... almost like it were am HTML file and that were the text... ...
  14. M

    I have a vision...

    horray for help Good point, and I thought that myself... but when I spoke with our Tech dude (our webspace is hosted by the University of Waterloo) - he said that there were only 2 IIS enabled servers and I wouldn't have access to them... What would be a simple way to test if the server we're...
  15. M

    I have a vision...

    Alright, I've got this vision in my head, and I think its possible, but I'm having trouble getting it off the ground. I have a database that needs to be populated by users from around the world. The users that are to populate the database will do so from an online form. I would like to be...
  16. M

    Is Access good for making a Survey?

    sure, why not? Access would be easy to use for your survey. It sounds like one form would do it-- you could have drop down menus, text boes, etc... linked to tables that hold all of the survey information. I would suggest using the data entry property on the form and remove all navigation...
  17. M

    Data Access Page Manipulation

    I have a data access page that I am using to input data over the net-- it works nicely, but I would like to find a way to limit its abilities. I want to be able to restrict the page to one record, but load the appropriate record upon a user visiting the site. Is there some way for other...
  18. M

    Can't get rid of "read only-ness"

    thanks for your help, but I found the problem-- the code I was using to bring up the form through using the button specified (through the .openform function) acReadOnly.... it pays to read carefully.
  19. M

    Can't get rid of "read only-ness"

    I can edit the information through the frmPrivate form when I open it directly from the database window, but when I open it via the button on the frmDetailed form, I cannot edit. In the situation where I cannot edit the information- I switched to the datasheet view, and am still unable to edit...
  20. M

    Can't get rid of "read only-ness"

    I've got 2 forms: frmDetailed and frmPrivate. frmPrivate is opened via a command button on frmDetailed along with a query and the OpenArgs property to bring up the matching record on frmPrivate. frmPrivate opens just fine, but I cannot edit the data that the form's controls are bound to...
Top Bottom