Software Development Network Logo
  • Game Technologies
  • Visual J#
  • Architecture
  • Visual FoxPro
  • Visual Basic
  • Visual C#
  • Windows Forms
  • Visual Studio
  • VS Team System
  • Windows Vista
  • .NET Development
  • SQL Server
  • Windows Live
  • Smart Device
  • Microsoft ISV

Software Development Network >> Visual Basic

Visual Basic

New Question

MS Build to deploy application
Full Text Search in Visual Basic
ArrayTypeMismatchException with generic arrays
Are vbc.exe /nostdlib and <NoStdLib>true</NoStdLib> broke?
VB5: Run-Time Error '380'
Export object properties and attributes to XML
I have a big problem with .NET Framework
PASSING PARAMETERS BETWEEN CLASSES
Looping through files
Code for Find (on This Page) Feature In Webbrowser Menustrip

Top Answerers

Eric Nace
Mark Dawson
Ephraim Shurpin
superfly679
coolio999
Tommy Williams - MSFT
wave702
Mike from Wauwatosa
anilF
jesc
Roby's Programming Tutorial
Only Title

Answer Questions

  • Frank Haymes [VB.NET VS2005] Multicolumn combobox

    Hello, I'm new with VB.net and I've found a code that I use to do a SQL query on ACCESSDB and it return me a datagrid. For Exemple, I do a query on my tbl_person : "SELECT id_person, person_name, person_birthdate FROM tbl_person" After that, I want to show this result in a combox box, but I don't find how to have 3 columns (id, name and birthdate) with the id hidden. Usually, I work with Access forms, but I want learn vb.net. ...Show All

  • Jeff Pigott VB6

    Hi It's been a while since I've done any VB programming, and I need to get back in to it for work purposes. I've quite a bit of experience at VB 6 programming and have lots of code and examples that I need to use again. Is the latest VB development package backwards compatible with VB6 I'm sure all of these questions have already been answered so appologies for that. Thanks John Hi, Please, help me ...Show All

  • ailleresc PropertyGrid refresh and expanding.

    I have a property grid. After using the collection editor I call refresh so that any new objects appear in my grid. It works just fine except for any previously expanded properties are now collapsed. IF I call propertygrid1.expand it expands all of the properties. Is there a way to restore it to it's state before the refresh I don't know what a "PropertyGrid" is. Perhaps you meant to say "Dat ...Show All

  • sonali kedar Creating Apps that don't require .NET Framework

    Hi, I writing a very very simple application in Visual Studio 2005 that I wish to run a on many other machines. The problem is that these machine do not have the .NET framework installed, nor is it really an option to install it. My question is can I create non .net applications in VS 2005 It seems silly that I will have to resort to using an old version of Visual Basic just for something this simple, or am I just misunderstanding the situation. ...Show All

  • Kumona Vb.net

    How to create a textbox during runtime IN VB.NET IS IT POSSIBLE ...Show All

  • Jonathon H. DataGridView Vertical Scroll programaticaly

    How can I programatically control the position of the vertical scroll of a DataGridView I need to keep visible the last row added to a table and showing as the last row at the bottom in the DataGridView control so the user doesn't have to be scrolling down every time to see a new row that has been added. I can see the use of the Offset for the Horizontal Scroll Bar but for the Vertical Scroll bar of the DataGridView it can only be "Ge ...Show All

  • Scott Fisher Microsoft Access 11 automation with vb.net in 2005 beta 2

    Hi, I am trying to build the test application for automating Access as per article ID 317113 but got errors on the following program line: ' Hide Access menu bar: oAccess.CommandBars( "Menu Bar" ).Enabled = False Error 1 Reference required to assembly 'office, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' containing the type 'Microsoft.Office.Core.CommandBars'. Add one to your project. C:\Akerdal\Operatio ...Show All

  • Ify Login in VB app

    Can you help me! I have a SQL Server 2005 with a database on it. I would like to create a login form on a VS 2005 VB app that validates a user's credentials. Thanks guys, Zack Owens I realize your code is psuedo, but it's not VB so much as C. Here's some translation. If UserID = Table.Staff_Info.UserID Then        If Password = Table.Staff_Info.Password Then        &n ...Show All

  • ayacenda Downloadable Search Application (windows) using VB.NET

    Hi- I am working on a downloadable desktop application (windows) using VB.NET which can search for data in a data file. I have used XML as a data file before, are there any other better data file formats available Any help will be highly appreciated. Thanks, Prabhu Thank you, Paul. I will look into these options. Regards, Prabhu Hi, XML is free, but if it gets beyond a particular size, you will have issues. Access or MSDE may ...Show All

  • pmacario VB program needs on computers without VB/excel/office...

      A somewhat beginner question:  If I compile a vb program and move that to another computer and regsrv32 it, what else needs to go to get that program to run   Thanks in adv! VB6 programs need the appropriate runtime files installed also.... vbrun60.exe http://www.microsoft.com/downloads/details.aspx FamilyID=7b9ba261-7a9c-43e7-9117-f673077ffb3c&DisplayLang=en I solved the problem i ...Show All

  • Cabreo Use generic form parameter to open specific form & create new instance.

    Private Sub OpenForm( ByRef myForm As Form)           myForm.MdiParent = Me           myForm.Show() End Sub I need something like (I know this doesn't work): Private Sub OpenForm( ByRef myForm As Form)           myForm = New myForm.GetType()         ...Show All

  • Wizard1027 Random Numbers

       I'm realy green when it comes to programming but I like to think I am learning quickly. However, I cant figure out how to generate a number of random numbers baised on the vailu of a numeric slider. So for example I am generating a number between 1-12 where each point of value for the slider would generate an indiigual number that can all be added to a final total. I would also like to be able to back the slider down to a previ ...Show All

  • KevinJC VB Java Integration`

    I have a natural language parser that's written in Java. I can compile and run it in Eclipse. Does anyone know how to pass words from my VB.net apps and get back the results from the Java app I haven't found a decent NLP fro .net so any help on how to integrate these would be much appreciated. Byron Crowell If you don't already have J#, you can download it http://msdn.microsoft.com/vstudio/express/visualj/ and recompile your natura ...Show All

  • InoS validation woos

    I have an Access backend with a VB.Net 2003 frontend.  In the table, I set an input mask for both the telephone and zipcodes.  I also set them as required fields.  But, when I input in the form, it lets me put anything in the field or leave it blank.  what am I doing wrong No, I have never used expressions and I read the articles and still don't understant. ...Show All

  • RowdyData How can I use mask in datagridview VB2005

    I have datagridview in my VB 2005 application. I set the coulmn format with "dd-MM-yyyy" the problem is: when the user delete the cell contains and try to insert new data, the seperator ( - ) between day, month and year !! How Can I keep those seperators as MaskTextBox way ...Show All

555657585960616263646566676869707172

©2008 Software Development Network

powered by phorum