Search results

  1. hiền muội

    Hello everybody!

    HI All :)
  2. hiền muội

    Thanks for the tips :)

    :) :) :) :) Hi all
  3. hiền muội

    Live to work? or Work to live?

    I work to live
  4. hiền muội

    report looks like "merge cell in Excel"

    Nobody could help me?
  5. hiền muội

    Renumber

    I have a table : ID___ Code _____Numchar 1_____56_______ 1 2_____55_______ 2 3_____93_____ 3 4_____140_____ 4 5_____144_____ 5 6_____176_____ 6 7_____206_____ 7 8_____230_____ 8 9_____259_____ 9 10_____267_____10 11_____290_____11 12_____300_____12 13_____306_____13 14_____321_____14...
  6. hiền muội

    report looks like "merge cell in Excel"

    Sorry for my English if it gives you any inconvenience. Please look at my attached image. I have a table and I want to create a report with "Group and Sorting" [PO#] field, and combine the number Box size for L, W and H with the same number I appreciate your help Thanks a lot
  7. hiền muội

    Create MDE File Greyed Out

    How can I import forms, reports, macros, modules from an mde as you said to another database? Thanks!
  8. hiền muội

    Can we get all IP address on LAN?

    @HiTechCoach,Georgedwilkinson: Thanks for your help.
  9. hiền muội

    Can we get all IP address on LAN?

    Hi all, Sorry, my English isnt good, it makes me confused . How can we get all IP addresses on LAN using VBA? Thank you!
  10. hiền muội

    Macro problem

    With macro condition you can use DCount function to preview report if their is data as a result of the query. For ex: Dcount("*","QueryName")>0
  11. hiền muội

    Filter in reports

    use code: docmd.openreport "Reportname",, acViewPreview,,[fieldname] = Forms![formname]![controlname on form] The fieldname argument is the name of a field in the underlying table or query of the report you want to open. The controlname on form argument is the name of the control on the form...
  12. hiền muội

    Open Form Via. Macro w/ Specific Order #

    What action you use in macro,andmunn? Try code: [SalesID]=[Forms]![NameOfMainform]![NameOfSubform].[Form]![SalesID]
  13. hiền muội

    Calculation Problem

    Value: IIf([quantity]<0 Or [Price]<0,0,[quantity]*[Price])
  14. hiền muội

    setting the default value as another feild in form

    Use Event BeforeUpdate for txtPrice to calculator averageprice. Example: Private Sub txtPrice_BeforeUpdate(Cancel As Integer) Me.txtAveragePrice=... End Sub
  15. hiền muội

    Passing values to a form on lookup

    JANR 's code is correct You can't use Form_frmCase.txtCaseNum = & Me.ddCaseNo.Value when you try to open frmCase
  16. hiền muội

    setting the default value as another feild in form

    You mean, when you type a value in field1, field2 have value as field1?
  17. hiền muội

    Help a with a simple VBA

    First: ds,rs you declare for what ? Second: strMap in code is exactly a string "Select Google Map From Residences Where Address = your address---> it 's not a sql ---> Try following: Private Sub Command45_Click() Dim rs As DAO.Recordset Dim strMap As String strMap = "Select Google Map From...
  18. hiền muội

    Macros: Where?

    Example: CCC Gate Report has Recordl Source:tblCCC_Gate (ID,Col1,col2,...) If you want to print ALL Records--> Where Condition : none If you want to print some Records which ID="x"--> Where Condition:[ID]="x"
  19. hiền muội

    Hi All

    Hiii, I like this forum. I can improve my English and Access. Thanks a lot!!!!!!
Back
Top Bottom