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

    Running SQL in a batch

    Hi Anyone knows how I can run SQL queries in a batch..i.e. running strSQL one after another. For example, SELECT * FROM TABLE1 and then after that run SELECT * FROM TABLE2? Thanks in advance. mflower
  2. mflower

    Checking for common fields in two recordsets

    Hi, anyone knows how I can check for common fields in two recordsets? If rst1.ID = rst2.ID Then MsgBox "" Else MsgBox "There are no matches" End If Why won't this code work?
  3. mflower

    mail merge in Excel

    Hi, anyone knows the code to open MS Word 97 in Excel 97, but platform is Windows 2000? The piece of code currently used works on Excel 97, Word 97 with platform Windows 98: Dim objWord As Word.Application Set objWord = New Word.Application Is there another way of writing code to open Word...
  4. mflower

    Internal net library error: Net lib protocol driver .."

    Hi, I get this error message "Network packet layer: Internal Net Library Error: Net lib protocol driver call to connect two endpoints failed" while trying to connect to the SQL server. What can be done to fix this? Please help.
  5. mflower

    Create session needed

    I've created a user and password, but now Oracle requests for "Create session..." needed before I can use this user/password to login. Why? and how to fix this?
  6. mflower

    Date value

    Hi! Anyone knows how to code this if statement: If date.Value >= "#01/01/00#" Then label1.Visible = True Else label1.Visible = False End If Somehow the label1.Visible is always true, so I suspect that if I want to find a date greater than 01/01/00, for example if the date is...
  7. mflower

    Finding a value and enter that value in another column

    This is a question for a Excel document. Would anyone know how to find a specific value in column A and when found, enter that value in another column B? For example, A1's value is 1,2,3,4 and I would like B1's value to find any 1 and put in a value of 1 and 0 if no value of 1 is found. Problem...
  8. mflower

    Nested If statements

    Anyone knows where I can get more information about nested If statements? The problem I have with mine is it stops at the first If statement and does not proceed to the next.
  9. mflower

    Combo box wizard disappeared

    Anyone knows how to turn on the combo box wizard?
  10. mflower

    Combo boxes synchronized but how to show the value without clicking

    Thanks for all the help on combo boxes from relevant threads. HOwever, my problem is the second combo box brings up the value relevant to the second combo box, but I want the value to appear in the text box without clicking and bringing the value up again. Is that possible? It's like making the...
  11. mflower

    Two tables, label to show if both are the same

    Does anyone know if I have two tables, table A and table B and I want label X to show (visible on form) if the ID on table A.ID = table B.ID Thanks.
  12. mflower

    limit print report to 2 pages

    Anyone knows how to limit the print out to 2 pages only? As in once preview, print out 2 pages only? And not only 2 pages only but printout back to back so only 1 page with two sides printed? Help!!
  13. mflower

    How to save a field from one table to another table using code

    I think this could be a silly question as it would seem so easy to most programmers..but what's the code for saving a particular field in Table 1 to Table 2. For instance, I want to save FirstName from Table A to FirstName in TableB. Thanks.
  14. mflower

    Save text box value to combo box column

    Anyone knows how I can save a value in a text box into one of the columns in the combo box. Example, I'll search for a record, and the record appears in the form, but when I type in a value in textbox A, and click a button, that value is saved in the combo box. I do not want the value to be...
  15. mflower

    duplicate fields in report not showing

    Anyone knows why when I sort the order of the report by the field First Name, some of the first names will not show? For example, I've got two Karens and in the report, it will only show one Karen and not the other, have I forgotten to make changes in the properties? I've sorted and grouped the...
  16. mflower

    Two forms, first to show if value = A, and second to show if value = B

    Anyone knows the procedure I can write based on this logic: I have two forms: Form1 and Form2. And two types of members: A and B. If member = A, then Form1.show, if member = B, then Form2.show.. I have problem in declaring the variables and writing the full code...please help..thanks:)
  17. mflower

    Two combo boxes, second to show fields related to first

    Anyone knows the code to using two combo boxes, when you select the first combo box value, it brings up a related value in the second combo box? As in, second combo box has a record which relates to the first combo box. Thanks in advance.
  18. mflower

    Report page limit

    Anyone knows the code to limit a report to 2 pages and to be printed double-sided without doing it manually in print setup? Thanks in advance.
  19. mflower

    Two combo boxes, second to show fields related to first

    Anyone knows the code for two combo boxes, cmbA and cmbB, whereby when I select a record from cmbA, it contains a related record in cmbB, therefore, when I select a record from cmbA, that related record will show in cmbB.. Thanks in advance.
  20. mflower

    Report pages

    Anyone knows where I can limit the preview of reports to 2 pages? Writing code? Thanks.

Part and Inventory Search

Back
Top