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 strongm 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()

    I made a new form and copied all the controls and procedures to it. Form_Load() fired first then Form_Current(). Form_Current had only the following: MsgBox(&quot;Form_Current&quot;) I then added the following code: MsgBox(&quot;Form_Current&quot;) intI = 0 Do While intI <= intAttributeCount...
  4. charlie12345

    very first form action is form_current()

    no - right now they each only have a different msgBox.
  5. 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
  6. 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
  7. 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...
  8. 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 &quot;-----&quot;, forcing the User to make a choice. On ListBox2 I use the LostFocus() event to check whether the user made a choice other than...
  9. charlie12345

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

    Thanks. I thought it was a Join with 'is null', but I was missing something.
  10. 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
  11. charlie12345

    Can a Publisher multi-page Newsletter be posted on Web?

    Probably not in the sense you're thinking. You can Save As Web Page, but Publisher just makes an image of the page, it doesn't convert all the text etc, to html.
  12. 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...
  13. charlie12345

    Photo 'Resolution'

    sorry - i just repeated what you said......... duh. The next question is, if the photo is used 'full-size', or 1:1, does the pixel resolution get better if the photo is made smaller - ie, if the 1400x1400 image is 1:1 at 2.3&quot;, will it be 2800x2800 at 1.5&quot; (or something smaller like...
  14. charlie12345

    Photo 'Resolution'

    So the answer is, I need to know the screen resolution the printer will use, and compare that to the maximum size of the photos as they will be published... ?
  15. 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...
  16. 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...
  17. charlie12345

    PHP Forum

    http://www.phpbb.com
  18. charlie12345

    Image Size

    That's it exactly! Thanks much.
  19. charlie12345

    Image Size

    What I'm looking for is the image size, e.g., 400x200. All I have is the URL.

Part and Inventory Search

Back
Top