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 wOOdy-Soft 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. toolsofministry

    Adding more than one field in the routine shown

    I have five fields that I want to use in this routine. What do I need to place them in text1, text2, ETC. ReadTextFile = "A:\01.txt" Open ReadTextFile For Input As #1 Input #1, TextFile DoEvents Text1.Text = TextFile Close #1 Thanks, Gerald Robinson
  2. toolsofministry

    Reading a Text Delimited Files from A: Drive to Convert to Access Tabl

    I have an application where many of my clients will have the name, address, phones numbers, date of birth ETC in another application. Their application will export the data to a text delimted file on a floppy. I want them to point the fields in their text delimted file to corresponding fields...
  3. toolsofministry

    Why the code below does not select a record falling betwee two dates

    Dim todaysdate As Date crPrintAssignments.DiscardSavedData todaysdate = Date crPrintAssignments.RecordSelectionFormula = &quot;{ado.DateofNexVisit} <= '&quot; & todaysdate & &quot;'&quot; crPrintAssignments.PrintOut False ', 1, False, 1, 1 Can someone tell me why the formula shown does not...
  4. toolsofministry

    Error in VB 6.0 Requiring a restart of the application.

    For you who looked at the website where I had a graphic of the error please take another look. I now have an explanation of why the error , three graphics that I cut and pasted Please, if you are familar with VB 6.0 log onto www.toolsofministry.com and follow the link to the error page and let...
  5. toolsofministry

    Probelm with re-occuring error in Visual Basic 6.0. To frequent!!

    Please log onto www.toolsofministry.com and click on the link which will open a page showing the graphic from VB telling me an error has occured. I have this almost everytime I am in the application. Cannot tie down what I have just done when the error graphic pops up. In fact it will...
  6. toolsofministry

    Skipping to a new page.

    I have an application where I want to print the names who are assigned to a specifice leader. Have that working but want to start a new page when the leader name changes. How do I tell it to skip to a new page? I am using cr 8.5 with the report imbedded in VB 6.0. Thanks
  7. toolsofministry

    (Error 524) The specified error has occurred in the Automation object

    'item' (Error 524) The specified error has occurred in the Automation object currently running. I have for different drop down combo boxes that are working great. When I attempt to change an item in a text field from an entry in the Combo Box it changes fine. Then when I click on the data...
  8. toolsofministry

    Text Delimited Files

    I have a VB 6.0 Form which the user completes. Some of my clients have some of the same information in other applications databases (not all have Access). I can export their data to a text delinited file. Now the question. How can I display beside my for and let the user drag the fields from...
  9. toolsofministry

    Get error in VB with XP Pro..

    I get frequent errors when I click to run an application after making changes. Comes up with no explanation as to the type of error, just an option to send the error report to MS, which I have done at least 25 times... Anyone else having this problem? If so can you give me a solution or what...
  10. toolsofministry

    VB 6.0 Package &amp; Deployment encountered the following error

    Package & Deployment encountered the following error Unexpected error number 80010108 has occurred: Automation error the object invoked has disconnected from its clients PDMan 98 has encountered a problem and needs to close.
  11. toolsofministry

    Sunday Date...need the 1-52 week number

    I have an application where the user clicks a Sunday on a calendar. Is there an automatic way that the corresponding week number for that Sunday can be displayed. In other words the fourth Sunday in January would be week 4 ETC. Thanks and Merry Christmas if you are like me, a computer holic and...
  12. toolsofministry

    Where do I install threed32.ocx.

    Threed32.ocx I have one on my hard drive but it is not in the right place for VB 6.0 to find it. I am also getting &quot;Couldn't find installable ISAM
  13. toolsofministry

    Data Bound Combo Box.

    I am using a combo box bound to a table for cities. My main form has a data control.I want to populate the city field of the main from from the combo box. I cannot get the cities combo content to change when I advance the main form. Rather than show what is in the field of the next main form it...
  14. toolsofministry

    Combo Box move to selected record

    Is there any faster way to access the first record, could possibly have more than one fullname in the table , than using the following code FraVisitationUpdate.Visible = True TheNames.Recordset.MoveFirst Do Until Me![txtFullName] = Me![DBCombo1].Text TheNames.Recordset.MoveNext This...
  15. toolsofministry

    Combo Box

    Have a combo box tied to a data control which is tied to a query in an Access database. Query has 4 fields. How do you store the value of a field that is not the bound column to a variable using VB code.
  16. toolsofministry

    Two Data Controls

    I have two data controls on one form. I want the second DC to advace when I advance DC one. I have tables in DC two that I use to populate fields in CD one. When I come back and scroll through DC one I want the matching record from DC two to display the appropriate fields. Thanks
  17. toolsofministry

    Drop Down Combo

    I use a combo to contain data that I want to place in a text box. When I click down on the combo how do I get the entry I want placed in the text box. Usually a click will work but the click fires when I hit the down arrow on the combo box.

Part and Inventory Search

Back
Top