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 Mike Lewis 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: *

  1. Peanut2232425

    Having troubles with drop down boxes being automatic

    This is how i have it written: Private Sub Form_Current() If Problem <> &quot; &quot; Then Me.Problem.Enabled = True Me.Problem2.Enabled = True Me.Problem3.Enabled = False Me.Problem4.Enabled = False Me.Problem5.Enabled = False If Problem2 <>...
  2. Peanut2232425

    Open #1 for Input(?), Append(?), or what(?)

    'to add a file to the filelist.txt if the user changes if userchange=true then Open &quot;c:\program files\audio&quot; For Append As #1 Print #1, strFilename Close #1 load strFilename else 'to load a file the user selects open &quot;D:\audio,default location&quot; for input as #2 do...
  3. Peanut2232425

    Getting a &quot;Type Mismatch&quot; Error

    I need help. If possible could you look at the code below. I keep getting a type mismatch error. I know I am using Boolean b/c of IWhere. The field it is talking about is a text field. Private Sub Report_Open(Cancel As Integer) On Error GoTo Report_Open_Err Dim myDB As Database Dim repRS As...
  4. Peanut2232425

    Getting a &quot;Type Mismatch&quot; error

    I need help. If possible could you look at the code below. I keep getting a type mismatch error. I know I am using Boolean b/c of IWhere. The field it is talking about is a text field. Private Sub Report_Open(Cancel As Integer) On Error GoTo Report_Open_Err Dim myDB As Database Dim repRS As...
  5. Peanut2232425

    trying to get 2 forms to work together

    i put a button on form A (which goes with Table A), when you press the button it should open Form B(which goes with Table B). They share alot of the same field names. Once you push the button on form A & form B shows up I want the field names that r the same to show up on form B for that...
  6. Peanut2232425

    VBA Problems

    It is telling me that I have a Mismatch Type error. Here is my code. I can't tell anywhere where there is one. Can some one please help!!! Private Sub Report_Open(Cancel As Integer) On Error GoTo Report_Open_Err Dim myDB As Database Dim repRS As Recordset Dim SqlCPC As String Dim IWhere As...
  7. Peanut2232425

    Using VB for Application

    I was going to put the Application on the network & have an exe file on every user station so, they can get into the Application. I was wondering if VB was ok to use for the Application with that many users.
  8. Peanut2232425

    Using VB for Application

    I am thinking about making an Application in VB on a Sequal Server. Right now the Application is written in BASIC. I want to recreate it in VB & give it a new interface. In BASIC there are about 1900 Alpha-Nurmeric fields, 900 Numeric fields, and 550 Interger fields. There would approx. be...
  9. Peanut2232425

    VB vs VBA

    What is reflections?
  10. Peanut2232425

    VB vs VBA

    What are the differences between them?
  11. Peanut2232425

    What are the Advantages &amp; Disadvantages of C++

    What are the advantages &amp; disadvantages oc C++
  12. Peanut2232425

    Is it possible to EXPORT Ms Access Chart into PowerPoint or Excel?

    Have you tried opening the report then on your toolbar you should see the Word 200 icon. There is a drop down arrow next to it...it has an option to send it to excel.
  13. Peanut2232425

    What are the Advantages of VB vs C++

    Thank you guys for giving me the advantages &amp; disadvatanges. I Know VB fairly well. I am learning C now, hopeing to got to C++ next. I wasn't quite sure which would be the best language to use to make a commercial program. It will be doing calculations and many other things. But, I wanted...
  14. Peanut2232425

    What are the Advantages of VB vs C++

    I need to find out the Advantages of Visual Basic vs. C++

Part and Inventory Search

Back
Top