Search results

  1. vhung

    Problems with displaying PDF on Web Browser Control in Access Form

    Make use of Adobe Reader >install it and reactivate office/windows using KMS >then make a Form for pdf viewer >see attachment...
  2. vhung

    Problems with displaying PDF on Web Browser Control in Access Form

    Microsoft Web Browser and Adobe Reader could connect to PDF links (it is nice to attempt to open pdf on access webcontrol ) >but pdf would not totally work in access >office document like word, excel could be open on access if you use the other version of Office (can find through "installed...
  3. vhung

    Access Menu and ToolBar (Custom) disappear when opening Excel or Outlook

    Try to reinstall your office or etheir repair, or use office/windows activation... seems excel does not load properly even outlook, slow loading maybe...
  4. vhung

    New feature: Top posters of the Month!

    hello ask, only (what posts points and others) use for, (like most like, most posts)...(score/points)
  5. vhung

    Send Email From Access Code

    nice ; send table to email thru msaccess that's greats if codes is accurate would be helpful, any format output >i guess it always need machine/server to send email >could be exportwithformatting a table >then open an email through msaccessWebBrowser so as to attached file then send to many...
  6. vhung

    Solved Help with elimination query

    SELECT TableTemp.Number1, TableTemp.Number2, TableTemp.Number3, TableTemp.Number4, TableTemp.ID FROM TableTemp WHERE ((([number1]+[number2]+[number3]+[number4])<>0)); >see the attachment on query ID#4 iliminated which is (n1+n2+n3+n4)=0 >sir arnel is right... "where (number1 + number2 +...
  7. vhung

    Table Analysis - am I on the right track with these relationships

    good day >in some ways tables relation is so nice to create and connect in which ideas/imagination of what you need to work out >on the other hand the actual table relation needs to be test it's better to create first the main table where to save the major data of your banking...
  8. vhung

    Solved Form + Table linking

    table of instruments >accounting system, would be daily as stocks required >would have remarks and date of last count, on specific instruments >would be every instrument group should have individual account for easy check by staff incharge
  9. vhung

    Solved Dont allow data to be manually typed

    good day >supply your code to click Event "txtSampleTime" Dim returnedValue As Variant returnedValue = getValueFromPopUp("frm_TimePicker", "txtTime") If returnedValue & "" <> "" Then Me.txtSampleTime = returnedValue >result is all way pop-up your TimeSlider is nice...
  10. vhung

    Grand total from two sub-reports

    good day sir "[Report 1& 2 Total:] = [Report1].[Report]![AccessTotalscost] + [Report2].[Report]![AccessTotalscost]" this is ok sir, no more error, i said before it works well... >anyway this is just a minor report problem that can be solved first at the "Expression Builder"
  11. vhung

    Grand total from two sub-reports

    Thanks; >now i got your point, and so you got my point too >i always well for better and ....
  12. vhung

    Grand total from two sub-reports

    AWF is open for everyone as i know >i specifically addressed my little knowledge to "Koloss" >we all need best contribution, as i need it much >i learn here on AWF to anyone, soon from you "bob" >maybe i'm only too serious to get to the solution of the problem cause it also helps me too
  13. vhung

    Grand total from two sub-reports

    no; i guess Koloss need it "[Report 1& 2 Total:] = [Report1].[Report]![AccessTotalscost] + [Report2].[Report]![AccessTotalscost]" >Koloss posted: Hello everyone, I'm stuck.... I have a report, which consists of two subreports. I have total sums on each report. I’m trying to get a Grand...
  14. vhung

    Grand total from two sub-reports

    try this code; [Report 1& 2 Total:] = [Report1].[Report]![AccessTotalscost] + [Report2].[Report]![AccessTotalscost] >this is the syntax im refering to >i tried it, works well, either onLoad/click event procedure... >see reports sample, attachment
  15. vhung

    Grand total from two sub-reports

    nice try; "Whatever I try, I get an error..... =[mySubReportName].[Report]![myTextControlName]+[mySubReportName1].[Report]![myTextControlName1]" >maybe you should try another way like: report.onLoad Dim total1 as string Dim total2 as string...
  16. vhung

    Solved Open an attachment

    hello; >you can add any option as Admin control/pass to edit your file and save >there is a lot of ways to connect using Timer Interval just to unlocked your file if you have to save for you only >if for viewer that is absolutely locked but open for viewing... it always works...
  17. vhung

    Access Game Block Destroyer

    wow; great; >it's been long time, i look for games like on Accdb >yes it can be >i edit some of it's mode/messages >i also try to make basketball images which has codes that moves objects...(pix below) and others like moving logos; running text;
  18. vhung

    Solved Open an attachment

    hey; enjoy using attachment >you've mention that it is open file for reading but you attached file should not be edited or deleted >hence: lock the field of your attachement on your form >if you click/double either to open an excel file they can type anything or delete while it is open but...
  19. vhung

    Solved VBA to check for Null values in certain fields in a form

    yeah; >you may use function >maybe you should try to use: Select Case "whether the field is null and 'set focus" then Time Interval for Requery; or maybe to OnLoad Form Event...
Back
Top Bottom