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 SkipVought 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. broadthought

    Calling macros in other .MAC files

    I'm using macro scripts (VBScript option) with Client Access for AS/400 and would like to have a suite of frequently used routines in their own .MAC files. But you only seem to be able to call routines in the same MAC file as the main routine. Can you use routines in other files?
  2. broadthought

    Lotus Notes Archiving

    Yes I've had similar problems caused by server glitches. Luckily the archive was not on the mail server, so long as you can locate the file and double-click on it you can access it. what you don't seem to be able to do is continue to use the same archive, while on the one hand saying it can't...
  3. broadthought

    Clearing URL history

    Anyone know how to clear the URL history out of Lotus notes R5? Previous version did not retain all previous URLs typed-in. I've looked and looked in the help and nowhere can I find anything on how to remove the history.
  4. broadthought

    .NET passport auto login NOT WANTED, but does anyway

    As it was saying I was logged as domain\username, I thought I would try logging into the dialogue that is displayed when I type 'Control Userpasswords2' into start\run. Still would not let me in, BUT I spoted two hyperlinks at the bottom of this dialogue 'manage your passwords' & 'change your...
  5. broadthought

    Hyperlinks in exported documents

    I previously had R4.6 and now have R5, I had hoped that lotus might have updated the version of Word (6.0) that if exports documents as.(needs to be 8.0 or above I think) The problem is that any document with hyperlinks in has the hyperlinks 'un-hyperlined' on exporting. My company keeps...
  6. broadthought

    .NET passport auto login NOT WANTED, but does anyway

    Linney You have to have administrator level access to do this, and as just a user I can't do anything with this. I'm allowed to make limited personal use of my computer at work, but since we went to XP this has be defacto curtailed by the policy/admin settings. Any suggestions?
  7. broadthought

    .NET passport auto login NOT WANTED, but does anyway

    Anyone else come across this? I'm using IE6 with XP pro, and when I go to MSN groups and click login, it does, without asking me for a username or password! I've not selected the 'log me in automatically' option but it goes ahead and does it anyway. I have to log out before I can login with...
  8. broadthought

    label in Execl commanbar

    You can use the tag property to attach information to the commandbar, and other controls. e.g. Application.CommandBars("Worksheet Menu Bar").Tag = "my customized"
  9. broadthought

    saving drafts

    Once you have sent a message it is no longer a draft, you can save a copy in a sent message folder by setting the tick-box in user preferences.
  10. broadthought

    scripting EXCEL

    This is not the usual way of handling Excel (or any application) from script. The more usual way is to use CreateObject to create an instance of the object (in this case an Excel workbook) and manipulate its properties and methods. eg-: SET objXLwb = CreateObject("excel.workbook")...
  11. broadthought

    How do I Paste into an E-mail via visual basic?

    I use 'sendkeys' method to issue keystrokes to active Lotus new message to attach various files and paste text into messages
  12. broadthought

    Excel Macro Code - What is this saying?

    There is one variable in the code that has not been assigned a value (ntrRefresh) and I don't reconize it as a system variable The 1st line is creating an instances of an ACNnitro object from ACNielsenNITRO object library. 2nd line sets property ParentApp of that object to EXCEL. 3rd line...
  13. broadthought

    wshshell.popup with no button?

    The fact that the same version of WSH with different OS versions don't behave the same, indicates that-: 1) the version of WSH is pretty meaningless if scripts don't all behave the same for a given version of WSH. 2) either the script components and/or the shell objects are not the same/don't...
  14. broadthought

    wshshell.popup with no button?

    Slight mis-type in my foregoing! SET objWshShell = createObject("WScript.shell") objWshShell.popup "testing",3,"no button, no icon",7 SET objWshShell = Nothing Very perplexing! If I save the above as a '.vbs' file then go to [Start] select Documents, then...
  15. broadthought

    wshshell.popup with no button?

    Put this into a text file and save it as WSHver msgbox "WSH vesrion: " & ScriptEngineMajorVersion & "." & ScriptEngineMinorVersion Then double-click on the file, this will tell you the version. Try this -: SET objWshShell = createObjext("WScript.shell")...
  16. broadthought

    wshshell.popup with no button?

    this works for me, what issue of Windows Script host have you got?
  17. broadthought

    wshshell.popup with no button?

    So if you had tried my suggestion :- wshShell.popup "message",2,"caption",63 will give popup with exclamation icon but no buttons.
  18. broadthought

    wshshell.popup with no button?

    If you subtract 1 from some of the button/icon-code combinations you get just the Icon and no buttons, or neither (e.g. 7 gives no buttons no icon), BUT ONLY USE IN TIMEOUT MODE!(AND DON'T USE CODE 6, CAN'T BE DISMISSED!)

Part and Inventory Search

Back
Top