CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Shaitan00

Page 1 of 18 1 2 3 4

Search: Search took 0.07 seconds.

  1. Unable to display a List as one of the columns of my view

    I have the following classes:



    public class Order
    {
    public string OrderName { get; set; }
    public List<Parts> PartsList { get; set; }
    }
  2. Replies
    1
    Views
    962

    Waiting for a process to end? [VS9 C++]

    On my system there is an application (App.exe) that runs, but sometimes it terminates (gracefully and expectantly). At the same time I have another application that, when App.exe is stopped, needs to...
  3. Re: How to prevent user from logon of an account used for impersonation only? [C#]

    Wish I could .... but I need to use the user account created.
  4. How to prevent user from logon of an account used for impersonation only? [C#]

    Currently I have a windows service written in C# (running as LocalSystem) which creates a user account, needed for impersonation, by using the DirectoryEntry to add the user/password and associated...
  5. Re: How to convert string with double high/wide characters to normal string [VC++6]

    From what I can see it is double-high / double-wide VDisplay characters provided by QVS TSNT application ... can't really find anything more then that ...
  6. Re: How to convert string with double high/wide characters to normal string [VC++6]

    First step was to ask the customer, they gave us the map of what pairs convert to what and were told to use it that way - the customer is dealing with another software company (which I've also spoken...
  7. Re: How to convert string with double high/wide characters to normal string [VC++6]

    Curious to ask (opening up a can on worms but) are you sure this format is even Unicode? I always assumed it was WCHAR but that was simply because I wasn't sure what else this stuff could be...

    I...
  8. Re: How to convert string with double high/wide characters to normal string [VC++6]

    Won't using WideCharToMultiByte still change the constants (like the overall string size, location of the decimal, etc...)? Also, not all characters are represented in Wide format, some are still...
  9. Re: How to convert string with double high/wide characters to normal string [VC++6]

    Customer decided to change things up (for display purposes on their own application) and I have to live with the changes.

    I think it might be Wide Char (from what I've been reading this morning) -...
  10. How to convert string with double high/wide characters to normal string [VC++6]

    My application typically recieves a string in the following format:
    " Item $5.69 "

    Some contants I always expect:
    - the LENGHT always 20 characters
    - the start index of the text...
  11. Re: Client catching Web Service User Exceptions [Java 6.0.17]

    Yes I see something similar, the difference is the custom GetMessage() function is not in the WSDL.
    Actually - it looks like using the super (Message) solved the problem ...
  12. Re: Client catching Web Service User Exceptions [Java 6.0.17]

    What do you mean "Metro"?
  13. Re: Client catching Web Service User Exceptions [Java 6.0.17]

    UserException has @WebFault already - or is it missing something?
    I catch the exception, and it is in the WSDL, but it looks like either the String ErrorMessage isn't returning correctly...
  14. Client catching Web Service User Exceptions [Java 6.0.17]

    I am trying to send an EXCEPTION from a Web Server to a Client using JAX-WS ...
    When the exception is thrown by the server the client does catch it ... but the contents are not the expected...
  15. How to extract the server Host/IP from the CORBA IOR & NamingContextExt? [Java]

    I've got a Client who needs to send a UDP packet to a server and the only reference he has to the Server is through the CORBA naming service (IOR). I know the IOR has the Server Information embedded...
  16. Proper way to delay an application while a service is starting?

    My system has a service (Serv.exe) which starts as LocalSystem and should be running at all time, additionally on startup of the PC (auto logon) the user has a STARTUP application (App.exe) which...
  17. How to programatically Logoff interactive user and Logon as another [C#]

    Is there a way to force a logoff (knowing this is not recommended) of the current interactive (logged-on) user and then login with a new user account (interactive - not using stuff like LogonUser and...
  18. LoadUserProfile not creating local user profile when it does not exist [C#]

    I have a tool which I use to programmatically create local user accounts as follows:



    DirectoryEntry NewUser = dirEntryLocalMachine.Children.Add("UserName", "user");
    ...
  19. Re: CreateProcessAsUser() not showing CreateWindow of running Process [C#]

    Simplified Question:
    My system has 2 accounts (USER and ADMIN), the user is always logged on as USER but at some specific times a process (Tool.exe) is launched under the ADMIN account (by a...
  20. CreateProcessAsUser() not showing CreateWindow of running Process [C#]

    My system has 2 accounts (USER and ADMIN) and a service (Service.exe) running under LocalSystem.
    The user logs into the USER account, the LocalService can then launch a process...
  21. Is the best way to update a running Service by using another service? [C#]

    I need to find a reliable way to update a running Windows Service (Service.exe).
    The service is run under the LocalSystem account whereas the logged-in user is in a non-admin User account.

    My...
  22. Run prog using LocalSystem Service CreateProcessAsUser or click on desktop icon? [C#]

    At my company we have a product which pretty much interacts with everything you can imagine... registry, databases, devices, etc... it is composed of many parts but the entire application is launched...
  23. Re: Service not running for Impersonated user with CreateProcessAsUser [C#]

    Ya - it is logged-on as ADMIN (verified) - from what I can see I still can't even access HKEY_CURRENT_USER so I think I need to use LoadUserProfile(...) to load-in all that information ... playing...
  24. Re: Service not running for Impersonated user with CreateProcessAsUser [C#]

    Didn't work - gives the same behavior ...
  25. Re: Service not running for Impersonated user with CreateProcessAsUser [C#]

    That is a great idea ... I've gotta run for 4-5 hours but the second I get back I'll test and post the results here ... Thanks !
Results 1 to 25 of 433
Page 1 of 18 1 2 3 4





Click Here to Expand Forum to Full Width

Featured