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. infoscion

    Run time error 3709

    Hi All, I am getting this error message "Run time error 3709" ----Requested operation requires an OLE DB session Object which is not supported by the current provider." The code stops at the execution of the query which will write the record to the table. any inputs will be appreciated...
  2. infoscion

    add records to a listbox on a new form

    PHV: Thank you for your tips. What is required is that you need to include the "AddItem" to the following statement. Forms!searchnames!SelectCode.RowSource = strSQL The correct syntax to achive this is Forms!searchnames!SelectCode AddItem strSQL Having included the AddItem term, the code runs...
  3. infoscion

    add records to a listbox on a new form

    Hi All: I am working on a way to display results of a search. The user enters the search criteria in the form named form1. Depending upon the entry made often dictated by the location of the wild card charcter a set of different SQL statements are executed. I was wondering as to how do I...
  4. infoscion

    create text boxes on a fly

    Hi PHV: I have another follow up question for you. Do you want me to include the query in the row source property of the list box or in the VBA code that drives the form. When I include the query [name of new listbox].RowSource = "SELECT * FROM directory WHERE last_name LIKE '" _ &...
  5. infoscion

    create text boxes on a fly

    PHV: I do really appreciate your help. I do have a follow up question. The wild card character could precede or follow the search criteria. Please correct me as to how do I handle the varibaility introduced through the location of the wild card character. I want the system to be flexible such...
  6. infoscion

    create text boxes on a fly

    PHV: Thanks for your inputs Regards, Info I was curious as to how do you assign a null value to a string?
  7. infoscion

    create text boxes on a fly

    PHV: Thank you for your inputs. I understand that I could do something like that. But the issue at least I think is that it wont be in a position to handle the wild card character(like a * or some thing). To include the wild card character I think I need to write the VBA code for it. Also, I...
  8. infoscion

    create text boxes on a fly

    PHV: Thank you for your inputs. If I have a list box can I transfer the results of a query to it? This is the code that I have so far:How do I tie in the results of the recordset with those of the entries for the list box that is there on the form that I am opening? Regards, Info Private Sub...
  9. infoscion

    create text boxes on a fly

    Hi All: I am attempting to implement a search application. Depending upon the number of records pulled up by the SQL query I would like to create corresponding number of text boxes on a new form. Please advise me as to how do I achieve this? Thanks Info
  10. infoscion

    display query results

    Hi: TABLE directory includes lastnames, first names and the addresses of the customers. Here is part of the code. What I am trying to accomplish is that once the user enters a text message the SQL query is run. So depending upon the selection a number of records will be pulled. Please bear in...
  11. infoscion

    display query results

    Thanks for your inputs. But can I get some specifics about the display as to how do I transfer the contents to the sub form, especially when the number of records in the recordset is variable. Info
  12. infoscion

    display query results

    Hi All: I am in the process of developing a very simple search application. However, I have run into a few road blocks. Firstly, I was wondering as to how to include wild card characters to search for records. I know I can achieve that by using the LIKE criteria of SQL. Secondly, more...
  13. infoscion

    Special access usage

    Hi: Thank you for forwarding me the code. Just wondering, should it it be a SELECT statement or be an INSERT statement in the SQL code. Also, how does the statement rs![Field1] = Me.Controls(X).Value, help us? Regards, Info
  14. infoscion

    Special access usage

    Hi All: I am working on an Access form. The form has multiple text boxes. At the bottom of the from is a add button that transfers the data onto a underlying table. I want the contents of each of the text boxes to be appended to the underlying table as a separate record at the click of the add...
  15. infoscion

    consitional formatting of time

    Hi: This is a continuous form. Also with some code, if Me.text0.value=svalue then me.text0.forecolor=vbred Now it is working. Thank you very much for your help. Many Thanks Info
  16. infoscion

    consitional formatting of time

    The default value for the text box is 12:00 PM.I want it to be highlighted in red when the default value is indicated in the text box. Once the user enters any other value the font color should be black. Regards, Info
  17. infoscion

    consitional formatting of time

    Hello: I am trying to format a text box. Incase the time is bigger than a certain window (7:00 AM-5:00 PM), I want it to be indicated in some different color. How do I accomplish this using the conditional formatting made available in Access2k? Suggestions and ideas are solicited. Regards, Info
  18. infoscion

    how to create multiple instances of form depending on selection made

    Hi: Thank you for your inputs. I am actually looking at two copies of the same form but each of the two copies includes different data. So how do I accomplish that? Regards, Info
  19. infoscion

    how to create multiple instances of form depending on selection made

    Hi: Thank you for responding to my inquiry. Let me qualify my request little better. I have two forms, say form 1 and form 2. Form 1 houses customer records. As I select form 1 by clicking on a particular ID, I want form 2 to pop up with the ID transferred to form 2. Also as I select another...
  20. infoscion

    how to create multiple instances of form depending on selection made

    Hi: I am working on a database to enter customer data. In my previous thread I had asked for information about ways to transfer information from one form to another. I did manage to figure it out. I was wondering as to whether there is a way by which I can have multiple instances of the same...

Part and Inventory Search

Back
Top