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 bkrike 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: tyedyejenn
  • Content: Threads
  • Order by date
  1. tyedyejenn

    I want the tab key to emulate the enter key

    I have looked through other postings and see lots of help for having the enter key work like the tab key, but what I need is just the opposite: I have a button on my form with the default property set to true so when the user presses the enter key the code in the cmdButton_click event executes...
  2. tyedyejenn

    combo box help

    One of the features of a form I am designing is when the user types in the textbox part of a combo box the list box part drops down with the closest matching entry highlighted, so the user can hit enter and the entry will show in the textbox part of the form. I am unsure of how to make this...
  3. tyedyejenn

    getting records from access 97 database using date in sql statement

    My program is written in VB6 and accesses an Access 97 database. In my table I have a field called DateEntered that has a data type of date/time. In my program I have a variable called strActivityDate. I have tried to declare strActivityDate as a variant, a string and a date and I keep...
  4. tyedyejenn

    passing value to data report

    I have a VB6 program that runs a report created using the Data Environment and the data report designer. I have an SQL statment in the DE that says: Select * from Table Where ('Field' = '09/11/2000') this works fine. Instead of hardcoding the date I want to substitue a variable...
  5. tyedyejenn

    delete 1 element from Array

    My program is written in VB6. I set up an array for batch customers. When a receipts rep attaches payments customers are added to the batch customer array. What I am having problems with is if the user decides they want to unattach a payment("delete" the customer from the array) I...
  6. tyedyejenn

    trouble writing to random access file

    My Program is written in VB6 I need some help with a problem I am having I need to write certain data to a text file. I have my records writing to the text file but the problem is this: my records are all on one line 00050212120100 00050204890100 i tried adding a...
  7. tyedyejenn

    errors occurred when running setup of VB6 program

    I wrote a program in VB6 and used the package and deployment wizard to create a cab file. The following errors occur when I run setup. C:\Windows\system\MSVCRT20.DLL an access violation occurred while copying the file ----- An error occurred while registering the file...
  8. tyedyejenn

    In VB6 program simulate "Tab"by pressing the enter key

    I wrote a data entry program using VB6. I was under the impression users would use the Tab key to navigate through fields(I set up the tab indexes and such). Well the bosses would also like the option of using the enter key to navigate through fields(they want the user to be able to use either...
  9. tyedyejenn

    selecting records for Access 97 report from VB 6 program

    I am writing a program in VB6 and want to run a report from Access 97 to select certain records.&nbsp;&nbsp;I have the following line of code to run the report<br><br>Accapp.DoCmd.OpenReport &quot;LogIn Report&quot;, acViewNormal<br><br>I just don't know how to add a sql type statement to select...
  10. tyedyejenn

    selecting records for Access 97 report from VB 6 program

    I am writing a program in VB6 and want to run a report from Access 97 to select certain records.&nbsp;&nbsp;I have the following line of code to run the report<br><br>Accapp.DoCmd.OpenReport &quot;LogIn Report&quot;, acViewNormal<br><br>I just don't know how to add a sql type statement to select...
  11. tyedyejenn

    record selection with more than 1 criteria

    I am writing a program in VB6 and my reports are designed in Crystal Report 8.&nbsp;&nbsp;I am having difficulty selecting records when my selection criteria has more than 1 comparison. (Example--I want all the records that match a specific batch number and have an Amount of Adjustment &gt...
  12. tyedyejenn

    code snippet for selecting specific records

    I am writing a program in VB6 with Reports designed in Crystal Reports 8.&nbsp;&nbsp;I want to run an Edit List with only records that match the current batch number(which is stored in my program as strBatchNumber).&nbsp;&nbsp;Can someone help me out with an example of how this is...
  13. tyedyejenn

    VB6 and crystal reports

    I was hoping someone could provide me with some help.&nbsp;&nbsp;I am writing a program in Visual Basic 6.&nbsp;&nbsp;I designed a report in Crystal Report 8.&nbsp;&nbsp;Then I found out there is a Crystal Report package that shipped with VB 6.&nbsp;&nbsp;So I installed that.&nbsp;&nbsp;Under...
  14. tyedyejenn

    crystal report with VB

    I was hoping someone could provide me with some help.&nbsp;&nbsp;I am writing a program in Visual Basic 6.&nbsp;&nbsp;I designed a report in Crystal Report 8.&nbsp;&nbsp;Then I found out there is a Crystal Report package that shipped with VB 6.&nbsp;&nbsp;So I installed that.&nbsp;&nbsp;Under...
  15. tyedyejenn

    filtering a recordset

    I am trying to Select only records that match an account number.&nbsp;&nbsp;Here is the code I have, it selects all the records from the table but I can't figure out how to select only the record I want <br>Please help--Thanks Jenn<br><br>Dim cnn1 As ADODB.Connection<br>Dim cmdAccountCheck As...
  16. tyedyejenn

    code to call Crystal Reports

    I need to run a report from within my VB6 program.&nbsp;&nbsp;Can anyone help me wiht a code snipet of how this is done?<br>Thanks in advance<br>Jenn
  17. tyedyejenn

    Need to run Crystal Report From within VB program

    I am writing a program in Visual Basic 6 and need to print a report.&nbsp;&nbsp;I designed the report in Crystal Report 8.&nbsp;&nbsp;How do I get the report to print from my program?&nbsp;&nbsp;Also, do the records have to come from a database or can the records come from records stored in...
  18. tyedyejenn

    run Access Report from within VB6 program

    In my Access database there is a Report designed that I want to run from within my Visual Basic 6 program.&nbsp;&nbsp;Is this possible and if it is how do you run it?
  19. tyedyejenn

    sending control from one for to another without unloading first form

    This is what's happening<br><br>A user is entering in records on frmCustEntry, when they get to a new customer(one not in our database) the user is prompted (via msgbox) to create a record for this account number, when they click yes I have another form that pops up(frmCustName) that the user...
  20. tyedyejenn

    disabling close button (X) on form

    I want to disable the X (close button) on a form.&nbsp;&nbsp;I see in the properties for a form you can disable the min and max buttons but I only want to disable the X(close button)<br><br>Thanks Jenn

Part and Inventory Search

Back
Top