Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Johnweida

  1. Johnweida

    How to show system folders in a form ?

    Dear Mike, I tried your code below and it works very well. ********************* PUBLIC oform1 oform1=NEWOBJECT("form1") oform1.Show RETURN DEFINE CLASS form1 AS form DoCreate = .T. Caption = "Form1" Name = "Form1" ADD OBJECT olecontrol1 AS...
  2. Johnweida

    How to show system folders in a form ?

    Dear Mike, Great code! Would you show me how to show the "My Computer","My Documents" and "My FAVORITES" folders please ? Thank you again and again. John Satellite
  3. Johnweida

    How to show system folders in a form ?

    Dear Mike, Would you show me a small sample to show "My Computer" or "My Documents" please ? Thanks. John
  4. Johnweida

    How to show system folders in a form ?

    Dear Mike, Yes. show them in a container. Is it possible ? John
  5. Johnweida

    How to show system folders in a form ?

    Sorry, I made some mistakes. It should be : I want to show some system folders such as "My Computer","My Documents" and "My favourite" etc. on my form. How can I do it ? Thanks
  6. Johnweida

    How to show system folders in a form ?

    experts, I want to show some system folders such as "My omputer","My Documents" and "My favourite" etc. in on my form. How can I do it ? Thanks. John Satellite
  7. Johnweida

    A question about timer control

    Dear Mike, I think the better way to remind users is using task reminder function of Outlook. I tried using timer control to trigger an alarm form but it cannot works stablely for the reason you know. Then I have to change my mind and go back to Outlook.Thanks again for your help. John
  8. Johnweida

    A question about timer control

    Dear Mike, I think so. Now I am trying another way to remind tasks for users. The code is below: ************************************************ #DEFINE olMailItem 0 #DEFINE olAppointmentItem 1 #DEFINE olContactItem 2 #DEFINE olTaskItem 3 #DEFINE...
  9. Johnweida

    A question about timer control

    Mike, Yes.
  10. Johnweida

    A question about timer control

    Dear Mike, it doesn't trigger. I hope it can triggers after the batch of files are loaded. Thank you for your help. John Satellite
  11. Johnweida

    A question about timer control

    experts, I put a timer control in the main form of my app. But it does not work when my app is loading a batch of files. How can I do it ? Thanks for your help. John Satellite P.S. the Interval property set as 1000
  12. Johnweida

    Open Outlook as an object

    Dear Mike, Maybe it is a little difficult for you to catch my meaning due to my poor English. Now I put oOutlook = CreateObject("Outlook.application") into form's Init. Then the form opens. Users can build their new appointment and new task etc. by clicking menu items. But the tasks...
  13. Johnweida

    Open Outlook as an object

    Dear Mike Outlook reminder still does not start working. Here is the code : *** form's Init PUBLIC oOutlook oOutlook = CREATEOBJECT("Outlook.Application") this.olecontrol1.addImageItem(1,'Appointment',1) this.olecontrol1.addImageItem(1,'Task',2) *** etc. *** *** ActiveX Control...
  14. Johnweida

    Open Outlook as an object

    Mike The code "oOutlook = CreateObject('Outlook,application')" is put in the menu. I tried to put this code at the form's INIT, but Outlook's reminder does not start working. John Satellite
  15. Johnweida

    Open Outlook as an object

    Dear Mike, I just want Outlook reminder to start working when I start my application. Now Outlook reminder start working after the menu selection. In other word, it does not work if the menu is not selected. Waiting for your help. Thanks. John Satellite

Part and Inventory Search

Back
Top