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: *

  1. charlie12345

    Populating a control without creating a record

    I want to populate the ID field with a value the user has entered, without automatically creating a new record in the table. If I set the control before I open the form (e.g. Forms!frmData.StoneID = Me!StoneID) the form automatically runs Update, and creates a record. I've tried setting the...
  2. charlie12345

    Create Database

    I need to create a new database in order to export a table. Exporting the table is no problem, but I can't seem to create a new database. I get 'Invalid Argument' with: Set dbsNew = DBEngine.Workspaces(0).CreateDatabase("NewDB.mdb", dbLangGeneral) It must be obvious, but I can't see...
  3. charlie12345

    very first form action is form_current()

    The very first thing my form is doing is going to Form_Current(), then Form_Load(), and then again to Form_Current() before displaying the record. How/why is it executing Form_Current() before Form_Load() ? My other forms haven't done this, so I'm at a loss. Thanks, Charlie
  4. charlie12345

    ShortCut Keys?

    Is it possible to somehow assign 'ShortCut' keys to various buttons on a form? The MSAccess 'Help' file (and VB HELP file) weren't very helpful......... Thanks, Charlie
  5. charlie12345

    Locked myself out of the DB with an Infinite Loop

    I apparently have an infinite loop in one of my control procedures, so I can't get back into the DB to fix it. The DB is set to startup with opening the form, which then executes the loop. How do I get myself out of this? I need to get into the procedure code to fix the loop, but I don't know...
  6. charlie12345

    Error Checking and SetFocus

    When a user makes a choice from ListBox1, I populate ListBox2 (unbounded) based on the value of ListBox1, and set the focus to the first line "-----", forcing the User to make a choice. On ListBox2 I use the LostFocus() event to check whether the user made a choice other than...
  7. charlie12345

    Select emails in one table that aren't in the other table

    I'm sure this is simple, but I've never worked with two tables before. I'm trying to find all occurences where an email is in one table, and not the other. Any suggestions or direction to some online help would be appreciated. Charlie
  8. charlie12345

    Importing Adobe Illustrator files

    Publisher doesn't import Adobe Illustrator files directly (*.ai), so I have to export them from AI to another format before I can insert them into Publisher. These are all 'line drawings'. Does anyone know which format is best, that will preserve the detail and not give me a fuzzy image or...
  9. charlie12345

    Photo 'Resolution'

    I want to include photos from a digital camera in a brochure. They need to be high-quality, to be printed via offset press, on gloss paper. I have yet to buy the camera for this effort; what 'resolution' (for lack of a better word) should the camera be/photos be shot at? TIFF format, I assume...
  10. charlie12345

    What Photo 'Resolution' ?

    I want to include photos from a digital camera in a brochure. They need to be high-quality, to be printed via offset press, on gloss paper. I have yet to buy the camera for this effort; what 'resolution' (for lack of a better word) should the camera be/photos be shot at? TIFF format, I assume...
  11. charlie12345

    Image Size

    Maybe not a php question, but is there a way to determine the size of an image before I display it? If its too large I'd like to limit its size on the page.
  12. charlie12345

    MySql Current Record Number

    Is there a MySQL function that will return the record number of the current record after a "Select" query has been performed (after retrieving the record contained in mysql_fetch_array) ? I know count(*) will return the number of records in the table, but I want to know the record...
  13. charlie12345

    Undefined Netscape Errors

    I have a script that logs javascript errors. IE does not report any errors, but Netscape reports: --------------------------------------- [object Event] error #1 in line undefined on 3/11/2 at 13:42 Netscape 5.0 (Windows; en-US) --------------------------------------- How can I determine what...
  14. charlie12345

    're-establishing' network after 'not accesible' message

    At least once a day, the network connection stops working. It fixes itself if I reboot the client machine. Is there any other way to re-establish the network connection? Re-booting is seems extreme. Both machines have TCP/IP and Client for Microsoft Windows.
  15. charlie12345

    document.links properties

    document.links is an array of all the links in the document. document.links(n) returns the value of the URL for that link in the array. document.links(n).text returns 'undefined'. document.links(n).href returns the URL. How do I get the value of the actual text displayed for the link?

Part and Inventory Search

Back
Top