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

    To Address - Exchange Server/Rightfax

    How do I send to an email address that is not in our exchange server and does not have the typical syntax of an email. The address looks like this when all put together name@/FN=15555555555 Where 5555555555 is the fax number that Rightfax will pickup and fax the attachments too. When I...
  2. cruford

    IE6 Reset Proxy Authentication (get the userid/pw prompt back??)

    We are using Windows XP /w SP2 and IE6. Our users connect to a proxy server in another state with one userid/password. When we set the machines up we were prompted to enter the userid/password for that proxy server and we also checked the "Remember My Password" option, so users don't have to...
  3. cruford

    pcAnywhere OLE awConnect() Issue

    Background info - I'm querying a database to get userid and IP address (scraped at login) and display it to the users in this VB application. All of it is working except the call to launch the CHF file. Below is the code for my onClick event. I can even see the CHF file launch (and see...
  4. cruford

    Exchange 5.5 LDAP - Access Denied editing Dist List

    Not sure if this is the correct forum, but here goes... I am writing a program in vb6 to setup users on our network. I have this sub that updates the Exchange settings and it works except when setting the Distribution list (memberOf) property. I get an error of "General access denied". We are...
  5. cruford

    Displaying LDAP properties of object ?

    I have this small piece of code to connect to an exchange 5.5 server through LDAP: Dim strMailBoxPath, strMailServer Dim strNewDisplayName, objRecip, objMember strMailServer = "server" strMailBoxPath = "o=myO/ou=myOU/cn=Recipients" Set objRecip = GetObject("LDAP://" & strMailServer & "/" &...
  6. cruford

    Javascript IF THEN statement not working

    I have a delete confirmation javascript that is supposed to cancel the delete if the user chooses. It is deleting the record no matter what choice the user picks. <script language="JavaScript"> var intAnswer; function DeleteAccount(ID,FIRST,LAST) { intAnswer = window.confirm("Delete...
  7. cruford

    Pass recordset field to client side VBScript

    I have searched for this and didn't find anything real helpful. Basically I have a ASP page that just loops through a recordset and writes the row. At the end of each row is a DELETE hyperlink that pops up a message box confirming the delete (see code below). Is it possible to pass the...
  8. cruford

    ASPExec Not opening vbs file

    I have a vbscript I run now that I can pass in the IP as an argument and it will connect to any user on the fly. It works great. WScript.Echo "Made it to the pca.vbs" Dim wShell, oArgs Set oArgs = WScript.Arguments Set wShell = CreateObject("WScript.Shell") sIP = oArgs.Item(0) sCMD =...
  9. cruford

    href onClick problem

    I have a hyperlink on one of my pages like this: If Request.Cookies("Groups")("DomainAdmins") = "YES" Or Request.Cookies("Groups")("Med4_ITDept") = "YES" Then Response.Write "<li><a onClick=""Del_OnClick()"" href=""../Information_Technology/Emp_Information.asp?CMD=Delete&ID=" & sID & "&" &...
  10. cruford

    ClientSide VBScript not running

    Can anyone tell me why this is not working. None of the msgbox's come up so the entire function isn't firing with the forms onSubmit. I have this script in a few other pages and it works fine. <script language="vbscript"> Function frm_onSubmit() Dim sMsg, nErr 'MsgBox's are for testing...
  11. cruford

    Client side validation - function variable problem

    I can't seem to figure this out. I need to pass the name of my form from my <form> tag to a client side vbscript function. So far this is what I have: <Script Language = "VBScript"> Function frm_onSubmit(frmName) Dim nErr, sMsg Select Case frmName Case "frmAddAnnouncement" If...
  12. cruford

    VBScript Client side - Stop form submission

    I have some vbscript validating a form when submitted. I am getting my error messages back properly, but when I click on OK on the popup error the form is submitted anyway. How do I stop the form from being submitted if there is an error? Here is my code below: <Script Language = "VBScript">...
  13. cruford

    Variable passing issue (browsing drives/files)

    I am creating a page that will allow users to upload a picture to the IIS Server. I found some code in javascript and it's almost working but I need some syntax help. I'm new to javascript and not sure how to reference elements on the forms and pass variables correctly. Here is my entire page...
  14. cruford

    @@IDENTITY SQL statement error

    Here is the code I'm working on: Select Case nErr Case "0" sSQL = "SET NOCOUNT ON;" &_ "INSERT INTO ztblDiabeticLog (LoggedDate, FirstName, MiddleInitial, LastName, InsVerified, SignedCopy, OnFile, AOBDate, SalesRep, PodNumber, EnteredBy) VALUES ('" & Now() & "', '" & sFN & "', '"...
  15. cruford

    Problem inserting date into field

    I have a simple dropdown box with account status's (shipped, cancelled, etc..). Once a status is selected I have some code fire to update dates/fields in other tables. My problem is the "Date" expression is writing a time to my table..see below: Private Sub Status_AfterUpdate() Dim sSQL$...
  16. cruford

    Access Denied Running Batch File

    I have a batch file located at c:\inetpub\scripts\pca.bat. The contents of the batch file start pcAnywhere and take an IP address as a parameter: Start "" "C:\Program Files\Symantec\pcAnywhere\AWREM32.EXE" "P:\Programs\pcAnywhere\Template.chf" /C%1 I am trying to call this batch file with...
  17. cruford

    Open email profile setup problem

    I am just trying to open the "mail" control panel object through script on a Windows 98 box. I have tried: WSHShell.Run "rundll32.exe shell32.dll,Control_RunDLL mlcfg32.cpl" and WSHShell.Run "rundll32.exe shell32.dll,Control_RunDLL wgpocpl.cpl" Neither of them open the mail setup. It...
  18. cruford

    Policies - Custom Start Menu stops responding

    I am having an issue with sharing a custom start menu in Windows 98 policies. All clients are windows 98, servers are mixed NT/2k. I have a share called CustomD on our 2k server that is where the custom start menu is located. So the structure is this: -CustomD ---Desktop ---Programs ---Start...
  19. cruford

    Disable &quot;Find Target&quot; / Browse

    We are implementing policies here on a windows 98 network. One thing we are trying to disable is the browse box that come up when you click on a shortcut that is not pointing to a correct executable. Is there a reg key you can put in so this dialog box doesn't even come up when you click on a...
  20. cruford

    Crystal 7.0 - Formatting return data

    I am converting an Access 2000 database to SQL / VB. I am new to SQL and Crystal so forgive me if this is an easy question. All my searches here didn't turn up what I was looking for. My SQL database stores phone numbers as 1234567890. I would like them displayed as (123)456-7890 on my...

Part and Inventory Search

Back
Top