Ok but I was talking about desktop applications not web applications.
C lviu
Posts
-
How to redirect a .NET app to run on a specific .NET runtime -
How to redirect a .NET app to run on a specific .NET runtimeHello, I need to redirect my application to run on the latest version of the .NET runtime available on a machine. Does anyone have any idea how I could do this WITHOUT using a configuration file. I saw an application that does that, it's called "netz" (a .NET application compressor) The application is available at this url: http://www.madebits.com/netz/download.php If I run that application with both .NET 2.0 and .NET 1.1 it will run on 2.0, but if I have only .NET 1.1 it will run on 1.1 aswell and it doesn't have a netz.exe.config file. Thanks a lot -- modified at 5:38 Monday 9th January, 2006
-
How to get the user group in win NT/2000/XPYes, this works fine for local users but I want to list even the users on other domains. It must be possible beacause in Win2000 when I go to "Control Panel\Users and Passwords\Add\Browse" it shows me a list of all users on my domain but NetUserEnum() only enumerates the users that are stored on my computer.
-
How to get the user group in win NT/2000/XPThis is good, but it seems to work only for local users. It doesn't work for a user on a diffrent domain for exaple if my computer name is "Station" and it belongs to the "LAN" domain and there is a user on the domain "LAN" called "globalUser" and a user on the local machine called "localUser", the function fill fail if I try to look up the user "LAN\globalUser". Even more, NetUserEnum() will not show the user called "globalUser".
-
How to get the user group in win NT/2000/XPI have a string specifying the user name in the format: "domain\username". My question is: How can I get the group to witch the user belongs to? I searched API's but couldn't find anything all I could find was "LookupAccountName" but it is not what I'm looking for. Please help if you know something. Thank's
-
NT Authenticated WebsiteIn an NT Authenticated Website, I have a string in the format "domain\username". My question is: How can I get the group to witch the user belongs to?
-
Screenshot of a hidden windowYes I know, I had that idea myself but my boss doesn't like it. There must be some other way. Thanks anyway.
-
Screenshot of a hidden windowDoes anyone know how to get a screenshot of a window witch is hidden (WS_VISIBLE = 0). I tried to send WM_PRINTCLIENT to that window, but it doesn't seem to work. I realy need that window to draw itself somehow into a device context I specify. Please tell me if you know something about this. Thanks