Search results

  1. S

    Sequential condition

    Hi, How can a text report on the "C" from "rptA" which involves making a record is 17,22,23,27? please look at the attachment file.thanks
  2. S

    Advanced If

    hi all I'm want in a field or text if (alternative 1) where A = 10 and B> = 5 result insert word "a" in C and if is B <5 result insert word "b" in C and in contain other condition for the next alternatives for example from attachment picture. thank.
  3. S

    The picture setup program without saving

    Hi, Please first install the file in d drive. But I have the problem that the code numbers are not images error message instead Figure 6 shows a photo (3) has been replaced. Please advise if the number of images for each code that was not handled error message.
  4. S

    Add one record automatical from 5 records

    Hi all I have an unbound form and i want automatically add one record in fied cod2 for any 5 records that create in feild cod1 by Text1. is there any way? thanks
  5. S

    Save into form

    hi all, i want know is there any way that save a text(or value) into a TextBox(unbound) of a form? thank
  6. S

    transpose field

    hi I want transpose 4 fields in table1 into a field(fld1) in table2 as Excel. Table1 A B C D 10 2 2 8 Table2 fld1 fld2 fld3 A 10 a B 2 b C 2 c D 8 d How can i transpose table1(horzintal) to table2 (vertical) Thank you
  7. S

    Open Read Only OLE object

    hi all i want open a file that is attach in table from a form. it file(attach) must open with word or otc app Read only beacuse i want don't change it and only open for user to view. how can i do it? thank
  8. S

    How can count character "*" in Report Footer

    I have searched the forum for count of character but I can't count character "*" in a text box ("d" or "s") on my report footer Can anyone tell me of a simple or see my file? All suggestions appreciated
  9. S

    show and hide text from one Report by 2 buttons

    In one Report must print from text into Dtail and Page (or Reprot)Footer by click on Button-1 and the next print must from Detail only by click on Button-2 i used code below on button-1 but... Dim stDocName As String Dim stvi As String stDocName = "Report1" stvi =...
  10. S

    AutoNumber Row

    Hi all, in the frmA has text box "AutRow" that add autonumber for every row. Private Sub Form_BeforeInsert(Cancel As Integer) Dim tmp As Variant tmp = DMax("AutRow", "table1", "") If IsNull(tmp) Then tmp = 1 Else tmp = tmp + 1 End If Me!AutRow = tmp End Sub My problem is below: If...
  11. S

    how can automatical change a report's printer

    hi is there any way to automatical change a defult printer for a report space? i read in Access help that is a way "Setting the PrtDevNames and PrtDevMode properties", but i can not this. can someone help me. thanks
  12. S

    Once type text box for many record

    hi. I want type once day in text box call "Date" on the main Form as it allow this day for many record.for exmaple: rec date code S_N 1 2007/02/07 PE15 EU14 2 2007/02/07 PNoh US15 please tell me waht i do?
Back
Top Bottom