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 bkrike 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: togatown
  • Content: Threads
  • Order by date
  1. togatown

    ADSI Permissions

    Can you use powershell to set permissions on an AD object? I want to add a group and set "deny read" and "deny open address list" permissions on the default global address list for the group. I can access it and know how to set properties and commit them, I just don't know how to add a group...
  2. togatown

    Protect Code

    Does anyone know of a good, easy to use code obfuscation program? I could swear I saw someone post a program link or script here once. Thanks!
  3. togatown

    View Excel and Word Docs

    I have a customer who wants to allow their client to view all Excel and Word docs in a set of folders in the browser in a read only format without exposing any formulas or structure of the files. I toyed with the idea of a PDF document converter component but have not found anything that is...
  4. togatown

    Collect mail from a Public Folder

    Is there any way to collect mail from a mail enabled public folder using POP or IMAP? Thanks
  5. togatown

    Regular Expressions

    I need to search through some HTML I've populated a variable with. I am looking to replace all of the content in between two comment tags. The content could vary. In my HTML I have: <!-- begin header row here --> blah, blah, blah of varying content so I need a wildcard <!-- end header row here...
  6. togatown

    Remote Desktop Admine Mode

    For some reason Remote Desktop is only allowing one session to connect to my W2k3 server. If I log in via remote, it logs of the user on the console even if the user name is different. Is this something new? Any help appreciated....
  7. togatown

    Check current state of array element

    I have the following code. I want to eliminate the rollout event so that the menu element which has been scaled remains scaled. On rollover, I want to check the state of the elements and reduce all but the currently selected element back to 100% (ignoring the current element if it was already...
  8. togatown

    Flash Navigation

    I've inherited a partially complete project and I'm looking for someone to clean up some sloppy Flash for my customer. HTML and ASP are a piece of cake but Flash is not my thing. The previous vendor did the site navigation in Flash and I am looking to get it redone in a more professional...
  9. togatown

    AOF01ENG To beat a dead horse

    Can someone send me the map files please?
  10. togatown

    Job Fails

    I want to launch a mail routine I created asynchronously using a job. When I execute spMailerRecipients from the Query Analyzer thus: exec sp_MailerRecipients @Type='Newsletter' but when try to launch it from a job it fails? CREATE Procedure sp_MailerRecipients @type varchar(13) --run time...
  11. togatown

    Update based on two tables

    Well, I know this doesn't work........any help appreciated. UPDATE CustomerExt SET FirstName2 = (SELECT LTRIM(RIGHT(Customer.FirstName, LEN(Customer.FirstName)-(PATINDEX('%&%', Customer.FirstName)))) FROM Customer LEFT JOIN CustomerExt ON Customer.ID = CustomerExt.ID WHERE FirstName LIKE '%&%')
  12. togatown

    Distribution List

    I have a customer with a Starplus w/ VM who would like to set up Distribution Lists to their sales force. Many of these people are remote frequently and they want them to be notified offsite. Can the system directly deliver to them offsite or is delivery to their boxes which are them set up for...
  13. togatown

    Credentials

    Can I execute an sp from an sp under different credentials? Thanks....
  14. togatown

    XUpload - Redirect

    Hi all, I am using Persits AspUpload and XUpload to send files and folders to my server. I am programatically launching the upload process through client-side VB Script instead of using XUploads pop-up menu which cause the RedirectURL parameter of the XUpload object to be ignored forcing me to...
  15. togatown

    Catch All/ Junk Mail Problem

    Hi, I'm using Exchange 2003 Enterprise with Outlook 2003 clients. All blocked mail and erroneously addressed mail is ending up in one users box. Any ideas on how this is happening? Thanks, Toga
  16. togatown

    Read Text File Contents

    Most of what I've seen here deals with importing data from external file. I need to read the entire contents of a text file into a variable. How can I accomplish this. Thanks, Toga
  17. togatown

    Fedex Direct API

    Is anyopne using this?? I am succesfully using the USPS and UPS APIs to return rates to my site but Fedex's documentation SUCKS! Several hundred pages and not even a URL to the app server... Help.... Thanks
  18. togatown

    If Else Problem

    I am rather new to stored procedures, can someone explain why when this executes and the conditions are met, I cannot return the results of the select statement to my code (ordinal not found error) but when the conditions aren't true it runs fine. Thanks CREATE PROCEDURE sp_selfenroll AS...
  19. togatown

    Microsoft's Retail Management System - Extensibility

    I have a customer whom wishes to add a considerable amount of data to his existing RMS database. All of this data is customer related. If I add a table, will this data be available to him on his POS machines? He wants, among other things, to add several people from the same household to one...
  20. togatown

    Stored Procedure Inserting into two tables

    I have the follow procedure which works fine when I run it out of the query manager but fils whe run as a stored procedure. When I use it as a procedure, the second table doesn'st populate. I have a trigger to create the new record in the second table because I have a third party app which...

Part and Inventory Search

Back
Top