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: tfayer
  • Order by date
  1. tfayer

    Help With Sql/OleDbDataReader??

    Yes That Is A Typo.
  2. tfayer

    Help With Sql/OleDbDataReader??

    I am trying to use the DataReader To Access Table Records. I have done this successfully before but, now I am getting an error. I have tried it both using SQqlServer and Access Databases, using SqlClient and OleDb respectively. The DataReader Variable I declare = Nothing when I try Calling the...
  3. tfayer

    How To Insert Into Multiple Tables for A ManytoMany Relationship

    I have 3 tables with fields as follows: tblInvoices InvoiceID - PK Autonumber InvoiceDate jtblInvoiceDebits InvoiceID DebitID tblDebits DebitID - PK Autonumber DebitAmount DebitType Setup In a Many-To-Many Relationship using jtblInvoiceDebits as the Junction table. Taking the...
  4. tfayer

    If Form Loaded Then......Question?

    Thanks for your help. That Works but, When I Click Apply/OK while the form is open, It stil opens another instance of frmContactList. Do you have any idea why?
  5. tfayer

    If Form Loaded Then......Question?

    If Form Loaded Then....Question I am working on a project that currently has 4 Forms 1. frmMain (MDIForm) - with options menu to launch other 3 forms 2. frmContactList (MDIChild = True) 3. frmCompanyList(MDIChild = True) 4. frmOptions(MDIChild = False) The Startup Object is Sub Main...
  6. tfayer

    Web Address to MSDN Visual Basic 6 Reference?

    Does Anyone Have the Web Address to the Visual Basic 6 Reference Section on Microsoft's MSDN Site? I can not find my link. Thanks In Advance!!
  7. tfayer

    Refering To or Passing A DataGrid Value to New Form

    I have DataGrid1 based on a ADO Recordset that displays Each Account and Some Info about that Account. So each row is a different account. In column 1 is the account Id (CON_ID). In the double click event of DataGrid1 I have placed Form2.Show and want this to display information for The...
  8. tfayer

    Can Anyone Create Code to Do the Following?

    markphsd, Thankyou for your suggestions. I'm not sure what cuneiform is. I've heard of an OCR called Cunneiform but, thats it. Can you inform me on what it is? Thanks
  9. tfayer

    Can Anyone Create Code to Do the Following?

    BRIEF DESCIPTION OF THE PROBLEM: Trying to create an appoinment scheduling program and running into a problem if on a given date there are two or more appoinments that have some overlapping time between them. If there is only one appoinment during this time, display the data in colored...
  10. tfayer

    Problem Setting RowSource Property on SubForm

    I can Not Change the RowSource Propeety of a ListBox. Main Form = frmSchedule - Unbound SubForm = sfrmDayView - Unbound ListBox = lstDay - Unbound - RowSorceType = Table/Query The code: strlstDayFill = "SELECT tbl.Time.TimeConverted FROM tblTime" With...
  11. tfayer

    Help Setting Up Appointment Sceduling

    Does anyone have any suggestions for setting up an appointment schedular? One Idea I had is as follows: tblDate with Date Field(PK) populated by Function to x Years in the future as ShortDate tblTime with Time Field(PK) populated on 15min intervals for 24hr Day as SWhortDate, and Date Field...
  12. tfayer

    Help Setting Up Appointment Sceduling

    Does anyone have any suggestions for setting up an appointment schedular? One Idea I had is as follows: tblDate with Date Field(PK) populated by Function to x Years in the future as ShortDate tblTime with Time Field(PK) populated on 15min intervals for 24hr Day as SWhortDate, and Date Field...
  13. tfayer

    Can't use Query As Basis for Recordset

    I have tried inserting the following. Still Asking for 1 Parameter. I have form open and set to a contactID. Still can't get it to work. Any suggestions. Set rs = db.OpenRecordset("SELECT tblContacts.contactID, FROM tblContacts WHERE...
  14. tfayer

    Can't use Query As Basis for Recordset

    When I run code that contains the following line: Set rs = db.OpenRecordset("Query1", dbOpenDynaset) I get a Runtime error 3061 - Two few parameters. Expected 2. Can anyone help? Why cant I use the query?
  15. tfayer

    Is There a Way to Convert an Array to a Recordset?

    If I use the Split Function on the string "one two thre", Is there a way to to create a RecordsetSet with the records: one two three Then If I wanted to refer to the record "one" how would I do that. I have tried. Debug.Print rs.Item(1) and it says Method or Data member...
  16. tfayer

    Determine Number of elements in array?

    What if the array ellements are strings. Such as using the Split Function on the string "one two thre" delimetter = " ". I want it two return the value of 3.
  17. tfayer

    Determine Number of elements in array?

    How do I determine the number of elements in array?
  18. tfayer

    Combining Elements of Array

    If I use the Split function to create an array called aryName using " " as the delimitter, how do I combine the elements to give me each combination, including single elements, of the array. For example the string "oooo nnnn eeee" would be split into oooo nnnn eeee I only...
  19. tfayer

    Cant get .Edit to Work

    When I run my module that contains the .Edit command it gives me a compile error and then highlights the .Edit. With rs .Edit !LastName = strLast !FirstName = strFirst !MI = strMI .Update...
  20. tfayer

    How to make a Test String if SQL has "" in it?

    I have SQL Statement for a query: SELECT Trim([p_name]) & IIf([p_name]<>&quot;&quot;,&quot; &quot;) & Trim([f_name]) & IIf([f_name]<>&quot;&quot;,&quot; &quot;) & Trim([m_name]) & IIf([m_name]<>&quot;&quot;,&quot; &quot;) & Trim([l_name]) & IIf([s_name]<>&quot;&quot;,&quot;, &quot;) &...

Part and Inventory Search

Back
Top