Search results for query: *

  • Users: ss7thirty
  • Content: Threads
  • Order by date
  1. S

    .NET Install Package Option To Run After Install

    Is there an option to run the application after installing from a .NET msi install? Is there a key to turn this on that I am missing? Most install packages you see have a check box asking if you would like to run after installation.
  2. S

    .NET Install Package Removal Of Previous Version

    I have a .NET install package in my solution (msi). I see there is a key to Remove Previous Versions (RemovePreviousVersions). However, it seems if I make code changes then rebuild the package it no longer is able to uninstall the previous version with the package but it tells you to go to the...
  3. S

    Saving An Excel File Through Citrix

    I developed a regular windows application which connects to a SQL server and outputs data to excel. This works when I run locally on my machine flawlessly. I then deploy my application to a citrix server where other people will be able to access the application from a central location. While...
  4. S

    Print (Port and Driver Name)

    The VB6 Printer Object contains Name,Port, Driver as properties. I find it hard to believe that .NET would drop functionality from VB6. how do I obtain this information in .NET 2.0? Here is some code: Private Sub PopulatePrinters() For Each strPrinter As String In...
  5. S

    CRAXDDRT (Crystal Reports) Printing Issue

    Hi Fellow Programmers, I have an issue with an application used to print crystal report documents. In my windows application in VB.NET 2005 I am looking to be able to send a Crystal Report to a printer specified by the user. There is a function in the CRAXDDRT object called...
  6. S

    Question Copy Project To Network Location

    Fellow Programmers, I developed a project locally on my machine. I then copy this project to a network location and then added to source safe. I have a reference to Excel which references C:\Program Files\Microsoft Office\OFFICE11\EXCEL.EXE . When another developer opens this on his machine...
  7. S

    Problem With ASP 2.0 Web App (Session? I think not)

    I am working in the framework 2.0 and using C# never the less my problem is kind of weird and can easily occur in VB because they are the samething in .NET is .NET. Anyways.. What could get modified that would make web application work when only one user is logged in and mess up when the second...
  8. S

    Question Question about deploying web application

    Deploying web application (need .cs files I thought thats what a DLL is for)? I am deploying a web application written in ASP.NET (C# not that that should matter). For some reason the code does not work unless the .cs files are present. My understanding and from what I have seen in the past a...
  9. S

    BitArrays / Bits from integer

    I am looking to find out how to convert an integer value to binary form and traverse its bits. For example, I would like to take 15 which is a four bit number in binary 1111 = 15. How would I traverse these bits and perform the necessary operations. This is because I am going to be passing the...
  10. S

    Streamreader / Writer Encoding

    What type of encoding do I have to use to preserve the following characters: ç , É And the u with dots above it. I have tried a few different ways of going about this but none of the different encodings that I try preserve these letters. Some just truncate them and others replace them with a...
  11. S

    Text Processing

    I am working with a large stream of text. Each line of this text is going to represent a command. Each string sent will be of the same size. Lines will be added at a rate of about 2-3 per iteration (per string sent). This means means that 2-3 lines will be missing from the front of the previous...
  12. S

    Searching For An Image In An Image / Image Comparison / API Call

    I was wondering what the best way to go about this was. I am going to be taking a screenshot of a piece of the screen. What I want to do is find out a good way to select a section of a window (outside of my application) and compare that selection to a larger image and see where on the image that...
  13. S

    Retrieving Text From Active Window Outside of My Application / API Calls

    I am working on a program and wish to add some extra functionality to the application. I wish to recognize other windows that are gaining focus. And based on which windows takes focus it will send keystrokes to that window. Sometimes closing it, sometimes sending information, sometimes doing...
  14. S

    API Calls / Application that controls 3rd Party Software

    I was looking for some information on how to write software that interacts with other software. Also, I was wondering if VB.NET is good for this. By "interacts" I mean I would like to pull information from the other program. Such as information in textboxes and the ability to click buttons. I...
  15. S

    Dynamically Calling Methods

    I have a configuration based application that dynamically creates controls based on XML configuration file. This is a scanning application and the only bump that I am hitting for this project is the fact that for each different configuration I need to execute different code in 4 different...
  16. S

    Blob datatype

    What datatype should you use in VB.NET if you are expecting an insanely long string? How many characters does the VB.NET string hold? Is there an equivilent to the Blob datatype? How should you handle insanely large strings in VB.NET?
  17. S

    Simple datatype performance Question....

    How much of a performance issue is it if you use VarChar(255) in every field rather than using integers for integers and varchar(10) for fields that will not be longer than 10, etc. Meaning if you only use that data-type how big of a deal is it performance-wise (i know that validation-wise it is...
  18. S

    Studying for .NET MCSD

    I am thinking of studying to get the MCSD certification taking the exam "Developing and Implementing Web Applications 70-305" There are a few variations of this exam for C#, and Winforms. I chose the web applications in hopes of becoming better aqcuainted with the web aspect of things in .NET...
  19. S

    Users / Application Access

    I have a problem. I have a scan application that needs the ability to Select, Insert, Update, and Delete records from a database. The way we have been giving the user access is by specifying a username/password in a configuration file. Is there a better way to go about this. Can this be...
  20. S

    .MSI - Install Package, etc.

    I have a VB6 scan application which uses a few .NET components and contains a few configuration (ini) files that all need to be in certain folders on a persons PC. I know that this can be easily accomplish with the .NET setup tools provided. However, there is a problem. Is there a way to...
Back
Top