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
N

Niels Penneman

@Niels Penneman
About
Posts
71
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • XP look needed in vb applications
    N Niels Penneman

    VB.NET: System.Windows.Forms.Application.EnableVisualStyles() VB6: Add the API function InitCommonControls, defined as: void InitCommonControls(VOID); In VB: Private Declare Sub InitCommonControls Lib "comctl32.dll" () Make sure you make a call to this in Form_Initialize: Private Sub Form_Initialize() InitCommonControls End Sub Then add a manifest file called .manifest, so if your app is App1.exe then this file would be App1.exe.manifest. The file must contain the following lines: Your App name goes here greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    Visual Basic

  • Console Apps
    N Niels Penneman

    sorry, but i've got too much work for now :-(, but maybe i'll do it some later time greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    Article Writing csharp

  • Web request coding problem
    N Niels Penneman

    I have this HTML code, which enables me to log me in to my internet account manager. I want to code this in C#, because it directly leads to a statistics page, and I need them in my program. Does anyone know how I have to code this or could anyone give me some advice?

    C# csharp html help question

  • S-ATA or IDE?
    N Niels Penneman

    Seems very nice, thank you all :) greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    The Lounge visual-studio question

  • message box
    N Niels Penneman

    WRONG FORUM

    Site Bugs / Suggestions question help sales

  • IE only?
    N Niels Penneman

    I'm sick of seeing those ERROR 500 pages when using Mozilla or FireFox. And when I open up the microsoft crap, everything's just fine... greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    Site Bugs / Suggestions help question

  • S-ATA or IDE?
    N Niels Penneman

    What do you guys think? If I'm going to buy a new HD AND a controller card for it, should I go for S-ATA or for IDE? greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    The Lounge visual-studio question

  • Console Apps
    N Niels Penneman

    Hmm nice, maybe i'll do one this week :) greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    Article Writing csharp

  • formatting date to a RTF
    N Niels Penneman

    When I need to do this, I open wordpad (not word) and i type in some text, do some formatting and examine the structure of the generated rtf file :-) greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    Visual Basic question help

  • Any Setup Expert around!
    N Niels Penneman

    Check this out: dotNetInstaller - Setup Bootstrapper for .NET Application
    By Davide Icardi
    greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    Visual Basic csharp dotnet tutorial workspace

  • One more Help Please!!
    N Niels Penneman

    using ShellExecute (API)... I already posted this before, search the forum for "ShellExecute" :-) greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    Visual Basic linux help tutorial

  • my 500th message
    N Niels Penneman

    Yeah sure greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    The Lounge question learning

  • How to get rid of mouse right click popup
    N Niels Penneman

    .NET? Override WndProc and capture the corresponding message :-) greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    Visual Basic tutorial question

  • WM_NOTIFY Reports incorrect values
    N Niels Penneman

    Correct translation to VB.NET is here:

    Structure NMHDR
        Dim hwndFrom As IntPtr ' Window handle of control sending message 
        Dim idFrom As Integer ' Identifier of control sending message 
        Dim code As Integer ' Specifies the notification code 
    End Structure
    
    Structure NMHEADER
        Dim hdr As NMHDR
        Dim iItem As Integer
        Dim iButton As Integer
        Dim lPtrHDItem As IntPtr ' HDITEM FAR\* pItem 
    End Structure
    

    greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    Visual Basic csharp help

  • WM_NOTIFY Reports incorrect values
    N Niels Penneman

    Values are NOT incorrect... look what I found :-)

    Hdn_begintrackw: INTEGER is -326
    -- Notifies a header control's parent window that the user has
    -- begun dragging a divider in the control (that is, the user
    -- has pressed the left mouse button while the mouse cursor is
    -- on a divider in the header control). This notification
    -- message is sent in the form of a WM_NOTIFY message.
    --
    -- Declared in Windows as HDN_BEGINTRACK

    I found it here ;-) greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    Visual Basic csharp help

  • Designing games using VB 6
    N Niels Penneman

    I guess you can set the number of boxes by creating a control array from code (define the element 0 in your form, not from code) The timer: use the Timer control, make it a countdown timer (define a variable, for ex. an integer,s et it to a value and start the timer)

    Dim timeout as Integer
    timeout = 60 ' 60 x interval = 1 minute
    Timer1.Interval = 1000 ' 1 second
    Timer1.Enabled = True

    and in the timer event:

    timeout = timeout - 1
    lblTime.Caption = timeout & " second(s) left"

    This will create a countdown for 1 minute... greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    Visual Basic design game-dev help question

  • WM_NOTIFY Reports incorrect values
    N Niels Penneman

    First of all, in VB.NET long becomes integer, integer becomes short, ... This may not solve your problem, but will help you with this and future translations :-) I suggest you read the translation guidelines @ MSDN greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    Visual Basic csharp help

  • MFC in ArgoUML models
    N Niels Penneman

    Look, this is the lounge, no place for programming questions, right? ;-) greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    The Lounge c++ question

  • Floating Window Z-Order....
    N Niels Penneman

    Sorry, but I had never used this before so I looked it up and found the OwnedForms property and I thought, that must be it! Nice :-) greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    C# csharp question

  • The Donkey and the meaning of Life
    N Niels Penneman

    very nice :-) greetz ;-) *Niels Penneman*


    Software/Dev Site
    Personal Site


    The Lounge css help
  • Login

  • Don't have an account? Register

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