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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Holly888

    csv file downloaded from AS400

    How to make it password protected? I don't want to users manipulate the csv file. I use the code to make it as read only: setattr fname, vbreadonly But it's not secured enough. They could still make changes to it if they want. Can I make changes to the following code on "fileauthority"...
  2. Holly888

    open up another application from EBM file

    the following code in my ebm file open up the window explorer : function browse() hWndCalc& = Shell("C:\WINDOWS\explorer.exe", 1) end function the problem is the user interface is gone after the window explorer get started. I want the users be able to get back to the user interface. I am...
  3. Holly888

    How to set password to EBM file

    HOw to set password to EBM file? I don't want my code to be read or manipulated by users.
  4. Holly888

    Reading contents of a mail from Outlook?

    'For mm=1 to restitems2.count olSubject=restitems2.item(mm).Subject or olSubject=restitems2.item(mm).body
  5. Holly888

    How to refer to optionbutton via Extra!basic

    Solution found: Select case mydialogbox.optiongroup1 Case 0 msgbox "first option button" Case 1 msgbox "second option button" Case else msgbox "invalid option" End Select
  6. Holly888

    How to refer to optionbutton via Extra!basic

    How to tell option buton 4 is selected or not, the following code didn't work: if mydialogbox.OptionButton4.selected =true then msgbox "option button 4 selected ." end if
  7. Holly888

    How to retrieve mail from the inbox vis Extra!Basic

    The solution is: Set thisApp = CreateObject("Outlook.Application") Set thisNameSpace = thisApp.GetNamespace("MAPI") Set thisFolder = thisNameSpace.Folders("Mailbox- lastname, first name") Set thisFolder = thisFolder.Folders("Inbox") Set theseItems = thisFolder.Items Please note that the...
  8. Holly888

    How to retrieve mail from the inbox vis Extra!Basic

    I find the solution myself. Thanks anyway!
  9. Holly888

    How to retrieve mail from the inbox vis Extra!Basic

    Hi SkipVought, It didn't work!The Inbox is not within the personal folders. Under the Mailbox, there's subfolder for calender , sent items and inbox. I could create mail item using CreateItem(olmailitem) function. Now I am looking some way to retrieve mail from Inbox.
  10. Holly888

    How to retrieve mail from the inbox vis Extra!Basic

    I could open folders in outlook by using the following code : Set thisApp = CreateObject("Outlook.Application") Set thisNameSpace = thisApp.GetNamespace("MAPI") Set thisFolder = thisNameSpace.Folders("Personal Folders") Set theseItems = thisFolder.Items these code doesn't work for Inbox. Do...

Part and Inventory Search

Back
Top