Search results

  1. rio

    Save graph as jpeg

    hi.. its OK everyone. I already solve the problem. at the graph8 properties i should put yes for enabled. now only left 1 problem. how to save all graph for all record just by one click. here the attachment :
  2. rio

    Save graph as jpeg

    sorry vbaInet, I'm not expert in this (still learning). i also don't know where the error. that's why i attach the database. hopefully someone can look the attachment db and look for the error...... then help me solve it.
  3. rio

    Save graph as jpeg

    Hi. vbaInet. I put the code as u suggestion Private Sub Command6_Click() Dim grpApp As Graph.Chart strDate = Format(Now(), "dd mmmm yyyy") strFolder = "StnInfo" & " (" & strDate & ")" MkDir (CurrentProject.Path & "\" & strFolder) Set grpApp = Me.Graph8.Object grpApp.Export...
  4. rio

    Save graph as jpeg

    Hi. I'm already follow the instruction in http://support.microsoft.com/kb/824276. and this is my new code for new button : Private Sub Command6_Click() Dim grpApp As Graph.Chart strDate = Format(Now(), "dd mmmm yyyy") strFolder = "StnInfo" & " (" & strDate & ")" MkDir (CurrentProject.Path &...
  5. rio

    Save graph as jpeg

    ok thank... i will take a look. how about to save all graph for every data just by one click?
  6. rio

    Save graph as jpeg

    hi. I need some help with my database. here the problem: 1. I can't save all the graph for all record (StnName) by one click button cmd2PS01. here the code Private Sub cmd2PS01_Click() Dim objChart As Object Dim strDate As String Dim strFolder As String strDate = Format(Now(), "dd mmmm...
  7. rio

    Putting Google Earth in A Form

    hi.. can u attach with some db sample.
  8. rio

    Combo box and field problem

    thank poppa for ur reply. sorry... my English not so good. hopefully u will understand what i mean. Do you want to use combo boxes to display records where COD has a certain value, or where BOD has a certain value, or where SS has a certain value or a combination of these values? yup... and it...
  9. rio

    Combo box and field problem

    hi... here my table : Table 1 : LabResult Sample Name COD BOD SS SA1 50 20 2 SA2 100 51 3 BA1 30 12 0 BA2...
  10. rio

    String Variant Problem

    OK... thanks. my be i should try that way. i need to study hard and more. thanks again for ur suggestion.
  11. rio

    String Variant Problem

    Thank wazz for suggestion. there still got problem. here i attach the file....
  12. rio

    String Variant Problem

    Hi... Need some help... I used 2 combo box in my form (frmStnNo). I put this code at each combo box. The problem is this code for numbers string. how to change it to text string? coz [StnNo] and [SampleNo] is in text. Private Sub Combo4_AfterUpdate() ' Find the record that matches the control...
  13. rio

    dont run if network offline

    Thanks...DCrake
  14. rio

    Query help

    An explanation would be good? By the way, if you have parameters on one line in different fields it uses the AND logic. Sorry my English not so good... and I don't know how to explain it in word... i think better using picture (make easier to understand) here I attach the db... so can u show...
  15. rio

    Query help

    hi.. i got a new question... also about the query. Is there another way to make this ...
  16. rio

    dont run if network offline

    hi... Thanks for reply So look at the code AmIConnected if it returns false then store that information in a txt file on the pc or in a table. Can u help me how to write the code? Why do you want to log when the person was not connected? this database was share with a lot of people. sometime...
  17. rio

    dont run if network offline

    When a person logs in from a pc you need to record that in either a table or a flat txt file. Then the next time they open the app you open the table/file and read in the contents and display on form. David that about log in... how about if there was offline. i want last online date not last...
  18. rio

    dont run if network offline

    hi... can anyone help me... is there any way that i can show in the form the last online date & time?
  19. rio

    Query help

    Thanks....Thanks.....Thanks vbaInet. Its working as i need.
  20. rio

    Query help

    Thank for suggestion. what i means is parameter value box not criteria box.
Back
Top Bottom