Search results

  1. 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...
  2. 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 +...
  3. 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...
  4. 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
  5. 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...
  6. 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"
  7. 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 ....
  8. 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
  9. 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...
  10. 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
  11. 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...
  12. 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...
  13. 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;
  14. 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...
  15. 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...
  16. vhung

    Printing Problems.

    Runtime Error 2585 happens when Microsoft Access fails or crashes whilst it’s running, hence its name. It doesn’t necessarily mean that the code was corrupt in some way, but just that it did not work during its run-time. Report - A report contains summarized information from a data source...
  17. vhung

    "Run-time error '-2147024882 (8007000e)': Out of memory." while building ADO recordset

    >i have to face what i need to as long as AWF is here it will help me guide on my way... >this could be my home and Accdb is been my partner for years on my daily works... >but we know that we seek for the best result...
  18. vhung

    "Run-time error '-2147024882 (8007000e)': Out of memory." while building ADO recordset

    feels; >sad with it, why this be, i learn to love Accdb but still i can't fully access it guess right as time goes in a year many things to be done then problems maybe have solutions... >but then i still hope that MSAccess should be developed as we users needed it why have they...
  19. vhung

    "Run-time error '-2147024882 (8007000e)': Out of memory." while building ADO recordset

    well; >sql is there but it was different compare to same langauage as MSAccess... i already used MSSQL but i was not satified on the long run operation so i remain on Accdb split database as 2 files use during operation... >but anyway if my split link source data is full i could add...
  20. vhung

    "Run-time error '-2147024882 (8007000e)': Out of memory." while building ADO recordset

    Is there a way or chances to develop/improve the MSAccess specially to increase the memory for splitting tables for at least 5GB, including field size capacity...
Back
Top Bottom