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
  • Mix Managed code and unmanaged code

    csharp c++ help tutorial
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • FAXING

    question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • I need an installation program to install my system

    question
    3
    0 Votes
    3 Posts
    0 Views
    H
    Use package and deployment wizard(you already have it with Visual studio) or MS visual studio inastaller (free to download form microsoft site)
  • developing my own web browser

    sysadmin tutorial
    2
    0 Votes
    2 Posts
    0 Views
    D
    If what you want to do is write a web crawler to collect information, why reinvent the wheel? Why not use a web browser control. You didn't specify any language restrictions, so you can start with the article on Code Project: http://www.codeproject.com/internet/httpget-post.asp?target=winsock%7Cweb%7Cbrowser[^] or try http://www.syix.com/wpsjr1/wsksock.zip[^] RageInTheMachine9532
  • F1 Button

    help question database
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • using java program as server and vb as client

    java sysadmin question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Question on how to use two identical databases.

    database tutorial question
    3
    0 Votes
    3 Posts
    0 Views
    L
    that smiley face has bloody appeared, NOTE it should be "Share Deny None; Persist...". ;P Alan.
  • How do i put a webpage into a VB.Net program

    question csharp tutorial
    2
    0 Votes
    2 Posts
    0 Views
    J
    This code shows a web browser window with CodeProject in it: dim url as string = "http://www.codeproject.com/" System.Diagnostics.Process.Start(url) "Blessed are the peacemakers, for they shall be called sons of God." - Jesus "You must be the change you wish to see in the world." - Mahatma Gandhi
  • Closing Main Form

    tutorial
    2
    0 Votes
    2 Posts
    0 Views
    D
    Hello A simple answer is the form.unload command Hope it helps! didijoe
  • Simple problem

    help csharp css asp-net tutorial
    5
    0 Votes
    5 Posts
    0 Views
    I
    Thanks you guys you people are very kind, Thanks, that's one part of an assignment that is due today. I'm very happy thanks to you, I owe u heaps! But now I need more help PLEASE; it's from the same exercise. I need to make a loop until the value 0 is input, then print the total number of items weighted. for that i created a variable called counter as int. dim counter as integer Counter = 0 do until weight = 0 Counter = counter + 1 Loop weight = inputbox(...) (...code you guys gave me goes here) Loop End If (...) When I try to run it I get a runtime error '6', Overflow, but I have no idea what I'm doing wrong, please give a hand with that THANKS AGAIN! Cheers, IJ:-D ASP.NET capo
  • I want to lock the Access database (VB.6)

    database help
    2
    0 Votes
    2 Posts
    0 Views
    M
    shoma bayad baraye in kar az access estefade konid. dar access ha dar menue toos bayad security ro entekhab konid. vali dao in no' bank ra nemishnasad va bayad az ado va az getengine 4 estefade konid!!!! M.Khayatan MkhProgrammer
  • About text and label

    question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Newbie to VB need some advice please

    c++ csharp help question
    4
    0 Votes
    4 Posts
    0 Views
    R
    Now wait a second there... (I hate it when I am misunderstood) What I said was if you have to learn a .NET based language for a project and already have a good C++ background then C# will probably suit you better. I could haev conversly said that if you have to learn a .NET based language for a project and you have a good VB6 background then VB.NET would be best suited to learn. Sheesh... You almost made it sound like I was recomending C# over VB there. Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.
  • Easy VBScript question about the file pointer

    question
    2
    0 Votes
    2 Posts
    0 Views
    N
    I guess Split might helps you... Is it? Regards, NetPointer
  • converting vb double to vc double

    question
    4
    0 Votes
    4 Posts
    0 Views
    N
    OK I see what you're trying to do but I haven't done VC in so long I've forgotten most of it :-O. I'm sure there's something I'm missing but I can't put my finger on it... Sorry. Beware the chickens, for in their silence, they plot... Two fish are in a tank. One says to the other: "I'll man the guns, you drive!" Life is too short to be taken seriously. -- Oscar Wilde
  • Pass array

    question data-structures tutorial
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Accessing a VC++ DLL in VB

    c++ performance help question announcement
    6
    0 Votes
    6 Posts
    0 Views
    D
    Never had a problem with it. I've built several VB6 projects using libraries I've built into C .DLLs. All I ever had to do was put the DLL files into the same directory as the project and add a reference to the DLL's or to their Type Library files. RageInTheMachine9532
  • readin excel data into a dataset

    help question csharp database tutorial
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Graphs connected to Interface & db

    database csharp data-structures beta-testing
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • all about exceptions

    help question
    4
    0 Votes
    4 Posts
    0 Views
    F
    oh, ive found out the cause in the event of the parent form OnMDIChildActivate. here's the code: 'Reset tool bar of parent using the stringFortoolbar of child 'This event is still being called when the form is being closed using the control menu If Me.ActiveMdiChild Is Nothing Then Exit Sub Dim objName As String objName = MyBase.ActiveMdiChild.GetType.Name() If objName = "ReceivingOrders" Then Me.ResetToolbar(RRChild.StringForToolbar) ElseIf objName = "MaterialIssuance" Then Me.ResetToolbar(MISChild.StringForToolbar) ElseIf objName = "TransferToAccounting" Then Me.ResetToolbar(TransferAcctChild.StringForToolbar) End If ... if i remove this, no error will occur.. pls. give me an alternative strategy for this. refer to the comments... and when shall i use the events OnMDIChildActivate and OnMdiChildActivate? tnx very much.