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 SkipVought 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. GrantDB

    Multiple entries in a table with a list Box

    You could have another listbox that you add the selected people to. Then have a coule of buttons, Add and Remove. Just an idea Grant
  2. GrantDB

    How to stop splitting talbe rows in Word

    How about making sure the style has the paragraph formatting 'Keep line together' or just select the whole table (styles are my preference) Grant
  3. GrantDB

    Calling a Function that can be used multiple text boxes

    You function is expecting something, the name of the control. Here is a very simple example from my own code Grant 'txt3 is a textbox Call webGetSelection(txt3) Function webGetSelection(ctrlName) ctrlName.Value = SelectedText End Function
  4. GrantDB

    Retrieving Deleted Data - Please Help.

    As far as I know you can't get the records back, if you deleted a whole table you can under some circumstances Grant Q179161 ACC: How to Recover a Table Deleted from a Database (Access 95 and 97) Q209874 ACC2000: How to Recover a Table Deleted from a Database
  5. GrantDB

    Easy way to save application settings ...

    You could also use an ini file, eg [WindowPos] left=0 right=0 Grant
  6. GrantDB

    How to loop through all records in the table?

    This is taken from my own code, so there maybe a bit too much info, so apologies for that. It simply gets a record, gets a field (Fields(1)), then changes that data, then updates the field. The code then moves to the next record Let me know if it helps Grant Dim rstSource As Recordset Dim...
  7. GrantDB

    CLIPBOARD OBJECT

    This may not be what you are looking for, but why don't you use the MS Internet Control? Since it is based on IE/Explorer you get some of the functionality of explorer, for example, use: Me.WebBrowser1.Navigate "C:\" Grant
  8. GrantDB

    MOVING "JOKE" BUTTON

    Don't see why you would want to, but this should get you started Private Sub cmdJoke_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) 'a checkbox used to disable the moving button 'when the button moves to the end of the form the prog will crash 'could use a random num...
  9. GrantDB

    Using Ini Files

    Try this. Let us know if it helps 'In your form Option Explicit Private Sub Form_Load() iniPath = "c:\temp\temp.ini" End Sub Private Sub Command2_Click() Call IniDetailsWrite("Section1", "Value1", "WrittenValue") End Sub Private Sub Command1_Click()...
  10. GrantDB

    how to open a web page and auto input info from a email?

    This may help you to get info into the form. The tool gets HTML info from a website. You can modify it to add info to the website. I am still messing around with it, but it should give you a few ideas. http://www.grantdonovan.co.uk/visualbasic/HTMLParser/HTMLParser.asp
  11. GrantDB

    ToolTipText multiline capability and maximum length?

    This maybe be useful http://www.domaindlx.com/e_morcillo/
  12. GrantDB

    Controls Underlying Field Size

    Thanks to everyone, it worked. Grant
  13. GrantDB

    Controls Underlying Field Size

    Hi everyone, I want to be able to find the size of a field that is linked to a textbox. For example, if the control, let's say a textbox, is named txt1 how can I find out the sizee of the field it is linked to. I can find the field using - Me.txt1.ControlSource but then what? Basically the...
  14. GrantDB

    Page Me - Page Numbers in MS Word 2000

    You need to add section breaks (Insert > Break). You can then add page numbers to each section break independently of any other, just make sure you click on the 'start at' bit of the page number dialog box. I hope that helps Grant
  15. GrantDB

    Detecting On-Line

    Try this. Let us know if it helps 'In a module Option Compare Database 'For connection details 'http://www.mvps.org/vbnet/index.html?code/network/internetgetconnectedstate.htm Public Declare Function InternetGetConnectedState Lib "wininet" _ (ByRef dwFlags As Long, _ ByVal...
  16. GrantDB

    Help With Opening Access File

    Have you checked that you aren't missing a reference (Tools > References) Grant
  17. GrantDB

    Indexing controls on a form

    You could modify this code - unlike VB you can't have an array of controls Dim ctl As Control For Each ctl In Form_Form1.Controls Debug.Print ctl.Name Debug.Print ctl.ControlType Next Grant
  18. GrantDB

    how to get the URL of Link in Internet Explorer ??

    The event - StatusTextChange - will show you what is under the mouse pointer, although it will also show other information as well (so be careful) Grant
  19. GrantDB

    Determining Whether an Application is Running

    Some of these links may give you some ideas http://www.mvps.org/access/api/api0007.htm http://www.mvps.org/access/api/api0013.htm
  20. GrantDB

    access database giving french cities

    Can't you just copy a list from somewhere like here http://officialcitysites.org/france.php3 into a table you have made yourself? Grant

Part and Inventory Search

Back
Top