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

    Sharepoint 2010 Standard edition and Visual Studio 2010

    WE have Sharepoint 2010 standard edition. I also have Visual Studio 2010. Can I develop SP workflows and applications in Vis Studio with standard edition or is enterprise edition necessary for this? Sam
  2. sdraper

    PleaseHelp

    Here's a good place to start http://www.microsoft.com/technet/scriptcenter/scripts/default.mspx?mfr=true Sam
  3. sdraper

    How do I change the computer name in VB6

    You could have a "personal" network space(logical drive) assigned to each user. It would be available wherever the user might login. That is pretty much the extent of my knowledge on the subject. I would recommend one of the network forums for further details. Sam
  4. sdraper

    How do I change the computer name in VB6

    good point strongm. I used this in a situation where the pc's are brand new, freshly ghosted and haven't joined the domain yet so it hasn't caused any problems here Sam
  5. sdraper

    How do I change the computer name in VB6

    It will definitely change computer name. here is how I used it Dim oShell As New WshShell strTmp = "C:\newsid.exe /a /n " & SNewName oShell.Run strTmp, 0, True Sam
  6. sdraper

    How do I change the computer name in VB6

    I have had success with the following http://www.microsoft.com/technet/sysinternals/Security/NewSid.mspx Sam
  7. sdraper

    How to import an SQL stored Procedure into Excel

    I believe you can use DTS to execute the SP and export to Excel. Sam
  8. sdraper

    FTP

    OK thanks. Your code is interesting (and functional!) I will add it to my collection I appreciate the explanation. Sam
  9. sdraper

    FTP

    not sure why ftp.exe would be considered "external" and Msinet.ocx isn't "external" but i never claimed to know everything. PLease explain. Sam
  10. sdraper

    Outlook Read Receipts

    Try turning the feature that is giving you trouble off and then after testing that is still off turn it back on. Sometime toggling the feature on and off will make it work properly. Sam
  11. sdraper

    Starting Scripting Basic

    http://www.slipstick.com Sam
  12. sdraper

    FTP

    Here is some code that has worked for me. It is a rework of something I found here or on the else where. I added drag and drop capability. Hope this helps '*************************************************************************** '****Ftp's whatever single file that has been dragged to the...
  13. sdraper

    Excel - ShellExecute

    What is the error being returned? add Err.Description to your message box and see what it tells you. Sam For tsunami relief donations
  14. sdraper

    cut and paste as new image

    I have recorded and action to do this. Then assign it to a keyboard short cut Sam For tsunami relief donations
  15. sdraper

    Convert .xls to .csv from a .vbs file

    You can even record a Macro in Excel and Adapt it to vbs if ya want. Sam For tsunami relief donations
  16. sdraper

    Is there a function like =rand(10) in Word XP?

    Works for me as well. There is a second parameter in case you were unaware for number of sentences in each paragraph. =rand(10,2) will yield ten paragraphs with 2 sentences in each. HTH, Sam For tsunami relief donations
  17. sdraper

    Sending E-mail

    If you want to delay sending of the mail use the DeferredDeliveryTime property of the mail item Sub DelayMail() Dim olApp As Outlook.Application Dim olMail As Outlook.MailItem Set olApp = New Outlook.Application Set olMail = olApp.CreateItem(olMailItem) 'set send time...
  18. sdraper

    One Sandwich Short

    she didn't have enough gas in her moped to get away from the boy ants! Sam For tsunami relief donations
  19. sdraper

    One Sandwich Short

    If brains were gasoline he/she wouldn't have enough to run a pregnant ant's moped around the inside of a cheerio. Sam For tsunami relief donations

Part and Inventory Search

Back
Top