Search results

  1. S

    Custum toolbar for printing?

    Is there realy noone that can help me out?
  2. S

    Custum toolbar for printing?

    Hey, I use a code to hide my toolbars and database window and desable Right Mouse Click. The code I use is: 'Hide Toolbars Dim i As Integer For i = 1 To CommandBars.Count CommandBars(i).Enabled = False Next i 'hide Database Window DoCmd.SelectObject acTable, , True DoCmd.RunCommand...
  3. S

    Simple one i guess??

    thx...i find it...public string works just fine for me ;)
  4. S

    Simple one i guess??

    thx guys for that...now what if my data come from combobox that have no control source? The idea that i have is to select somethin from combobox insted of write it... thx
  5. S

    Add record via form?

    hmm ill try... It goes like this.. I have a forum1 and forum3 on one screen. Forum1 shows me a data i put in normali (write it). Next to those entries (every record is in new row) is a button for transfering data. (Forum1 represent Store1) When i press that button the new forum is opened...
  6. S

    Simple one i guess??

    From the form... I have a button to run a report and on that button next to a code of report i have a strFilter = Me.Name I hope this helps...
  7. S

    Simple one i guess??

    hey Can someone pls tell me how can i this: I want to use a strnig as a criteria in a query, to use it like somekind of filter. And i realy do not know how to do that :( The name of a string i am using is StrFilter. I write it in criteria but i get msgbox to write it in and than i works finem...
  8. S

    Add record via form?

    hey Can someone pls tell me how to make this work? I have a form that have a button on it to open a new form, then i select, write some data on that new form and when i click a button that data need to be transfered to a new (third) form as a new record. The problem that i have is that for...
  9. S

    null, no data flag?

    thx it works just fine ;)
  10. S

    null, no data flag?

    hi I have a combobox with a query for Raw Source and it works as it should. Now i need to get a flag if the resould of combox query is null, no data becouse i want to hide some buttons if it is. Can someone tell me how can i do that? What kind of code and where to write it? Thx
  11. S

    combobox defould value

    a little late from my side, but THX big time ;)
  12. S

    Query the same data

    i think you didnt understand me ;) but still you help me alot..i just make it as i want it..thx
  13. S

    Query the same data

    hi Im realy new to those querys so any halp will be fine... I have a table "tblPonud" with fields ID, IDOprem, Ponud, date, user Now i need a query that will show only data from the same IDOprem and if thats important im usein in for my combobox "combox25". thx
  14. S

    form not recognised

    Hi I think i read about this somewere but it cant find it now..the problem is thet when i write a code for example: Forms!frmone!frmTwo!IDUZ = Me.IDUZ the code does not autocorect as it shoul, like letters of frmone doest not capatalise. I think that the problem is that access dont recognise...
  15. S

    edit record "code"

    Can someone pls tell me how can i edit a specific data in table..The problem is that the code that i have does not edit data of the specific ID but allways the first data in my table. The second problem is that i get an errorr after editing with this code askin me if a want to copy my data to...
  16. S

    combobox defould value

    Can someone tell me how can i set my combobox with defould value set to 1 record in the combobox list? thx
  17. S

    Combobox and tab control subform

    thx for the help...but some how looks like you make a small mistake ;) I did need to link thoste think together, first i need to set a recordsorce for my masterform, than i could link them together with no problem. But the code of my combobox need to stay unchanged! So Me.Requery must be...
  18. S

    Combobox and tab control subform

    Somehow i get an error "Can't build a link between unbound forms" when i try to set parent/child links... P.S.: I never use parent/child function before... Thx
  19. S

    Combobox and tab control subform

    no no u did not understad me... I need a code that will select a recordset of my form that is located in my tab control page... The problem is that i dont know the code of combobox...thats the code that i have: Private Sub Combo22_AfterUpdate() ' Find the record that matches the control...
  20. S

    Combobox and tab control subform

    Hi I create 2 forms that contain up to 2 subforms. I use combobox on each of those two form for selectin data, and thatway changin recordsets of sobforms. And all that works ok. Now I want to move both two form to a "master form". The idea is to have a combobox on a master form, and a...
Back
Top Bottom