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

    Copy URL to VB ComboBox. Need Help.

    * When I open Internet Explorer (IE) browser, I have a small VB Form (Form) that opens in the screen corner. In the VB Form I have a combobox (cmbURL) that the browser automatically places the current URL into. This works great while visiting sites, as well as using site links that go directly...
  2. SteverZ

    JButton Code Help for Beginner

    * I have an Input Box. We'll say someone types in the number 5. * I have one Jbutton. * I have one Text Field for the output. What would a sample code look like? Behind JButton1 would be a calculation like "5.9 x Input Box value". So, is someone types in the number 5 in the Input Box...
  3. SteverZ

    How do You NOT Hard-code in a Password form?

    I have a project where the main form opens with mostly grayed-out command buttons, which is perfect. To enable those buttons, the User clicks on the Password button and types in a password (no Username used, just a password). When the User has entered the correct password and clicks on the OK...
  4. SteverZ

    Right Address, Wrong Address.

    Lotus Notes Release 4.5.2b (Intl).....I have been emailing with this individual from my Lotus Notes to his email system for quite some time without any problems. He is on AOL. The contact, which is not with my company and not using Lotus Notes, recently changed his email address. He sent me...
  5. SteverZ

    Adding Hyperlinks to Form/Database to Connect to Internet

    VB6.0 Enterprise Edition. Trying to hyperlink to the interent does not work. * Form1 TxtField(1) ... displays name TxtField(2) ... displays URL TxtField(3) ... linked using Adodc1. I click on > or >>| to see what is next in line in my database. CmdGo ......... press and the displayed URL...
  6. SteverZ

    Problem Connecting to Internet w/VB . Code is here. Help!

    I have a VB form (VB6.0 Enterprise) with several textboxes and command buttons for Add, Delete, Update & Refresh. I also have a command button "cmdGo" that when clicked, should open Interent Explorer browser and go to the site that is listed in "txtField(2)". When I click on...
  7. SteverZ

    How Do You Get Your Post in BOLD Letters?

    Hi...Let's try this one more time. I know about the and coding, but I still don't know "WHERE" the code is to be typed. I know "WHAT" to type, I do NOT know "WHERE" to do it. WHERE?
  8. SteverZ

    Coding For CoLoR in Access. How?

    I have a form where I have added a blinking effect to label1. Here is the code, and the code works fine: Private Sub Form_Timer() With Me.Label1 .ForeColor = (IIf(.ForeColor = vbBlue, vbBlack, vbBlue)) End With End Sub ------------------- Private Sub Form_Current() Me.TimerInterval = 1000 End...
  9. SteverZ

    How Do You Get Your Post in BOLD Letters?

    I read the editing tips, but it does NOT say WHERE you type in the TGML tags !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  10. SteverZ

    Someone Must KNow How To Do This: How To Do A Multiple Deletion?

    Thanks. Actually, to answer your "if you know all of this", actually, I don't. I am terrible at Access. What do you mean "'run a breakpoint"'? How should I make a relationship between this code and the table? Thank You.
  11. SteverZ

    Someone Must KNow How To Do This: How To Do A Multiple Deletion?

    SOMEBODY MUST KNOW HOW TO DO THIS: How Do You Do A Multiple Deletion With A Command Button On A Form? For this I have one Form that has one combo box and one command button, and there is one Table, in which the Form is not bound. Using the below example, for Project 1234....When I bring up my...
  12. SteverZ

    How Do You Get Your Post in BOLD Letters?

    I have tried everything I can think of, but my post still are NOT in bold letters. I typed in the code found below, by typing it in the "View/Source" page, but that doesn't work either. WHERE DOES THE FOLLOWING CODE GO? How Do You Get Your Post in Bold
  13. SteverZ

    How Do You Do A Multiple Deletion With A CmdBtn On A Form?

    I am seeking to find if there is a way to do a "multiple deletion" from a Form. Using the below example, for Project 1234....When I bring up my form, and select 1234 from my Combo Box selection, and then click on the delete command button, all 1234's and their attributes, such as...
  14. SteverZ

    Problem Code Here: How To Do A Multiple Deletion From A Form

    I am seeking to find if there is a way to do a "multiple deletion" from a Form. Using the below example, for Project 1234....When I bring up my form, and select 1234 from my Combo Box selection, and then click on the delete command button, all 1234's and their attributes, such as...
  15. SteverZ

    Problematic Code Here: How To Do A Multiple Deletion.

    PaulF: To answer your question, Project is set as "text" in the MaterialRecord table properties, even though a number is all that will ever be entered.
  16. SteverZ

    Problematic Code Here: How To Do A Multiple Deletion.

    I am seeking to find if there is a way to do a "multiple deletion" from a Form. Using the below example, for Project 1234....When I bring up my form, and select 1234 from my Combo Box selection, and then click on the delete command button, all 1234's and their attributes, such as...

Part and Inventory Search

Back
Top