Search results

  1. voidcranium

    Combo Boxes on a form and then print Report.

    I made a form with several combo boxes on it and I need to print a report from this form. I did this in a hodge-pod way and I almost have it working but have hit a wall on how to fix my problem. Right now everything is on the report except for the Item Number. I am sure now that I have done...
  2. voidcranium

    Open a form in a small window

    Wow! so simple. :o Thanks.
  3. voidcranium

    Can I password protect....

    one form in my database? I would like to put a password on one form; all other forms are open to see. Can this be done?
  4. voidcranium

    Open a form in a small window

    Hello I have a database that opens in maximized form. I also have another form that opens when a button is clicked. What I want is for the second form to open small and not maximized like the main form. Can this be done? Thanks
  5. voidcranium

    Access or VB Express?

    Hello, I need some advice. I am currently trying to rework and enhance a database where I work. It was set up for printing work orders only. I have enhanced it to keep a database of Customers and will soon get a tracking form up and working. My question is; should I put all this effort into...
  6. voidcranium

    I need a combo box to fill text boxes.

    Thanks for your replies that is some useful information I will use. BUT....I noticed that you are pulling the data from the table, I read somewhere that one should never populate a form straight from a table but use a query to get the data and then populate the form. Thats what I was trying to...
  7. voidcranium

    I need a combo box to fill text boxes.

    Hello I hope someone can help me on this one. This is something I am not getting an understanding on and need some help. I made a form that holds all information for our customers. I want to make the Company Name box into a combo box so when I change the Company Name in the combo box it...
  8. voidcranium

    Normalize an exsiting DB?

    Well I tried the analyzer and it has not finished. I will let it run tonight when I leave and hope it gets done by the morning. I will see what happens then. Thanks
  9. voidcranium

    Normalize an exsiting DB?

    Hello I have a question. I work for a company that had someone set up an Access database that generates work orders. That person created a single LARGE table. 107 fields in the table. over 3000 records created so far. Should I bother to try and normalize it? Can it be Normalized? Is it a...
  10. voidcranium

    Go to last record when form opens?

    I would like my form to open and automatically go to the end of the records, so I don't have to navigate to the end before I start entering data. I have seen a form do this but can't find out how. Thanks
  11. voidcranium

    CheckBox.check = show picture

    Thank You so much. :) I got it to work, I did not realize I had to put the code in 2 different spots. Here is the final code I used: Private Sub Form_Current() If Me.checkBoxStar_List Then Me.imgStar.Visible = True Else Me.imgStar.Visible = False End If End Sub Private Sub...
  12. voidcranium

    Picture do not show

    Is the picture Embedded or linked, you might need to change the link to the picture.
  13. voidcranium

    CheckBox.check = show picture

    Sorry guys but I can seem to get any of these suggestions to work. I even created a new form, checkbox and image put that code in and NOTHING happens. Got any other ideas? I didn't think this would be that hard. Thanks
  14. voidcranium

    CheckBox.check = show picture

    Where is that current event?
  15. voidcranium

    CheckBox.check = show picture

    Hello I'm at a loss on how to get this to work. I have a check box and I want it to show a picture if it is checked and hide the picture if it not checked. I dont know where to put it either, do I put it in the form load procedure or in the checkbox procedure? Basically I want the user to...
Back
Top Bottom