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: cpope
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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/"...
  5. 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...
  6. 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?
  7. 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)?
  8. 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...
  9. 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...
  10. cpope

    JavaMail Error

    I am trying to get JavaMail to work, it compiles fine, but when I try and run the application, it causes this error: Exception in thread &quot;main&quot; java.lang.NoClassDefFoundError: javax/mail/Session at testEmail.main(testEmail.java:15) Here is a partial code clip: import...
  11. cpope

    DataInputStream, Mystery null

    Currently I am running a servlet that reads data from a URL generated by another servlet on another machine. The problem I am experiencing is missing data being replaced by a null. When I cut and paste the URL, the data appears to be fine. I use the same class to read from the URL for other...
  12. cpope

    Can someone help me remove flicker from this applet?

    // messagingClient Class // UNDER DEVELOPMENT // Currently Reads All Messages From Server, sends acknowledgement that messages are received // then loops back and obtains new set of messages import java.net.*; import java.io.*; import java.util.*; import java.applet.Applet; import java.awt.*...
  13. cpope

    Creating A Shortcut

    Does anyone know a way to create a shortcut or a link through visual basic code. I have found some samples that work only with Windows '95, but it is really important that the code works with win95,98,NT4,2000. Thanks! Carey
  14. cpope

    Hiding all WebBrowser Scrollbars

    Is there a way to hide all WebBrowser scroll bars? I am currently loading a page in the component and I do not want the scroll bars to be displayed.
  15. cpope

    JavaBeans OCX

    I have recently created a client/server message board system. The client piece was originally developed as an Applet, but due to security issues surrounding sockets, I needed to come up with another solution. I couldn't find an easy way or a clear description to sign the applet on all client...
  16. cpope

    Java Bean to ActiveX

    Hi, I originally had this class as an applet, but had some Java Security issues with connecting the client to the server. I then followed the step-by-step instructions on the Sun site to convert the applet to a Java Bean. When this class was an applet it ran fine. But when I am using it as a...
  17. cpope

    Always on Top - Reserving Space

    I am developing an application, and I currently have the it successfully staying on top. The problem I am experiencing is that other applications and icons can be hidden behind the application. This is just a small application about 0.5&quot; tall and is the total width of the screen, I would...
  18. cpope

    JTextField problem

    In my application, I am enabling/disabling parts of a form based on user interaction. The problem I am experiencing is with the JTextField not being able to assume focus, in other words I cannot select or change the text inside this field, even after it is enabled. Let us assume jtf is a...
  19. cpope

    Swing Component Tool Tips

    I am trying to add a tool tip to my swing components, but the \n for a newline displays a square icon instead of breaking to a new line. Is there a way to display tool tip text on multiple lines?
  20. cpope

    Single-Thread vs. Multithreaded Servlets

    Can anyone explain an example of when a single threaded servlet should be used as opposed to the default multi-threaded servlet?

Part and Inventory Search

Back
Top