Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: 1angryadmin
  • Order by date
  1. 1angryadmin

    250gb drive...partition limits?

    i just installed a 250gb into the server onto an IDE card which enables large drive support. When i goto to disk management and add the disk and format it. It does not appear in windows explorer. Is there a partition size limit or am i missing something stupid?
  2. 1angryadmin

    forward email to external domain address

    i have a user who is a consulant. We setup an email address for him on our exchange server but he would like that mail forwarded to his personal email address. please help he won't stop calling....
  3. 1angryadmin

    Passing VAR between forms

    thanks hehe had no idea it would be so simple hehe
  4. 1angryadmin

    Passing VAR between forms

    when the second form loads i would like to see a msgbox with the var i passed so that i know i am indeed passing what i think i am...
  5. 1angryadmin

    Passing VAR between forms

    thanks to both of you i have the var passing with no more error, one last question how do i prove i am passing what i think i am...please be merciful for i am a network guy not an access code guy.... (perhaps a msgbox?)
  6. 1angryadmin

    Passing VAR between forms

    i have the following code in my open event in the second form: Private Sub Form_Open(Cancel As Integer) stCompName2 = Me.OpenArgs End Sub
  7. 1angryadmin

    Passing VAR between forms

    its telling me invalid use of null which tells me that i am either not getting the var over there or i am not reading it in correctly.
  8. 1angryadmin

    Passing VAR between forms

    Private Sub var_passing_button_Click() On Error GoTo Err_var_passing_button_Click Dim stDocName As String Dim stCompName As String stCompName = Trim(Me.List1) stDocName = "a_test_var_passin_Form2" DoCmd.OpenForm stDocName, , , stCompName
  9. 1angryadmin

    Passing VAR between forms

    here also is the code i am using on form1 to read the var into the string and pass it using openargs
  10. 1angryadmin

    Passing VAR between forms

    i have the var being read into a string the problem seems to be on the 2nd form where i want to read the var being passed into a new var. here is the code i am using: Private Sub Form_Load() Dim stCompName2 As String stCompName2 = Me.OpenArgs End Sub
  11. 1angryadmin

    Passing VAR between forms

    I have a form where the user selects a company name from a drop down list. I would like to have the user click a button then opening another form with the information about the user's selected company prepopulted. How do i read the selection into a VAR and then pass the VAR to the next form?
  12. 1angryadmin

    declaring global variable

    ok here is (i hope) an easy one. how do a make a variable a global variable? on your marks...get set....
  13. 1angryadmin

    Passing Vars between reports

    the code from form 1 that launches form 2 is: DoCmd.OpenForm "frmLeadcontactadd", , , , acFormAdd
  14. 1angryadmin

    Passing Vars between reports

    OK i have these 2 forms one leads to the other. the only problem is form number 2 needs some info from form number one. this is the code from form 2 where it expects info from form 1 =[Forms]![frmLeadProjectInfoAdd]![ProjectID] form2 is named frmLeadcontactadd form1 is named...
  15. 1angryadmin

    Change the Report Data Source

    where specifically do i click to find the properties for the report? it seems like everywhere i click and select properties there is not information under data. i just want to find out what query the report is using. thanks
  16. 1angryadmin

    Change the Report Data Source

    thanks all set :-)
  17. 1angryadmin

    create report from a drop down selection

    problem solved thanks! i would not have been able to do it without your tip on Forms!frmYourForm!cboState
  18. 1angryadmin

    Change the Report Data Source

    how do i change the query that a report uses? i hope this is an easy one hehe...
  19. 1angryadmin

    create report from a drop down selection

    ok i have the drop down on the form being populated with the state names. I have a command button which previews the report. but the query does not seem to care about my drop down list...
  20. 1angryadmin

    create report from a drop down selection

    sorry if it seems like i am frantically posting but i am activly working on this problem... i am trying to figure out how to add a drop down to the form and i can not find it...this should be easy but i have a limited IQ hehe...

Part and Inventory Search

Back
Top