Search results

  1. E

    Hiding Access Title Bar

    Hello, I have done some research and unable to find my answer. But here is what I want to do. All I am asking for is direction. Any help would be appreciated. My database starts up with a switchboard. Nice looking. I have it lock down that the size cannot be changed and it is centered...
  2. E

    Me. Command

    I figure out that my issue was that it was a toggle button and everything runs under the Form. Now my issue is: If you select Case 1 it will enable the box. But how do I tell it Disable if Case 1 is not selected. I have people select Case 1 than Select Case 2. It currently keeps both window...
  3. E

    Me. Command

    I have changed my attack at this. Basically I have disabled all other pull downs options that are not in the Toggle Box. So to make this easier. If you select ClassI then enable Frame Relay
  4. E

    Me. Command

    I have done some searching and unable to completly get it. I have a Toggle box for 7 options and next to the options I have pull downs. Class I - Frame Relay Class II - Frame Relay - POTS and so on. I need to design if select Class I, The column becomes enabled and Frame Relay and POTS on...
  5. E

    Email option on Form

    Thanks to all ....
  6. E

    Email option on Form

    That help alot. One more question with this. Here is my thread Private Sub Email_Click() On Error GoTo Err_Email_Click Dim stDocName As String stDocName = "All Work Orders" DoCmd.SendObject objecttype:=acSendReport, _ ObjectName:=stDocName, outputformat:=acFormatSNP...
  7. E

    Email option on Form

    I have created a control tab on my form to email a report Here is my code: Private Sub Email_Click() On Error GoTo Err_Email_Click Dim stDocName As String stDocName = "All Work Orders" DoCmd.SendObject acSendForm, acReport, , E_Holtman, , , Work_Order, Here_is_a_Work_Order, ...
  8. E

    Newbie - I have tryed this

    Thank You MC. Yes that worked Thank you for taken the time and assisting. I have been thrown into creating Access databases with in one week I knew nothing about Access and VB and have been able to create a nice order form. But sometimes no matter how many times you read it. It does not...
  9. E

    Newbie - I have tryed this

    Thanks MC I would personally have the engineer textbox visible on the same form I agree I have both text boxes on the same form Requester - Pull Down Engineer - Pull Down If I am checking Yes it doesnt seem to be updating the Engineer field. The Engineer and Requester field are seperate...
  10. E

    Newbie - I have tryed this

    Ok starting off I have been reading on VB and I am new. I am having a tough time understanding a basic function. I am in my Forms of Access and what I have is a Requester combo box with my seclections. When the requester name has been pulled down it will pop up a box Asking if it is the same...
  11. E

    Help - Error Accessing File. Network Connection may have been lost

    I keep getting this error when trying to acces my database Access 2000. After hitting OK VB pops up. Is there something incorrect in my VB. Maybe where it is hightlighted in Red. Thanks Option Compare Database Private Sub Command107_Click() On Error GoTo Err_Command107_Click...
  12. E

    Forums - Simple Question

    Sorry for being vague. I am not familar with VB tool. Using Microsoft Visual Basic. In my form I have pull downs and open text boxes. Basically what I am trying to do is Requester - x (This is a pull down) Phone number - (This would tie into the Requester that was selected) I want it...
  13. E

    Active X question - Calendar option

    everything I have read I can not find a way to have a calendar point to multi fields. In the Control Source it only will let me point it one table. I have several date inputs that I would like only one calendar to be able to point to the options Example Service_________Check...
  14. E

    Forums - Simple Question

    I have started working on a Access project and have all tables completed. One issue that I am running into is on my forms I want to create IF statments. I am very familar with Excel expressions But are having issues with creating in Access where the statments go? Example. Requester pull...
Back
Top Bottom