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

    Viewing Word Docs on Web Page FRom SQL Server

    I have an input form where users can upload word documents to a database. How do I create a hyperlink to the word doc in the web page? FYI - I want to pull the infointo a dataset, then populate a label with hyperlinks that when clicked pull up the word doc Thanks much!
  2. CJAI

    Outlook VBA - driving me crazy!?

    OK, I need to write some VBA to accomplish the following: When a Mail item is dragged to the Task folder, any attachments in the mail message need to be copied over as well. I have been searching the heck out of the internet and have not found any examples of this. I've tried (unsuccessful)...
  3. CJAI

    Page Keeps Refreshing for No Reason

    I have the following js function reject(id, status){ if (status == "reject"){ document.getElementById(id + "Rej").innerHTML = "<BR><input type='text' size='25' name='Reason:<%= rs("EID") %>:<%= ApprovalRole %>'>"; }else{ document.getElementById(id + "Rej").innerHTML = ""; } return true; }...
  4. CJAI

    DataSet Error - Confusing?

    Hi, I keep getting a "cannot implicitly convert type 'object' to 'string'" on the bolded line. Your help would be greatly appreciated. //object vars SqlConnection sqlConnection; SqlDataAdapter sqlDataAdapter; SqlCommand sqlCommand; DataSet ds; //DataTable...
  5. CJAI

    Comparison query help?!

    This may be a bit elementary but I have 2 tables (A & B), related buy a foreign key called 'username'. I want to select ALL of the records in table B that are NOT IN table A. What'e the best way of doing this? I tried the following and had no success (pulled empty recordset). SELECT...
  6. CJAI

    C# File Upload Error

    I'm using a simple upload script to upload a file from a web page but I keep getting a "Invalid expression term 'string'" error in the bolded line below. //Set path to store file filePath = @"C:\Inetpub\wwwroot\"; //Call Function to save file to hard disk...
  7. CJAI

    Pushing Excel Data Into SQL Server with Excel VBA

    Why is this VBA Code generating this error message? Run-time error -2147217904 (80040e10) Automation error Unspecified error Sub Data_Push() 'This function pushes data from an Excel spreadsheet 'into a SQL Server database by pressing a button in Excel. 'Created/modified from various...
  8. CJAI

    CreateFolder Permission Denied - Tried Everything!

    I'm getting the dreaded "Permission Denied" error when trying to create a folder using FSO in the following line: set Folder = FSO.CreateFolder(Server.MapPath("/zip/") & SiteName) I have tried giving every permission that I can think of write access to the folder that I am creating in and I...
  9. CJAI

    FSO Copy Error??

    I am trying to copy a file from one folder to another. However when I try to do this I get an error on the line that is attempting to copy that says Object required: 'D:\wwwroot\intranet\' . set fso = Server.CreateObject("Scripting.FileSystemObject") MyFile = fso.GetFile...
  10. CJAI

    Getting Application Error...Need Help Quickly!!

    I'm getting the: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. error when trying to access one of my applications that is critical to our company. I have never seen this error before...
  11. CJAI

    Refreshing a parent page from a javascript popup?

    If I open a popup window fram a page. How can I have the parent page refresh when I close the popup window???? Thanks in advance.
  12. CJAI

    ASP Accounts??

    Ok, How do I figure out what account my ASP applications are running under in IIS??? I'm getting a permissions error when I run one of my scripts and it's driving me crazy.
  13. CJAI

    fso.createFolder error ----again!!

    I script that runs under a directory called "SITETRACKING" that creates a folder on the server and copies files to it -works peachy. HOWEVER--- When I execute this script under ANY other folder I keep getting the "Permission Denied" error in the line where I try to create the folder. I have...
  14. CJAI

    Asp:Label Display Error

    For some reason when I go to populate the text property of the <asp:Label> control I get the folllowing error: code: projectID.Text = "test" <asp:Label ID="projectID" Runat="server" /> error: Name 'projectID' is not declared. Thanks all! J
  15. CJAI

    Importing Namespaces in code behind.

    I am using a codebehind page to seperate my application layers. My questions is where do I import the namespaces?? I keep getting the error "Type 'SQLConnection' is not defined." Where do I import the namespace and what syntax do I use??? Thanks all, J
  16. CJAI

    Datagrid not displaying results??

    When the page loads I get no errors, but nothing displays to the screen - please help as I am an extreme newbie to dot net. Protected Sub Page_Load 'Get date and time to display to screen Dim dtNow As DateTime = DateTime.Now DisplayDate.text = dtNow.ToString( "D" ) 'Query tbl_TraverTracker...
  17. CJAI

    Application Development Tracking System Architecture

    I am undertaking the task of turning our current "on the fly" application development environment into a structured, standards driven arena. One of the main tasks involved in this process is to track and store application specific information. (bugs, versions, database access, server info...
  18. CJAI

    Javascript Reg Ex Help!

    I need to validate a file path so that it has the following format. The bolded text is what I need to validate. W:\Documentation Team Shares\some folder\Draft\Some File name Any help is highly appreciated as I'm not too fond of regular expressions.
  19. CJAI

    Streaming Video From Site???

    Hi, I need to stream some video clips from our company website. I've never done this before and don't have any idea about the process required to do this. Can anyone offer any advice on the steps to take to stream video from a site. Thanks all !!!!
  20. CJAI

    Advanced string manipulation question??

    Need some help with converting this string to a format that I can use (in the middle of creating a document management system). string: W:\Documentation Team Shares\IT\Draft\IT Procedure Manual.doc **need to use string manipulation to pull the above BOLDED folder (IT) - since this folder will...

Part and Inventory Search

Back
Top