Search results

  1. K

    Saving Records without a Save Command Button

    Hi, Richie! I think you can use events on form to be used for your porpose. E.g. OnClose event of the form you can assign the code sequence that saves your record into db. Krava
  2. K

    Combo box in form - subform

    Hi, Zinemon! I only was not sure if I cought your problem correctly. Anyhow, I will try to explain my idea in detail: If you have main form, on that form ComboBox, this ComboBox is independent object on the form. So if you set up RowSource for the CB (ComboBox) that could be some table/query...
  3. K

    Writing a value calculated in a form back to a table

    HI, Chris! There are a few methods possible. E.g.: 1) If your main form's record source is the table you want to write the calculated value into, it is quite simple: On some CommandButton (named e.g. "Save Totals") click you can write code...
  4. K

    How can I open a JPG in a path ?

    Hi, Skerdi! Sorry for my poor explanation. Basically, you are right. Yes, teh HyperlingAddress property will be change every time the CurrentRecord will be changed, means during event OnCurrent. You have to read the stored path from your current record's field (Named PATH) and to make...
  5. K

    Trouble linking tables filed for a support database form

    Hi, Mark! you can use a select query where you set up a criteria for TargetDate field e.g. <Date(), or you can also use the function DateDiff, it depends of the format of TargetDate field. Krava
  6. K

    Combo box in form - subform

    Hi, Zinemon! I suppose it is not working because there is probably missing one thing- and it is that after you select one desired value from the list of combobox, your cursor on the main form should be probably moved to the record that belongs to your selection. E.g.- in combobox you have only...
  7. K

    How can I open a JPG in a path ?

    Hi, Skerdi! If I understood correctly your problem, I would do following (as I have done before in many different kinds of docs): 1) I would create CommandButton1 (you can name it different name). 2) On Current event of the Form I would Me.CommandButton1.HyperlingAddress="Path to the physical...
  8. K

    remove filter by form "pre determined" values?

    Hi! What about "Me.AllowFilters=False" put in OnLoad of form? Krava
  9. K

    Displaying time intervals in graphical form

    Hi, Folks! Well, I has been long time since I have attended this forum, I was on different projects. anyhow, I am back with one problem. I want to display some events of time intervals in grapgical form. I mean if I have Event 1 starting at 8:00 o'clock and ending at 10:00, the Event 2 starting...
  10. K

    Max for each record

    Try select query, then sum (grouping), select both fields, Identity setup=GroupBy, Value setup=Max. Krava
  11. K

    Using a form to enter criteria for a query

    Hi, Leong! Your combo box returns the value of ID, not the name (String). Because in the property of combobox you can see the Bound columns is No.1, means ID. So I have changed the criteria of your query, selecting byy ID. Krava
  12. K

    Adding additional information to a report

    Hi, robin123! Yes, of course. You can create unbound form, means no data source. You can create as mana as you need of text fields, also unbound. You only give them some resonable names to help you further. Like DateStart, DateEnd, DateOfInvoice atc. Then "OpenReport" and "Exit" button on the...
  13. K

    Picture Builder doesn't populate list of available pictures

    theSizz! I am not sure what the problem could cause this situation, probably installation of Office. Anyhow, you can use any picture to your command button, when you go to command button properties, item "Picture" and then browse. So you can take the picture from the PC that it has all the...
  14. K

    Top 10 results from CrossTab Query.

    HI, aldeb! I am not quite sure if you can use TOP 10 in crosstab query. What I would do is very primitive- I would create a new SELCT query based on crosstab query with using SELECT TOP 10 from crosstabquery.......ORDER BY total field. Krava
  15. K

    problems opening a sub form

    You are very welcome! Good luck!
  16. K

    problems opening a sub form

    Hi! I did a few things: 1) I have changed the data source for your list box- I have added ID field 2) I have changed the Number of columns of list box to 2 3) I have setup column widths to 0;10cm to hide the first column (ID) 4) Then the list box returns the value of ID that is the number, not...
  17. K

    problems opening a sub form

    Chrisabb! There is no attached documen. Krava
  18. K

    Adding additional information to a report

    Robin123! For this case of - let say multiple data entered by user I would recommend to do it a different way. Becaus ethe mian disadvantage of the last solution is that if user makes mistake by entering one of the 6 parameters, there is no way back (known for me) to correct it. User has to go...
  19. K

    Giant Logos ??

    Hi, Keith! Try to open the properties of your Image control, choose the item "Size Style" - sorry I do not know the exact translate to EN, it is th fourth item in All properties, then change it to "Keep proportions" or something like that. Krava
  20. K

    Mass update or append

    Hi, rizzir! You can use Update query. Select your table for the query, then you choose the field you want to update and then, into "Update into" box you enter the value, means "Yes". Krava
Back
Top Bottom