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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by cpope

  1. cpope

    Images in GridView

    The reason was due to the fact that my column name was a reserved word "Image", I also created an object datasource for me to manually insert the data, I am guessing the Object asp:Parameter did not jive... Argh!! ah well. It's working now!
  2. cpope

    Images in GridView

    Thanks for the reply, unfortunately that didn't work either :( ... any other ideas?
  3. cpope

    Images in GridView

    Hi all, I am currently trying to retrieve image data from an MS Access database and display it in a GridView. I am not sure exactly where I am going wrong, whether it be on the storing of the data (data entry via a DetailsView) or the display of the data, and was wondering if you could help me...
  4. cpope

    Dynamic GDI+ image

    I have a dynamic image that is located in a custom control. This image is rendered using GDI+. The only problem I am having, is that the image renders nicely on screen, but when I go to print it out, only a box with an X shows up in it. This X also shows up in the print preview... Is there...
  5. cpope

    Making Web References Private in a Compiled Assembly

    I would like to provide another department compiled assemblies that gather information from existing Web Services and provide them with a limited subset of the data retrieved. The issue I am experiencing, is that the web service reference is available as a public member of the assembly (which...
  6. cpope

    How come no data is being transformed ?

    Problem solved by adding a prefix and assigning it to the urn value in the xml file... xmlns:CIC="urn:CICSMCSWSAD1", then using that prefix to select the LoginResponse and it's child nodes... <?xml version="1.0" encoding="utf-8"?> <xsl:transform version="1.0"...
  7. cpope

    How come no data is being transformed ?

    I have an xml document... <?xml version="1.0" encoding="utf-8"?> <?xml-stylesheet type="text/xsl" href="transform.xsl"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"...
  8. cpope

    Directory.Exists on a Network Share

    I am creating an ASP.NET application where I am going to need to write a text file in a network share folder. The problem I am experiencing is that when I try the directory exists function through an ASP.NET page it always returns false... I cut and paste the exact code into a windows forms...
  9. cpope

    PDF Printing

    Does anyone know how to implement printing only Page 1 of an existing multi-page pdf document using C# with no user interaction/dialog boxes?
  10. cpope

    Calling a stored procedure within another stored procedure

    What is the correct syntax in PL/SQL to have a stored procedure execute another existing stored procedure (the procedure does not return rows, it just performs updates)?
  11. cpope

    Returning wrong response

    Thanks... we had some variables declared outside the post/get methods... I moved all variable declarations to inside the method. We will give it a shot and hopefully it will solve our problem ! I am sorry for posting it in the websphere forum, I thought it was a server issue! Thanks again!
  12. cpope

    Returning wrong response

    I am wondering if anyone has experienced a similar problem with websphere. We have a servlet that takes in an account number as a querystring parameter. Sometimes a different account gets pulled up. It is like the response for another request gets posted back to the browser. Is it possible...
  13. cpope

    Checking if Application is already running

    *** FOUND A SOLUTION ***** Here is code that I found worked for my application: static void Main() { Mutex currapp = new Mutex(false,&quot;<MessageBoardMutex>&quot;); if(!currapp.WaitOne(0,false)) { MessageBox.Show(&quot;Message Board Is Already Running&quot;,&quot;Message...
  14. cpope

    Checking if Application is already running

    I am still having trouble, the app still thinks there are 0 processes of the name running and allows me to open multiple instances of the application... here is the new code: [STAThread] static void Main() { Int32 runningProcesses =...
  15. cpope

    Checking if Application is already running

    I am trying to make sure only one instance of my application is running at one time. This code does not work. The Length is always 0. Does anyone know how to accomplish this task...

Part and Inventory Search

Back
Top