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
  • Web Sraping/post through two urls

    csharp help tutorial question
    5
    0 Votes
    5 Posts
    0 Views
    N
    Ravi Bhavnani wrote: When I clicked the link I realized I'd enter the black hole. Quick, follow me. Come quickly and I won't mention to anyone where you have been. LOL ;P Nick Parker
  • How to intercept chr(13) in datagrid Cell

    csharp database regex help
    2
    0 Votes
    2 Posts
    0 Views
    N
    intibnin wrote: It works correctly, but the problem is when i want to choose one record by pressing an ENTER key (chr(13)),it is not working. Are you trying to press enter in the textbox and have your form post-back to the server? I'm sorry, I didn't understand the question. Nick Parker May your glass be ever full. May the roof over your head be always strong. And may you be in heaven half an hour before the devil knows you’re dead. - Irish Blessing
  • using system icons?

    help tutorial question
    3
    0 Votes
    3 Posts
    0 Views
    S
    I found the program with a search on Google. Thanks very much for the response. -Sean
  • Writing windows services

    question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Scary!

    csharp database question com
    7
    0 Votes
    7 Posts
    0 Views
    L
    :) DBHelper - SQL Stored Procedure Wrapper & Typed DataSet Generator for .NET popularity better now, thank you :)
  • Tiff multipage file

    csharp help
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Flex grid info into Data report

    css
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Why does the process not end?

    question help
    6
    0 Votes
    6 Posts
    0 Views
    F
    Unload frmComSelect works fine. Thanks for the pointer. Cheers, Fredrik "Felix qui potuit rerum cognoscere causas."
  • VB.Net Office Addin

    csharp sysadmin windows-admin workspace
    2
    0 Votes
    2 Posts
    0 Views
    S
    Does anyone have ANY suggestions? I'm getting desparate! Thanks!! -Steve
  • How to draw a graph

    data-structures question tutorial
    8
    0 Votes
    8 Posts
    0 Views
    R
    Here is a great link to a sample that shows you ho to use the MSChart control that comes with VB. Sample Clickety[^] 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.
  • VB array to managed Code, HELP!

    help csharp com data-structures
    2
    0 Votes
    2 Posts
    0 Views
    A
    I figured out what the answer is. To be compatible with COM you should pass the array By Ref instead of By Val(which is the default in .NET).:laugh:
  • cross language question

    csharp c++ oop tutorial question
    2
    0 Votes
    2 Posts
    0 Views
    S
    You can do that easily if you use the C++ managed extensions provided by .NET. Visit the resources here at CodeProject[^] for an introduction to Managed C++. For the most part, after you have a manged assembly it is only a matter of making a reference to it and deriving from it, regardless of the language you want to use. steve
  • Singletons

    help tutorial question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • WebBrowser Control

    question
    2
    0 Votes
    2 Posts
    0 Views
    A
    Hmmm. I have have done this, but did not have any problems. Are you sure the HTML is correct? I also think that each frame is treated as a window, but dont take that to the bank. In other words, I am not sure I understand your problem. If you are trying to open an HTML file that has a tag in it the web browser control should just open it. You may want to make sure your web browser control is big enough to display all of the frames. I don't think I am helping much, but I hope it does.
  • VB.NET - Dial-up

    csharp c++ help workspace
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • VB window disappears.

    com help
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • How to make a graph into a HTML file

    question html data-structures tutorial
    2
    0 Votes
    2 Posts
    0 Views
    C
    Well, if you want to save it as a HTML file, you probably want to use SVG. If you want to display it in a HTML page, save it as a jpg. Christian No offense, but I don't really want to encourage the creation of another VB developer. - Larry Antram 22 Oct 2002 Hey, at least Logo had, at it's inception, a mechanical turtle. VB has always lacked even that... - Shog9 04-09-2002 Again, you can screw up a C/C++ program just as easily as a VB program. OK, maybe not as easily, but it's certainly doable. - Jamie Nordmeyer - 15-Nov-2002
  • line count in files

    csharp question
    2
    0 Votes
    2 Posts
    0 Views
    C
    The filesystem object lets you read a file a line at a time. Christian No offense, but I don't really want to encourage the creation of another VB developer. - Larry Antram 22 Oct 2002 Hey, at least Logo had, at it's inception, a mechanical turtle. VB has always lacked even that... - Shog9 04-09-2002 Again, you can screw up a C/C++ program just as easily as a VB program. OK, maybe not as easily, but it's certainly doable. - Jamie Nordmeyer - 15-Nov-2002
  • MS Project2002 SDK

    help
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • storing html pages in a server from VB application

    html sysadmin question
    2
    0 Votes
    2 Posts
    0 Views
    G
    hi You can have your HTML content in a variable name sTemp. The insert this code where you want to create the HTML page. Here sTargetFolder is the path where the HTML files resides and concat test.html to that path. Then print that sTemp variable then close. Now check your folder. Open sTargetFolder & "test.html" For Output As #1 Print #1, sTemp Close #1 Hope this will help. regards GV