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 Wanet Telecoms Ltd 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: *

  • Users: Holly888
  • Content: Threads
  • Order by date
  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

    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
  5. 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