Skip to content

Visual Basic

Visual Basic Questions

This category can be followed from the open social web via the handle visual-basic@forum.codeproject.com

34.4k Topics 120.1k Posts
  • Listbox and XML

    csharp xml help tutorial
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • outpur in Excel using vb6

    help learning
    2
    0 Votes
    2 Posts
    0 Views
    J
    I think I answered your previous post about this issue, here[^]. Please let me know if that does not address your question completely. What a piece of work is man, how noble in reason, how infinite in faculties, in form and moving how express and admirable . . . and yet to me, what is this quintessence of dust? -- Hamlet, Act II, Scene ii.
  • Janus GridEx & Rows

    tutorial
    3
    0 Votes
    3 Posts
    0 Views
    R
    That would be great - or post a link and will fire up the cable modem!! Many thanks "Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox
  • Runtime Error 430??

    help testing tools question
    7
    0 Votes
    7 Posts
    0 Views
    N
    nadroj_@hotmail.com u dont have to send the whole thing. im saying just post afew parts here, like the initialization of it, and afew other areas of implementation. did u check that link and upgrade? ------------------------ Jordan. III
  • Global Error Handler

    csharp data-structures help
    5
    0 Votes
    5 Posts
    0 Views
    K
    It sounds exactly like what I need. Would it be possible for me to get a copy of it. If so, I'd really appreciate it. Thanks, Wayne
  • rich text output to postscript or...

    csharp help question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • crystal report

    help database sysadmin security
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • CryptoAPI

    question
    3
    0 Votes
    3 Posts
    0 Views
    M
    Yah , it helps. Thanks. :-) Mazy You're face to face, With the man who sold the world - David Bowie
  • .NET and Binary compatibility

    csharp design question announcement
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • null delimited string

    json question
    5
    0 Votes
    5 Posts
    0 Views
    R
    Ohh....tht was the problem. I tried tht code on VB6. Thanx a lot :rose: rIsHaBh
  • Adding a border in Excel using VB.NET

    csharp tutorial question
    4
    0 Votes
    4 Posts
    0 Views
    J
    Right on, Nick. :cool: What a piece of work is man, how noble in reason, how infinite in faculties, in form and moving how express and admirable . . . and yet to me, what is this quintessence of dust? -- Hamlet, Act II, Scene ii.
  • Adding a comment in Excel

    csharp help question
    9
    0 Votes
    9 Posts
    0 Views
    J
    VS.NET generates an Interop.VBIDE.dll -- but which DLL does it reference and where is it located? What a piece of work is man, how noble in reason, how infinite in faculties, in form and moving how express and admirable . . . and yet to me, what is this quintessence of dust? -- Hamlet, Act II, Scene ii.
  • Random numbers and letters

    help design tutorial question lounge
    4
    0 Votes
    4 Posts
    0 Views
    N
    yup, no prob. ------------------------ Jordan. III
  • Adding PageBreak in Excel

    csharp tutorial question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Completely Dynamic Menu

    csharp help tutorial
    2
    0 Votes
    2 Posts
    0 Views
    Y
    I never tried this kind of thing but hope you can do this using API's. Yogendra Agarwal Telemune Software Solutions Pvt. Ltd. Mobile: +91 9818899010
  • Array display

    csharp data-structures help tutorial
    2
    0 Votes
    2 Posts
    0 Views
    Y
    Insted of using DataGrid, try using FlexGrid. Yogendra Agarwal Telemune Software Solutions Pvt. Ltd. Mobile: +91 9818899010
  • VB.NET read XSD from embedded resource

    xml database csharp sql-server
    2
    0 Votes
    2 Posts
    0 Views
    M
    Hi Michael. There are several articles on CodeProject that could help you. Do an article search on "embedded resource". Here's a link to one article[^] that may be useful.
  • Strong Namad Assemblies / Versioning

    help question announcement csharp
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Sending mail using default mail client in VB

    question
    2
    0 Votes
    2 Posts
    0 Views
    J
    One of two ways: add a reference to the Outlook libraries to your project or use the SmtpMail class. What a piece of work is man, how noble in reason, how infinite in faculties, in form and moving how express and admirable . . . and yet to me, what is this quintessence of dust? -- Hamlet, Act II, Scene ii.
  • keyboard hooking in VB.net

    csharp html com json
    5
    0 Votes
    5 Posts
    0 Views
    D
    matthew kelly wrote: Public Function HandleOfCurrentWindow() Dim WindowHandle As Integer Dim p As Process p = Process.GetCurrentProcess WindowHandle = Process.GetCurrentProcess.Handle.ToInt32 'get handle of current window 'return handle Return WindowHandle End Function Well, first of all, your not getting the Window handle of the CurrentProcess. Your actually returning the handle to the Process itself, not it's Window. You have to use the MainWindowHandle propery of the process: Dim WindowHandle as IntPtr p = Process.GetCurrentProcess WindowHandle = Process.GetCurrentProcess.MainWindowHandle() Now, after you get that, you can't use it in .NET to get the parameters of the window you want. .NET doesn't expose such functionality. But! You can use that window handle to get the parameters using the Win32 API. But! Some of the values you get back will probably surprise you! Send me an email address to send you the sample I wrote. It's a little too big to post here! All you have to do is click on other windows, like the VS IDE to see some interesting Normal Position values. Try it with an IE window too. RageInTheMachine9532