Search results

  1. M

    Fixed Width Delim File problems

    Automatic Export of a Access 2007 in a fixed width Delimited format. I have a program that I need to export a table T_ExportToAccounting that I need to export in a delimited format on to a floppy disk. I have read through the posts and solutions but still don't understand how to do this. The...
  2. M

    Access Controls definitions

    Thanks Thanks for the info VB.NET came with some nice posters :)
  3. M

    Access Controls definitions

    Hi I am looking for a book or poster or something that can show me all the access controls and what they do. My VB.NET version came with several posters. I have looked at many books but can not find one that enumerates and explains all of them. I would also like to get similar information for...
  4. M

    Cut Codes for Star Printer

    Hi I am printing tickets and need my Star Micronics TSP600 to cut after each ticket or after each batch of tickets. I could do 2 things. I could make the printer cut through code or I could tell Access to split the tickets in half and make 2 reports or 2 pages. Example if I want to print 3...
  5. M

    Access 2007 Control Array

    I have looked at several books and sites and I done seem to find where it says that it does or doesn't. Seems odd that they wouldn't include that.
  6. M

    Access 2007 Control Array

    Anyone know if Access 2007 has control arrays or some thing similar? Thanks
  7. M

    Combo drop down button enlarge

    Thanks Sweet :) thank you I will try it.
  8. M

    Combo drop down button enlarge

    HI I am working on a touch screen app. I need to make the drop down arrow in a combo box bigger so the user can choose it easier. Any ideas on how to do that. I could just put a transparent button over the top and make it bigger but I don't know how to call the click even for the combo box. I...
  9. M

    Index out of range

    Hi:confused: This code error is a bit complicated so I hope I can explain it properly. This is from a ticketing program I am working on. When the user clicks one of the buttons, say the adult button, the ticket type, price, qty, and total appear in a list box. One click on any button adds one...
  10. M

    on screen keypad

    Thanks Thanks for the link the should do what I need it to do :D Thanks for the quick reply as always.
  11. M

    on screen keypad

    First off thanks to everyone for all your answers on my previous questions. I have an on screen (touch screen) number keypad. Is there an easy way to have this key pad enter numbers into the current txtbox? I have several txt boxs so the the key pad will have to know which one has the focus. Thanks
  12. M

    index to large

    Hi This code error is a bit complicated so I hope I can explain it properly. This is from a ticketing program I am working on. When the user clicks one of the buttons, say the adult button, the ticket type, price, qty, and total appear in a list box. One click on any button adds one of that...
  13. M

    Cash register program

    I am trying to make a program to sell tickets. I need to figure out the best way to display the running receipt on the form. I would like to have it so that I can choose an item from the receipt section and delete it or change the qty. Is there any tutorials or sample databases that have some...
  14. M

    Enlarge Combobox button

    Awesome Idea Thanks I will do it that way Anyone else have any suggestions for the background color???:D
  15. M

    Enlarge Combobox button

    Hi I am creating a program that will be used with a touch screen. I am not sure what you call the button you push to get the combobox to open. I want to make that button bigger so that it can be used more easily with touch screen. I also need to know how to change the background color... not...
  16. M

    subform data taken from variable

    Clarification To Clarify since I have no reply s yet the subform or what ever I use to display the users choices must be able to be edited by the customer. They should be able to choose say Adult ticket in the subform area and change the amout of tickets there are. Thanks
  17. M

    subform data taken from variable

    Hi I have more questions on this ticketing program I am trying to get working. I have buttons along the side of my form for increasing and decreasing the number in a text box which represents how many tickets the customer wants. I need to take that number and display it along with the rate and...
  18. M

    textbox accepts numbers only

    Hay I figured it out. I know I had done it a while back but couldn't remember how I did it. Here is the code I am using in the Key down even for the txt box [code] Private Sub txtCarCount_KeyDown(KeyCode As Integer, Shift As Integer) Select Case KeyCode Case 48, 49, 50, 51, 52, 53, 54, 55, 56...
  19. M

    textbox accepts numbers only

    Thanks for the quick reply. I tried that but the txt box still accepts letters... when i do that or even the validation rules it will accept the letters then send up an error box. I want to prevent the user from even using anything but the key pad and the numbers at the top. So if that txtbox...
  20. M

    textbox accepts numbers only

    HI here is a crazy simple question I don't seem to be able to figure out or find an answer to. I have a program I am making in Access 2003. On the form I have a text box it is used to display the number of tickets sold. I want the user to be able to click in the textbox and enter a number...
Top Bottom