Search results

  1. J

    [2003] Form issues

    Anyone? It would really help if someone here could help me out.
  2. J

    [2003] Form issues

    First of all it was a while since I been here. Now for my questions: In a form I've got a popup menu linked to a set of cells. That much is easy done. Now I've got in the same form a textbox that needs to be updated with the correct product chosen. I also have an editbox containing the amount...
  3. J

    Installing new templates

    I'm creating for my company an installer that will install our Word templates. But no matter what I do the templates doesn't showup when you're selecting a template.from your computer. Where is the templates located? Also. How do I insert the templates into the New folder in the popup menu...
  4. J

    Adding fields into a new field drives me mad.

    So how do I add the update routine, and where?
  5. J

    Adding fields into a new field drives me mad.

    So I have a table containing 2 fields containing the first name and last name of a customer. I do need to add these names in the same table into a new field called Name. Can someone help me out?
  6. J

    Disabling buttons depending on users rights

    Fair enough. I still think that the buttons needs to be visible but not accessable for the users.I set up security with the guide in Access 2k3, and so I opened up the file it created. I can see the acounts there and I was thinking if one could create a relation between that file and the...
  7. J

    Disabling buttons depending on users rights

    It is quite intresting I must say. The users log on to my database at first. Then when he is online he'll see the form with the buttons.
  8. J

    Disabling buttons depending on users rights

    Here is one for you. My start form has a tabcontrol and on the first page it has 8 buttons, each taking you to a specific form. Say that a worker is accessing the database and only have access to the certain forms. I know that button.enabled = false deactivates a button, but how do you read...
  9. J

    Defining global constants?

    So I have a set of colors and font names I must rely on when displaying my forms. I know how to create a form and how to asign new colors to a component, but defining these global constants, how do I do that?
  10. J

    Report problems displaying names

    Ok can you give some more information how I should set this up? So damn noob at access. :D
  11. J

    Report Send through Auto Email

    It seams like you're reading out of bounds here. I can't do this in Access but I can give an example in pseudocode: Error: for i = 1 to count(records) do begin end Correct version for i = 0 to count(records)-1 do begin end Since computer programs often count from 0 to 9 instead from 1 to...
  12. J

    Report problems displaying names

    Uh no it ain't any forms shown at all. Here is the database. http://www.speedyshare.com/869717722.html It will launch a form at startup. It has alot of hidden tables and report so make sure to enable the view of hidden objects. Anyway the report that fails is the report Kvitton.
  13. J

    Report problems displaying names

    So I have a report that will work as an reciept that we get when we are recieving an request to deliver. The report shows the following information. <date> Today we recieved a request from: <request person> The task is: <task name> The one to do it: <task person> More information <info> The...
  14. J

    Tables refering to more than one table

    So I've been able to link in a table to my orders table. The thing is that my employer needs me to link to two tables. One that holds the tasks that needs to be done. This is completed. Now I need to link the orders table into a version history table with a sub linked table of features related...
  15. J

    Images with 3 colored dots

    No can do. MsAccess added them.
  16. J

    Images with 3 colored dots

    I'm creating buttons from images I''m pasting on the forms, but all buttons are having these 3 pixels red, green, blue down in the left corner. Any way to get rid of them?
  17. J

    Questions on locked databases

    I can understand the Delete right. But the edit right? Why shouldn't I let them edit the database? Someone has to give a more microscopic analysis here.
  18. J

    Questions on locked databases

    So I have been able to secure a database so you have to log into it to get access to the data. Only big problem right now is that I can access all the posts. There is by that a potential risk of none experienced Access users ruining the data for someone else by deleting such a post. How can I...
  19. J

    Adding strings together

    Ok so here is my control source as it is now: =[Förnamn] & " " & [Efternamn] just to simplify the process. Giving this control source gives me an error while giving another reference to another field gives me the result.
  20. J

    Adding strings together

    Care to explain a bit further? Because when I do this then all I get is #Error when I'm trying to print it in a report.
Back
Top Bottom