Recent content by Kyriakos

  1. K

    Cascading Combo Boxes using AND/OR operand

    Hey all. My case is that I have two combo boxes on a form and through the two and a command button I filter my values and get results on a new form (cascading combos). Up until now I am familiar with it. Now I want to be able when I am selecting values to leave one of the two combo boxes blank...
  2. K

    Auto insert values in fields every month

    Hi, i was trying to do this but I don't exactly know how. On a form I would like to place a field which will automatically insert a text value and on the same time a numeric value on another field, every first day of a month, starting from this month and on. Something like this: Text field...
  3. K

    Two comboboxes based in one field?

    Hi, this is the situation. I have one table with some fields in it and based on this I want to design a form. On this form I want 2 combo boxes to do this:one to set a starting point for a field and another one to set the finishing point. Something like From this value to the other value, and...
  4. K

    Multiselection list box not duplicated

    Hey everybody. I have this form and on this form I've placed a list box which is set to multi select (if needed) several data. The problem appeared when I tried to add a command button which would duplicate all the fields of the record (with the exception of an autonumber field). All fields do...
  5. K

    Autogenerate records button

    Hi to everyone. I have this form which is used to insert specimen data. The form consists of certain combo boxes, fields etc. and works fine for individual insertions. The problem is that when I have to insert tons of data on which their only difference is their serial number (which is in this...
  6. K

    Nested subforms problem

    Hi to everyone. I work for a vet firm and I have this problem to resolve. On a form (based directly on a table) I have a field named species which is linked with an one to many relationship with anothet field from another table from where it gets its data. Now based on the selection I make from...
  7. K

    Update form from subform

    Hey to everyone. I have a main form and based on the selection I make from a combo box a subform opens. On the subform I have another combo box and I want the new selection to be displayed on the main form as well. And I don't know how...Does this has anything to do with the relationships? Can...
  8. K

    Filling Null Characters with zero character

    Thanx...First time I 've heard of this function. Used it already...
  9. K

    Filling Null Characters with zero character

    Hey ppl. I run a query based on a table and 2 other queries, and based on these I get Fcode field from the table and two number fields from the queries (one from each query). If the number is null in either of the fields (it can be null because the number comes from a count statement) I cannot...
  10. K

    Joining tables problem

    Hey everyone. I have this situation: I work for a veterinary company and I have a project which includes 4 tables.The first one has a list of all of our clients.The other 3 are : a table for the year 2004, one for 2005 and one for 2006. Not every client visits us every year and I need a query...
  11. K

    Assigning picture on selection

    Hey to all. I have this form in which I need according to a user selection to assign a picture and display it on the same form. Is this possible? How do I do this? Or can I display the picture to another form or a report based on the first form? Thanks in advance.
  12. K

    Archiving records

    Hi to everyone. I was assigned to collect all data regarding the electronic equipment of the firm that I work for and I just need a push to start with :D My thought is to create 3 tables (one containing the users, another one containing info about the equipment and a third one to be something...
  13. K

    stLinkCriteria to match fields to form and subform on that form

    Pat thanks for answering. Perhaps I wasn't clear enough (or my knowledge is limited enough :D ) . On my main form I would have to fill some fields.These values should on the same time be passed to a linked form and on a subform on that form....If I use the OpenArgs property then (if I got it...
  14. K

    stLinkCriteria to match fields to form and subform on that form

    A bit big title I guess... Anyway I think you got the picture of what I am looking. I have this form and I link on that, through stLinkCriteria, two fields to open a form with a subform on it. Using this code: stLinkCriteria = "[Offer_No]= '" & Me![Offer_No] & "' AND [Species]= '" &...
  15. K

    stLinkCriteria clue???

    I've changed the order and this is the code I used... stLinkCriteria = "[Offer_No]= " & "'" & Me.[Number_Offer] & "'" & " AND [Species]= '" & Me.[Species] & "'" Now I have noticed that the word AND does not turn into blue so there's certainly a syntax error. The matter is what exactly?
Back
Top Bottom