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

Search:

Type: Posts; User: Mushq

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    724

    Suppressing dialog UI in a property sheet

    I have propertysheet with three dialogs.
    I want to process them automatically by calling OnWizardNext() in OnSetActive() method for not showing that dialog. It is working fine except for the final...
  2. Replies
    0
    Views
    2,873

    How to install word addin silently

    Hi,
    I have created a word addin project in VS 2008, then publish it, now I want to install that silently through my setup program, but it always open the GUI even I call createprocess API with...
  3. Replies
    3
    Views
    2,478

    VB6 redistributables

    Hi,
    Can anyone please tell from where can I find redistributables of VB6.

    Thanks,
    Mushq
  4. Re: Is “windowsbase.dll” part of any of the version of .net framework?

    Thanks. :)
  5. Is “windowsbase.dll” part of any of the version of .net framework?

    Hi,
    Is “windowsbase.dll” part of any of the version of .net framework? I have googled it lot but unable to find proper answer, can anyone please tell me about that.

    Thanks,
    Mushq
  6. Setting property Enable32BitAppOnWin64 for IIS 7 in C#

    ServerManager mgr = new ServerManager();
    mgr.ApplicationPools["test"].Enable32BitAppOnWin64 = true;
    mgr.CommitChanges();

    Above code should set property Enable32BitAppOnWin64 to true for...
  7. Using "aspnet_regiis.exe -ga" on the basis of SID instead of "user name"

    aspnet_regiis.exe -ga "Network service"
    The above command grants "Network service" access to the IIS metabase and other directoriesused by ASP.NET.
    Is there any way to do using "Security...
  8. Thread: VB Script to C#

    by Mushq
    Replies
    1
    Views
    709

    VB Script to C#

    Hi,
    Can anyone please tell me how to convert following script into C# code.

    strComputer = "atl-ws-01"
    Set objGroup = GetObject("WinNT://" & strComputer & "/Administrators")For Each objUser In...
  9. Re: Availability of "Terminal Service Manger" type utility in Windows XP

    Thanks for the reply.

    I want to close a connection of a user at a remote machine.

    Regards,
    Mushq
  10. Availability of "Terminal Service Manger" type utility in Windows XP

    There is a tool "Terminal Service Manger" available in Windows 2k3, does anyone know is there in any tool available in Windows XP like "Terminal Service Manger".

    Thanks,
    Mushq
  11. How to determine if .Net Framework 2.0 SP1 is Installed

    Hi,
    Can anyone please tell me how to determine if ".Net Framework 2.0 SP1" is Installed, currently I am reading "Install" "dword entry" from registry path "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET...
  12. Receive messages in a dialog based application through socket

    I am using following code to send message to remote machine through sockets, I am calling mentioned code when a button of MFC dialog based app is clicked and it is working fine. But I don't know how...
  13. Replies
    4
    Views
    1,683

    About position of AfxMessageBox OK button

    Can I change the default position of OK button when calling AfxMessageBox function, by default it is on center.


    Thanks,
    Mushq
  14. About save method of Microsoft.Office.Interop.Excel.Workbook

    Sample code.


    Microsoft.Office.Interop.Excel.Workbook theWorkbook =
    ExcelObj.Workbooks.Open(
    "C:\\test.xls", 0, true, 5,
    "", "", true, Excel.XlPlatform.xlWindows, "\t", false, false,
    0, true,...
  15. Replies
    4
    Views
    1,279

    Re: Silently execute an exe at startup

    I think you have missed one point i.e. want to execute that silently means no UI.
  16. Replies
    4
    Views
    1,279

    Silently execute an exe at startup

    I have got C# windows application exe and want to execute that silently at startup can anyone please tell me how to do that?


    Thanks,
    Mushq
  17. Replies
    1
    Views
    1,530

    Uninstall MDAC and MMC manually

    Does anyone know how to manually uninstall Microsoft Data Access Components (MDAC) and Microsoft Management Console (MMC) from Microsoft Windows Server 2003 SP2.

    Thanks,
    Mushq
  18. Replies
    0
    Views
    2,627

    About "Cell Change" event in Excel

    Can anyone please tell me how to catch an cell change event due to formula, for example if at cell A3 has got formula =A1+A2, now if the value of A1 has changed then it reflects the value A3 too, but...
  19. Replies
    1
    Views
    742

    To find files in Visual Studio

    Is there any way to find files in "Visual Studio" just like finding files in "Windows Explorer", for example I want to find test.txt in C drive.

    Thanks,
    Mushq
  20. Replies
    4
    Views
    807

    Re: How to resize the dialog box

    http://www.codeproject.com/KB/dialog/easysize.aspx

    Regards,
    Mushq
  21. To change the default control name on drag and drop

    Hi,
    I want to change default name of control when I drag and drop a control.
    For example when I drag a label control on a form it default name is label1 and when drag another control its name is...
  22. Re: How to resolve linker errors related to IID _MMCVersionInfo

    Thanks.
  23. How to resolve linker errors related to IID _MMCVersionInfo

    Can anyone please tell me how to resolve these linker errors?

    1 . "Error 1 error LNK2001: unresolved external symbol _CLSID_MMCVersionInfo"

    2 . "Error 2 error LNK2001: unresolved external...
  24. To find VC++ redistributables version installed on a system

    Is there any way to find VC++ redistributables version installed on a system, Does there any "registry key" or win32 API exists to find that?

    Thanks,
    Mushq
  25. Replies
    1
    Views
    1,123

    To find MMC's version on a system

    Is there any way to find current MMC's version on a system, Does there any "registry key" or win32 API exists to find that?


    Thanks,
    Mushq
Results 1 to 25 of 121
Page 1 of 5 1 2 3 4





Click Here to Expand Forum to Full Width

Featured