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
  • how to swap column of datagrid at runtime in asp.net ?

    csharp asp-net help tutorial
    2
    0 Votes
    2 Posts
    0 Views
    C
    This is not possible in ASP.NET. You could inherit from the DataGrid control to and provide your own implementation (heavily augmented with a liberal amount of javaScript) to provide the functionality that you desire. --Colin Mackay-- "In the confrontation between the stream and the rock, the stream always wins - not through strength but perseverance." (H. Jackson Brown) Enumerators in .NET: See how to customise foreach loops with C#
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • Table stracture related question ?

    question database csharp sql-server
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • datagrid check box column related question ?

    question csharp help
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Tree View related question ?

    question csharp data-structures
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • how to add check box and radio button on menu easy way?

    csharp tutorial question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • Printer pages

    help tutorial
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    2 Posts
    0 Views
    D
    http://www.asp.net/Tutorials/quickstart.aspx
  • How to insert picture in the cell of the datagrid ?

    question tutorial
    2
    0 Votes
    2 Posts
    0 Views
    D
    http://aspalliance.com/articleViewer.aspx?aId=141&pId= http://www.dotnetbips.com/displayarticle.aspx?id=101 try to visit the site and you see the sample codes. :-) Dabuskol:-O
  • sending information from one application to another

    question csharp
    6
    0 Votes
    6 Posts
    0 Views
    D
    you could use session variables application 1 save your value session["id"] = txtbox1.text application 2 read your value dim strtest as string = session["id"] there is another other option you could pass the value as parameter, it depends on your flow.
  • Need Help in emergency.....

    csharp help tutorial
    2
    0 Votes
    2 Posts
    0 Views
    C
    These companies sell .NET charting tools: http://www.dotnetcharting.com/home.aspx http://www.aspose.com/Products/Aspose.Chart/ http://www.softwarefx.co.uk/ http://www.dundas.com/charting/ http://www.gigasoft.com/ http://www.java4less.com/charts\_dotnet.htm http://www.steema.com/products/teechart/TeeChartNet.html http://www.advsofteng.com/ http://www.componentone.com http://www.quinn-curtis.com/ http://www.imagiotech.com/simplechart http://www.tensegrity-software.com/en/components/demo/index.html http://www.nevron.com/home.asp --Colin Mackay-- "In the confrontation between the stream and the rock, the stream always wins - not through strength but perseverance." (H. Jackson Brown) Enumerators in .NET: See how to customise foreach loops with C#
  • columnstyle for usercontrols

    help question graphics
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Passing command line arguments to vb.net

    csharp help question
    3
    0 Votes
    3 Posts
    0 Views
    V
    Thanks that worked Tom
  • Can I use C++ For video Game Programming

    c++ game-dev
    13
    0 Votes
    13 Posts
    1 Views
    G
    ok Game Tester
  • open mdb file

    database help question
    14
    0 Votes
    14 Posts
    0 Views
    C
    I'm grasping at straws...but have you tried opening up another database file. Maybe create a database with one table and try to access that. OR Maybe it's a sharing violation. In the past I've had trouble opening a database if I had it open in MS-Access, especially if it's open exclusively by MS-Access.
  • ASP.NET VB Execute a String to Change Label Text

    help csharp asp-net learning
    8
    0 Votes
    8 Posts
    1 Views
    I
    etihwl wrote: OK Thank you for your time and I will look into this Thanks again. No problem :-) -- Ian Darling "The moral of the story is that with a contrived example, you can prove anything." - Joel Spolsky
  • TreeView Control

    data-structures
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Code required in VB.NET in emergency

    csharp sysadmin lounge learning
    2
    0 Votes
    2 Posts
    0 Views
    C
    [Edit] I just noticed that, according to your bio, you have a Masters Degree in Computer Science. So my original response, below, was probably pitched at the wrong level. I assumed you were new to programming, but with a Masters in CS you should have quite a bit of, at least, academic experiece. [/Edit] Why not start with a simpler project until you understand the environment you are working in. When I was a beginner programming in BASIC (Sinclair BASIC to be exact) I wrote simple programs like noughts-and-crosses and hangman. Waqar Nadeem wrote: I required a code for simple chat server in which multiple clients can be connected This is quite a complex problem. Tracking mutliple clients is not something a beginner should be handling. Even I get dizzy with the thought of tracking multiple clients in a real time senario - That's what architectures like ASP.NET are good at. They help separate out the different clients so for the majority of the code I write it is like I have one user. If you really must try to do this then break the problem in to smaller pieces. Then come back and ask questions on the smaller pieces. Questions like "I tried to do X but it didn't work and I got a Y error message. Here is the code I used, can anyone see where I went wrong?" are really good and will get a better response. --Colin Mackay-- "In the confrontation between the stream and the rock, the stream always wins - not through strength but perseverance." (H. Jackson Brown) Enumerators in .NET: See how to customise foreach loops with C#