Search results for query: *

  1. T

    Question Creating PDfs from Word with Sky Sof

    I am working on a .NET project that uses a DLL from a company called SkySof. The DLL converts Word documents into PDF documents. Everyhing works find with our production XP machines, but when we run tests with our Windows 7 machines we get COM Exception errros. Does anybody have any...
  2. T

    Question Adobe PDF Reader causing error in Windows 7

    I appear to have found the solution to the problem RE AcroPDF.dll with Windows 7. I had Visual Studio 2010 installed on our Windows 7 test machine. I added Adobe Reader to the list of controls. When I tried to add the control to a form I got an error that said: Failed to create component...
  3. T

    Question Adobe PDF Reader causing error in Windows 7

    Greetings everyone. I created a very simple VB.NET windows form application that only has one control, the Adobe PDF Reader. I created this project in both VS 2005 (.NET 2.0) and VS 2010 (.NET 3.5). My developer machine is XP SP3 32 bit. I experienced the same problem with version 8 and 10...
  4. T

    Question .NET WebBrowser Control and JavaScript

    Hello everyone, I am working on a project where I have to automate the process of entering data through a website. I decided to use the WebBrowser control in .NET for this task. The problem I am having is that when I try to click on certain buttons, nothing happens. After lookign at the HTML...
  5. T

    Question Loading HTML File into String Variable

    Hello everyone, I am writing a web application that will allow a user to upload a saved HTML file. The application will "parse" the data in the uploaded HTML file to update a database table. The approach I want to take is to load all of the contents of the HTML file into a string variable...
  6. T

    Question SELECT dropdown has no OPTION tags (WebBrowser Control)

    This is secured internal web application I am dealing with and cannot post any of the code for security reasons.
  7. T

    Question SELECT dropdown has no OPTION tags (WebBrowser Control)

    Hello everyone (apologies if I posted in the wrong thread), I created a Windows Form application that used a Webrowser control to automate the process of entering data into a website. One of the tasks included selecting a server name from a dropdown menu (SELECT tag). I was able to get a...
  8. T

    Question Converting VB6 ADODB to ADO.NET

    With the help of a friend and some research on the Internet, I have found a solution to my issue with converting the old VB6 code to something that will work in .NET. I do not thing there is anythingin the .NET language that would replace the lines of code that was giving me trouble, but there...
  9. T

    Question Converting VB6 ADODB to ADO.NET

    Does anybody have any other ideas or suggestions. The old VB6 code would prompt the user for username and password, or for a file name depending on the type of datasource. I am sure it had something to do with this line: TempDB.Properties("Prompt") = adPromptComplete Anybody done anything...
  10. T

    Question Converting VB6 ADODB to ADO.NET

    I do not understand your answer, could you clarify?
  11. T

    Question Converting VB6 ADODB to ADO.NET

    Anybody have anything on this?
  12. T

    Question Converting VB6 ADODB to ADO.NET

    Hello everyone, I am working on a project that involves converting some "legacy" VB6 code to .NET. Part of the project involves having a user select a DSN from a list box, to export some data to the selected data source. I have the following VB6 code: Set TempDB = New ADODB.Connection...
  13. T

    want to supress filedownload dialog box

    Does anybody have an answer to this question? I am trying to do the same kind of thing. I use webbrowser to navigate to a webpage. The page has a link to download a file. Any help would really be appreciated.
  14. T

    Question ClickOnce Publish: Publishing Folder vs Installation Folder

    Thanks for the help JohnH! So basically, the Installation Folder path is where the published files need to be manually copied to in order to distribute the application to the users. Exactly what I needed.
  15. T

    Question ClickOnce Publish: Publishing Folder vs Installation Folder

    Hello everyone, I have a question regarding publishing vis ClickOnce. For the publish options, there is a Publishing Folder Location and there is a Installation Folder URL. Can someone clarify the difference between Publish and Install, and when it would be apropriate for the two to be...
  16. T

    Question Windows Service using MSHTML

    Anyone, anyone?
  17. T

    Question Windows Service using MSHTML

    Hello everyone, I wrote a windows service that uses the MSHTML.dll to parse some HTML files. When I run the service on my local machine, everything works fine. When I run the service on a server, the service "freezes" whenever it tries to parse the first HTML file it loads. I have tried to...
  18. T

    Question Where are My.Settings stored?

    Thanks anthony.selby for the reply and the link. I was able to find the config file with the seetings I had setup in the main application. Because the file path to the config file is so complex, I do not think I am going to be able to write a second program to update the config file of the...
  19. T

    Question Where are My.Settings stored?

    Hi Everyone, I need to create an application that will modify values in My.Settings for another application. The problem I am having is I cannot figure out where to find the config/xml file that stores the settings for the first application. I am able to find the exe.config file in the same...
  20. T

    Question calling a method in Class2 from Class1?

    Thanks JohnH! Until you had mentioned it, I had not even considered using partial classes. You can extend the class of the WinForm or User Control because the designer code and programmer's code are themselves partial right? If that is true and you add another partial class to the form or...
Back
Top