Search results

  1. A

    Sub totals

    Hi Private Sub CmdCalcTotal_Click() '1. Forgive my English '2. I have a bug err 2105 If you solve it please note me '3. About the speed, in the beggining I made addition calculation for Day,Month and Year ' but It was useless for me '4. I had to change few names (textBox etc. which...
  2. A

    Fonts Problem

    Hi Allowing the end user to change the Report Fonts I use a Form which the user chooses Save and pass it to the Report. Is there a way to allow the user to do it in Pre View Report, like in Ward? Thanks
  3. A

    Access 2000Runtime Search Problem

    Why don't you use a Tool Bar with a Sort Button?
  4. A

    Page Setup

    Thanks DALeffler
  5. A

    Page Setup

    Hi, Is there any way to change the Page Orientation (Portrait/Landscape) by VB? Thanks Arye
  6. A

    calendar

    Hi, I use Windows 98 Hebrew enabled which contain an Gregorian and Hebrew calendar. Using Access 2000, How can I use the Window's calendar to translate Gregorian date to Hebrew date? (note:Hebrew date is not Hijri date) Thanks Arye
  7. A

    Text Box Labels

    Replace the Label with a textBox. In the ControlSource write: iif(isNull(RemarkTextBoxName),"",RemarkTextBoxName)
  8. A

    Sub totals

    Hi, I made a program which calculate sums let say money in the bank. The form is like that date sum sub Total 1/1/00 100 100 2/1/00 -30 70 3/1/00 5 75 etc. In the report I have no problem to show the sub total but in the form I had to use VB procedure which works...
  9. A

    Copy and Paste

    Hi Using VB for App. if I want to copy from a Text Box I use: clipboard.Clear Dim C C = Val(screen.ActiveControl.Text) clipboard.SetText C But I have discovered that Access dosnt recognize the ClipBoard. I wonder if I can copy and paste using Vba? Thanks Arye
Back
Top Bottom