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
A

Andreas Philipson

@Andreas Philipson
About
Posts
38
Topics
9
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Adding a button to IE's main toolbar?
    A Andreas Philipson

    Is it possible to add a button to Internet Explorer's main toolbar (next to the "History"-button)? Andreas Philipson

    C# question

  • Using ::SendMessage in C#
    A Andreas Philipson

    After changing the solution to

    [DllImport("user32.dll", CharSet=CharSet.Ansi)]
    static extern int SendMessage(IntPtr hWnd, int msg, int wParam, [Out]StringBuilder lParam);

    It works perfectly! Thanks again! Andreas Philipson

    C# csharp question

  • Using ::SendMessage in C#
    A Andreas Philipson

    Thanks for the help! I'll try it when I get home. And regarding my use of this code - I'm trying to create a Password Manager which allows Drag&Drop to any edit control. Andreas Philipson

    C# csharp question

  • Using ::SendMessage in C#
    A Andreas Philipson

    I need to get the following code working in C#:

    char szText[255];
    ::SendMessage(hwndCurr, WM_GETTEXT, 255, (LPARAM)szText);
    m_strPassword = szText;

    And I've defined the SendMessage function

    const int WM_GETTEXT = 0x000D;

    [DllImport("user32.dll")]
    static extern int SendMessage(IntPtr window, int message, int wparam, [Out]long lparam);

    Does anybody know what I should do to make this work? Andreas Philipson

    C# csharp question

  • Cell Phones With Cameras
    A Andreas Philipson

    Slightly OT but... How do you transfer your pictures from your T610 to your computer? I have searched for a program to do this but all I have found is programs to move images from the computer to the t610... Andreas Philipson

    The Lounge csharp question

  • Mouse Location
    A Andreas Philipson

    Try using the static System.Windows.Forms.Form.MousePosition. Andreas Philipson

    C# question career

  • Int textBox
    A Andreas Philipson

    Just handle the KeyPress event of the textbox check each character... textBox1.KeyPress += new new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress);

    private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
    {
       if (!Char.IsDigit (e.KeyChar))
       {
          e.Handled = true;
       }
    }
    

    Andreas Philipson

    C# javascript tutorial

  • More on C# / DX9
    A Andreas Philipson

    I hade the same problem and solved it like this: In the extracted files, locate and copy the folder .\Bin\DXUtils\Visual Studio 7.0 Wizards\C#\VC#Wizards\Mdx9AppWizard Go to \Program Files\Microsoft Visual Studio .NET\VC#\VC#Wizards and delte the folder named Mdx9AppWizard and then paste the one you copied from the extracted files... This made it work for me... Andreas Philipson

    C# csharp visual-studio html graphics game-dev

  • Recieve ÅÄÖ with HttpWebRequest?
    A Andreas Philipson

    That was my first thought too, but none will give the right result :(. Andreas Philipson

    C# help html tutorial question

  • Recieve ÅÄÖ with HttpWebRequest?
    A Andreas Philipson

    Hi! I'm having a problem with the HttpWebRequest - when I recieve the stream it looses the ÅÄÖ (and some other...). The Code:

    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create ("http://www.dvdforum.nu");
    HttpWebResponse response = (HttpWebResponse)request.GetResponse ();

    StreamReader reader = new StreamReader (response.GetResponseStream ());
    StreamWriter writer = new StreamWriter ("google.html");

    string buffer = "";
    while ((buffer = reader.ReadLine ()) != null)
    {
    writer.WriteLine (buffer);
    }

    reader.Close ();
    writer.Close ();

    System.Diagnostics.Process.Start ("google.html");

    Any idea how to fix this? Andreas Philipson

    C# help html tutorial question

  • getting the size of the working area
    A Andreas Philipson

    System.Screen.WorkingArea[^] ;) Andreas Philipson

    C# com

  • .NET Framework SP2
    A Andreas Philipson

    :laugh: Andreas Philipson

    The Lounge csharp sharepoint dotnet com business

  • "Shattering Windows"
    A Andreas Philipson

    http://security.tombom.co.uk/aboutfoon.html[^]: Able to program in 23 languages on 14 platforms, Foon takes an average of 3 days to learn a new programming language.:laugh: Andreas Philipson

    The Lounge csharp html linux security help

  • Hax0r champoo
    A Andreas Philipson

    :laugh::laugh::laugh: http://koti.mbnet.fi/~smith/humor/1/AUSSIE_W.jpg[^] - The new start button & IE text is brilliant!!! :-D http://koti.mbnet.fi/~smith/humor/1/america.gif[^] Andreas Philipson

    The Lounge

  • Floating Toolbars
    A Andreas Philipson

    Magic Library 1.6 Andreas Philipson

    C# question

  • [Yet Another Q] making a non-resizable form
    A Andreas Philipson

    Check out the System.Windows.Forms.FormBorderStyle - this will make the dialog fixed: this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; Also, set the MaximizeBox to false Andreas Philipson

    C# com help question

  • Spotted at /.
    A Andreas Philipson

    Very Tom Green of him... Andreas Philipson

    The Lounge com question

  • Magic Library 1.6
    A Andreas Philipson

    Very nice! :jig: Two thoughts: *I need to create a Context which starts as AutoHidden - is this possible? *When an item is autohidden, the title is not shown - instead there's just a blank square... Andreas Philipson

    C# com announcement

  • Typing
    A Andreas Philipson

    I agree, looking at the keyboard just makes me "stumble" on the keys... Andreas Philipson

    The Lounge performance question

  • Kazaa
    A Andreas Philipson

    I recommend Kazaa Lite which doesn't include all the spyware... Andreas Philipson

    The Lounge 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