Recent content by Memnoch1207

  1. M

    References

    My assumption is the 10.0 library is for XP and the 9.0 is for 2000. I would think that the 10.0 would be (backward compatible) so as to allow any version of Excel to open with that object library. [This message has been edited by Memnoch1207 (edited 05-20-2002).]
  2. M

    Opening a form exclusively

    What do you currently have your recordlocking option set at??
  3. M

    Emailing 1 record from a form

    I agree this is possible, but I also think it will be extremely hard. Here is how I would try doing it. create you form. Place an email cmdbutton on the form. That cmdbutton is going to call the advapi32.dll Library, which you will need to code it to open up an instance of Outlook (assuming...
  4. M

    select query anyone?

    Mydate RepID SCategory Number HCategory Number what i need to do is create a new field on the query line Total: Scategory number sum subtract Hcategory hand number sum + hcategory recieve sum Where does the Hcategory hand number sum come from???
  5. M

    Entering Report Parameters

    The best way to go about this is to create a parameter query, to select the year. Then create a report based on that query. When you open the report it will prompt you to enter the year you would like to view.
  6. M

    count only visible entries

    something to the effect of If(fields.visible = true) then count = count + 1 end if Basically, if the fields are visible then add those fields to the count, otherwise don't.
  7. M

    Report - ControlSource

    You will want to create a parameter query (F1 type parameter queries, for more info) to allow the user to input the value of 'X' for the particular field you are wanting to sort by.
  8. M

    Forms

    You have your map w/ the buttons. Then you have your (lets say 3) reports. the reports are already created. Your buttons on your map should have some code to get them to open teh specified report. Lets do Dublin. The button you hit to show the dublin report should have this code under it to view...
  9. M

    PICTURES IN REPORTS

    If you have time post ur code. I'll take a look at it, and see how I can help you.
  10. M

    change system warnings

    Not sure how your DB is setup, but you could use a msgbox and if...then...else statement to trap it...kinda like this if num = another number in the num field then msgbox "You have entered a duplicate number." end if
  11. M

    Incrementing Numbers in Query

    n = row number count = total rows 2nd column:[row number / SUM[total rows] + 1]
  12. M

    Is Null then set visible=false

    You will want to do something like this. if IS NULL(txtdate.text) then txtdate.visible= false else txtdate.visible= true end if OR if Len(txtdate.text) < 1 then txtdate.visible = false else txtdate.visible = true end if this last one checks if the length in the string is less than 1...
  13. M

    report problem

    Trying categorizing the report based on shift not on date.
  14. M

    Adding New Values To The List/Combo Box On The Form

    You could do it something like this. In a textbox allow the user to input an item they want added to the list or combobox. then on the "add item" button add code similar to this. combo1.additem & '"txtbox.text" your telling the combobox to add the string that is in the txtbox.
  15. M

    Scrolling in a Listbox

    The code you wrote to find the first character would be the same, just advance the code to use the second character.
Top Bottom