Recent content by schenel

  1. S

    Last Work Day Problem

    Mile-O-Phile, Travis, pdx_man, Daxton A. Thank you all for your replies, this board truly shows-- "thars'-mor-n-one-way-ta-skin-a-cat!" :D I really appreciate your help, hope I can be of service on this board sometime.
  2. S

    Last Work Day Problem

    I need to get the date for Friday of the next week. For example today is Wednesday, July 30, 2003. I enter this into a textbox then click a button that will return Friday, August 8, 2003. How do you do the calculation for this? Thanks, :confused:
  3. S

    populating picture property of image from value in a table

    Well, I found the answer to my own question and I thought it might be a good idea to share it everyone: Private Sub Form_Current() '------declaration statements dim dbs as database, rst as recordset, sql as string dim fld as field dim i, cnt as integer dim strX, strY, strImg, strCtl, strDir as...
  4. S

    populating picture property of image from value in a table

    In the OnOpen event of my form I would like the form to look up values in a table that contain the image control name and the imagefilename for the control. I would like the form to load the imagefilename into the picture property of the image control from the value in the table. The table...
  5. S

    Programatically open bitmap and paste

    Thanks for your post. Well, the map needs to be editable as far as pasting a small image where the air quality sample was taken and a number with it. It would look something like the following: However, you said "why not have a few image controls on the form, one for the main map & then...
  6. S

    Programatically open bitmap and paste

    I have a form with a linked image control. The images are maps of rooms. The user needs to be able to paste images on the map of the room showing where air quality samples were taken. What I need to be able to do is have a command button that will paste the image on the map after the user...
  7. S

    Scientific Notation Not working

    I found the answer: I quickly created a test form and put an unbound textbox on the form and set the format property to scientific. Just like you said, it worked. So, that did lead me to believe the problem was with the table to which my original textbox is bound. The table field size...
  8. S

    Scientific Notation Not working

    I have several textboxes that hold very small values like for instance 2.2 X 10-8 (2.2e-8). However, just selecting Scientific for the format property doesn't seem to be working correctly. If I type in 2.2e+8 then the display is the same. But, if I enter 2.2e-8 the display changes to 00.e00...
Back
Top Bottom