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
R

Roger Stewart

@Roger Stewart
About
Posts
107
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • WPF
    R Roger Stewart

    Getting started with WPF[^]

    Roger Stewart "I Owe, I Owe, it's off to work I go..."

    C# csharp dotnet visual-studio wpf question

  • Control collection
    R Roger Stewart
    ArrayList names = new ArrayList();
    
    foreach(Control ctrl in myPanel.Controls)
    {
       if(ctrl is Textbox)
       {
          names.Add(ctrl.Name);
       }
    }
    

    Roger Stewart "I Owe, I Owe, it's off to work I go..."

    C# question

  • clear ComboBox content?
    R Roger Stewart

    The Items.Clear() method contained in your ComboBox instance. Roger Stewart "I Owe, I Owe, it's off to work I go..."

    C# tutorial question

  • Error
    R Roger Stewart

    0x80040154 is an HRESULT error that translates to "Class not registered." Do you have MDAC[^] installed on the test machine? Roger Stewart "I Owe, I Owe, it's off to work I go..."

    C# question database help sql-server sysadmin

  • Custom extention in C#
    R Roger Stewart

    You need to register your custom extension with the Shell. Refer to the 'Integrating with the Shell' topic in the following article: Creating Document-Centric Applications in Windows Forms, Part 2[^]. Roger Stewart "I Owe, I Owe, it's off to work I go..."

    C# csharp xml

  • WYSIWYG XHTML Windows Editor
    R Roger Stewart

    Your google must be broken...:) My first search for the words: xhtml editor free[^] turned up XStandard[^] Roger Stewart "I Owe, I Owe, it's off to work I go..."

    The Lounge html question

  • Reference problems
    R Roger Stewart

    Google is your friend. How to display an assembly in the Add Reference dialog box[^] Roger Stewart "I Owe, I Owe, it's off to work I go..."

    C# csharp dotnet question

  • string.Format
    R Roger Stewart

    string.Format( "0x{0:X2}", 1 ); Roger Stewart "I Owe, I Owe, it's off to work I go..."

    C# question csharp tutorial

  • Difference of two textfiles
    R Roger Stewart

    The DOS command is FC and there is a Windows program called WinDiff that is shipped with all version of Visual Studio. Roger Stewart "I Owe, I Owe, it's off to work I go..."

    The Lounge announcement

  • Detecting the enter key
    R Roger Stewart

    I took this (the char 13) straight out of MSDN Library for the KeyPressEventArgs.KeyChar Property[^]. You might want to pass your suggestion on to MSDN Lib guys :-D:rose: Roger Stewart "I Owe, I Owe, it's off to work I go..."

    C# question

  • Detecting the enter key
    R Roger Stewart

    You could check for the Enter key in the combo's KeyPress event, then transfer focus to the next in the tab order.

    private void comboBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
    {
        if ( e.KeyChar == (char)13 )
        {
            this.GetNextControl(this.ActiveControl, true).Focus();
        }
    }
    

    Roger Stewart "I Owe, I Owe, it's off to work I go..."

    C# question

  • Develop Windows Application with Add-Ins
    R Roger Stewart

    Besides here on CP, you can also check out the article titled 'Writing Plugin Based Applications' on this link, Articles[^]. Roger Stewart "I Owe, I Owe, it's off to work I go..."

    C# tutorial question

  • Blue Tooth
    R Roger Stewart

    Try spelling it correctly... Bluetooth -- not Blue Tooth. Then Googling. You will find lots of hits. A couple sites in the top four look promising. Roger Stewart "I Owe, I Owe, it's off to work I go..."

    Work Issues com

  • Yes,I can see you
    R Roger Stewart

    Ah, someone finally got around to reading their CP newsletter two days after it has been sitting in their inbox :) Chris wrote in the newsletter: We'd love to hear any comments you have on connection speed, any problems getting through, any email issues or even just a "yes, we can still see you" email. I do have to say that (right now) the speed is much faster. Roger Stewart "I Owe, I Owe, it's off to work I go..."

    The Lounge com

  • MFC: How to move between Edit Controls with the arrow keys?
    R Roger Stewart

    TAB goes forward in the taborder, SHIFT+TAB goes backwards. Roger Stewart "I Owe, I Owe, it's off to work I go..."

    C / C++ / MFC tutorial c++ question learning

  • HELP!!! compiler seems confused...
    R Roger Stewart

    You probably need to uniquely identify your implementation.

    bool IDataParameterCollection::Contains(String *p)
    {
        //if IndexOf returns a value less than 0, then we know that
        //the item doesn't exist
        if (this->IndexOf(p) >= 0)
            return true;
        else
            return false;
    }
    

    Roger Stewart "I Owe, I Owe, it's off to work I go..."

    Managed C++/CLI help csharp c++ css mysql

  • Importing data from Excel to Access using VB6
    R Roger Stewart

    Try using CDate() to convert text to a date data type.

    Dim t As String
    Dim d As Date
    
    t = "January 23, 2004 7:45 AM"
    
    d = **CDate**(t)
    
    MsgBox d
    

    Roger Stewart "I Owe, I Owe, it's off to work I go..."

    Visual Basic database help

  • How to make Managed DLL in VC to use in VB.net
    R Roger Stewart

    riaz_muhammad wrote: Can you guide me step by step to make Managed Dll and send me small example for Managed DLL. Refer to the Visual Studio Walkthroughs[^] to get started with C++.NET. riaz_muhammad wrote: Should i use VC6 or VC.net for Manage dll development. You can not use VC6 to create a managed DLL. riaz_muhammad wrote: Now i am trying to use this dll in vb.net but result is not accurate. The reason is vc6 produce unmanage dll that vb.net cannot use. Now i need to make Managed dll. You CAN use your unmanaged DLL from VB.NET. Refer to the following MSDN help lik, Consuming Unmanaged DLL Functions[^]. Roger Stewart "I Owe, I Owe, it's off to work I go..."

    Managed C++/CLI tutorial csharp help

  • Using the InternetExplorer object in a Managed C++ application
    R Roger Stewart

    Change Chris Morrison wrote: private: SHDocVw::InternetExplorer m_IExplorer; m_IExplorer = new SHDocVw::InternetExplorer(); To

    SHDocVw::InternetExplorerClass* ieForAutomation;
    ieForAutomation = new SHDocVw::InternetExplorerClass();

    Take a look at the VC.NET - Interop - Automate IE example found in the MSDN Visual C++ .NET 2003 Code Samples[^]. I bet this sample is doing some of the exact stuff you are trying to do! Roger Stewart "I Owe, I Owe, it's off to work I go..."

    Managed C++/CLI csharp c++ help question

  • How to make a cab file with safe MFC control??
    R Roger Stewart

    aglcic wrote: Is there a way I can turn it off and assume my control is safe?? First thing is to implement the IObjectSafety interface in your control. To help with implementing IObjectSafety and other helpful info read the MSDN Safe Initialization and Scripting for ActiveX Controls[^] article. Roger Stewart "I Owe, I Owe, it's off to work I go..."

    C / C++ / MFC c++ tutorial question
  • Login

  • Don't have an account? Register

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