Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
A

Ariadne

@Ariadne
About
Posts
71
Topics
30
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Get const-collection from code?
    A Ariadne

    Thanks Pete, that's what I'm looking for. It works fine.

    Ariadne

    C# debugging question

  • Get const-collection from code?
    A Ariadne

    Hi, is there a way to list the contents of constants? ie. is there a function ConstantCollection()(see below) or something similar?

    class Test()
    {
    const string c1="blah1";
    const string c2="blah2";
    const string c3="blah3";
    const string c4="blah4";
    void Print()
    {
    foreach(object Constant in ConstantCollection(this))Debug.Print(Constant.Contents);
    }
    }
    Output:
    blah1
    blah2
    blah3
    blah4

    Ariadne

    C# debugging question

  • HowTo: Start a msi File in an Installation
    A Ariadne

    Manas Bhardwaj wrote:

    What about using a batch file

    not bad, but there are customers, who do not look. If they see an msi-file, they click on it. (The driver msi B.msi is part of A.msi, it is deployed after A.msi starts.) I thing, I have to spawn a task in A.msi, which starts after A.msi has completed. - But how?

    Ariadne

    C# question

  • HowTo: Start a msi File in an Installation
    A Ariadne

    Hi, I have to install a driver msi-package (B.msi) in the installation of my application (A.msi). But it is not possible to install an msi while an other msi is running. Is there a way to start installation B.msi after the installation of A.msi, if the user doubleclicks only A.msi? Thanks!

    Ariadne

    C# question

  • HowTo: Start an msi-File while installing [modified]
    A Ariadne

    Hi, I have to install a driver msi-package (B.msi) in the installation of my application (A.msi). But it is not possible to install an msi while an other msi is running. Is there a way to start installation B.msi after the installation of A.msi, if the user doubleclicks only A.msi? Thread moved to c#-board[^] Thanks!

    Ariadne

    modified on Tuesday, September 9, 2008 3:23 PM

    Visual Studio csharp com tools question

  • HowTo: Move DataBase
    A Ariadne

    one has to compile the project! Then the DB-Path is changed... And if you want to use the new DB-Path in your xsd DataSet (eg. Data Preview) you have to restart VS. Thanks

    Ariadne

    modified on Thursday, June 26, 2008 5:57 AM

    C# database question

  • HowTo: Move DataBase
    A Ariadne

    Abhijit Jana wrote:

    just change the DBpath in connection string

    is there a usual way in VS2005? I tried to change all occurrences of the old DBPath into the new one. But VS allways looks at the old path.

    Ariadne

    C# database question

  • HowTo: Move DataBase
    A Ariadne

    Hi, I had to move a MSAccess Database to a new location. In VS2005: Is it possible to change the path only without recreating all queries and tableconectors etc.? Thanks!

    Ariadne

    C# database question

  • How to get version of the installer-project
    A Ariadne

    Yes there is a way, but a dirty one: read the file .vdproj

    Ariadne

    C# csharp tutorial question announcement lounge

  • How to get version of the installer-project
    A Ariadne

    Thanks sathish s! Your solution shows the version of the actual running assembly. But my question is related to VS-Enviroment: I need a link to the version of the installer-project property. perhaps VS has a build-in variable [InstallerProjectVersion] or there is a way to investigate the running VS enviroment to get this version.

    Ariadne

    C# csharp tutorial question announcement lounge

  • How to get version of the installer-project
    A Ariadne

    Hi, I'd like to use the version of the installer-project (set in the project properties) as a general version of the whole application (as defined in the AssemblyInfo.cs). Is there an C#-object, which is able to read the visual-studio properties, in special the version of the installer project? Thanks!

    Ariadne

    C# csharp tutorial question announcement lounge

  • Howto Start a form in a thread and get access to it's variables
    A Ariadne

    Thanks.

    Martin# wrote:

    Maybe you should start a new thread with this specific question.

    Yes I did so...

    Ariadne

    C# question tutorial

  • Open an excel file
    A Ariadne

    you can also take a look here. Your problem is perhaps not so simple as you assume....

    Ariadne

    C# question csharp

  • Is it possible to except a thread from debugging?
    A Ariadne

    Hi, I have a form frmA interpreting temp values collected by a second form frmB. Form frmB starts as a thread from frmA. frmB uses a System.Windows.Forms.Timer to collect the data. If I debug frmA, the timer (and I suppose the whole thread frmB) stops, until frmA continues. Question: Is there a way to exclude thread frmB from debugging? i.e. if frmA stops due to debugging, frmB collects still data. Thanks!

    Ariadne

    C# question debugging

  • Howto Start a form in a thread and get access to it's variables
    A Ariadne

    Martin, thanks! It works. But unfortunatly it solves not my problem: If I debug the frmA, the timer in frmB stops also. Is there a way to exclude frmB from debugging? Or have I to use a separate application frmB and use interprocess data exchange to get the data from frmB. (frmB collects temperatures, and frmA reads them from frmB)

    Ariadne

    C# question tutorial

  • Howto Start a form in a thread and get access to it's variables
    A Ariadne

    Hi, is there a description (or sample code) how to start in a form frmA a second form frmB in a thread and get access in frmA to the variables in the thread of frmB? Hope the question is clear... Thanks Andreas

    Ariadne

    C# question tutorial

  • DateTimePicker : Time-Loop -> Date-Switch
    A Ariadne

    Hi, I need a DateTimePicker which in(de)crements the date, if the hours in(de)crement at 24h/0h. I started with two DateTimePickers (date/time). The problem is that the scroling part of the timePicker fires no event, if one hits the scrollbar. So I can not see, if the user enters a new time or increments the time by scrolling. Are there any solutions? Thanks!

    Ariadne

    C# help question

  • point to a class name with a string from xml
    A Ariadne

    Hi, is there a way to point with a string to a specific class? I want deserialize a XML-Stream into a structure of variables. I tried with Score = (score)serializer.Deserialize(reader); but all members of Score are null. I suppose that the xml-file is not compatible with seriliation. So I want do the deserialisation by my own code. This leeds to the question above: If I read an XML-element, how can I assign the XML-attributes to the approprieate element-class?

    Ariadne

    C# question xml

  • New installed App failed to run with user privileges
    A Ariadne

    Christian Graus wrote:

    Sounds like you did something in code that requires admin.

    No I don't think so. If I run the App.exe from the user account (doubleclick on App.exe in the program folder) there is no problem. Only if I try to run the App from the installed icon, it tries to reinstall the App from a unfound App.msi

    Ariadne

    .NET (Core and Framework) csharp visual-studio help question workspace

  • New installed App failed to run with user privileges
    A Ariadne

    An application, builded with the Visual Studio 2003 Setup, runs fine on a user machine, if the user has Admin privileges, but if the user has only user priviledges, a doubble-click on App-icon do not start the App.exe but seeks for the App.msi - and stops with fatal error. Did I something wrong?

    Ariadne

    .NET (Core and Framework) csharp visual-studio help question workspace
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups