Search results for query: *

  • Users: TBossAZ
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. T

    Question Integrate VB.NET Class into SQL Server 2005

    I have created a class in VB.NET 2005 that will return data for a given Employee ID, which involves calling a few web services to return the needed data. I have successfully used this class in a few of my windows form projects. What I would like to do now is find a way to integrate this class...
  11. T

    Question Deployment Involving DLL References and Global Assembly Cache (GAC)

    Greetings everyone, I created a Windows Application using VB.NET 2005 Express Edition. In my project I have two references to DLLs from a 3rd part product, so that I could access its API (Ascent Capture 7.5 from Kofax if you needed to know). For the two references, I have set the Copy Local...
  12. T

    Question Compare Two StringCollections?

    Greetings Everyone, Is there a way to compare two variables that are StringCollections to find out if they both contain the same data or not?
  13. T

    Need Opinions Re: Multiple Projects in One Solution

    Hello everyone, I know that it is possible to have multiple projects under a single solution. I have never had a need to do it, but I just inherited a solution where there are some 10 projects under the one solution. Is there any special advantage to having multiple projects in a single...
  14. T

    Question createDocumentFromUrl Error

    Hello everyone, I am workign with importing HTML documents, and then being able to access that document's DOM to parse out data. In searching several web pages, I found what looked like a very simple solution: Dim ht1 As New HTMLDocument Dim htNew As HTMLDocument htNew =...
  15. T

    Question Use MSHTML to get Column count in a Table

    Hello everyone. I have been experimenting with using MSHTML to parse HTML documents, in order to retreive data from those documents. First, take a look at the following peice of code: Dim doc As HTMLDocument = New HTMLDocument() Dim d2 As IHTMLDocument = doc 'strHTMLCode contains the html...
  16. T

    Question Pass a Stream from a class

    Apologies if i post this in the wrong area. I have written a class that parses HTML files to retreive data. This is part of the code in that class: Private streamHTMLCode As Stream Dim fileReader As New WebClient() streamHTMLCode = fileReader.OpenRead(strPath) Dim reader As StreamReader = New...
  17. T

    Question Use Windows Service to access files over a network

    Greetings everyone, Let me preface this by saying I have read other posts on this board that describe the problem I am having but I am not understanding the solutions, and I need some help. I need to create a Windows Service that involves being able to access and move files saved on the...
  18. T

    Question Windows Services and the Application Event Log

    I want to get everyones thoughts and opinions to the following question: Is it true that for windows services we create in VB.NET, their basic events like Start, Stop and Errors are automatically recorded in the Application Event Log?
  19. T

    Question DataRowView Question

    I have a simple question (but the answer could be complex :)). Is is at all possible to retreive data from DataRowView, or is that not what it is for? What I have done is create a dataview from a datatable: oleDataAdapter.Fill(dsDocTypes) dvDocTypes = dsDocTypes.DefaultView Then I used the...
  20. T

    Question Need ListBox to Show Events in Real-Time

    Hello everyone. I have designed a window application that: check the contents of a folder for specific files (HTML) move files to a 'working' diretory parse each file with webbrowser control to extract data call webservice to collect additional data The main form has a large ListBox that...
Back
Top