Software Development Network Logo
  • VS Team System
  • Visual C++
  • Visual FoxPro
  • Windows Forms
  • Visual Basic
  • Visual Studio
  • Windows Vista
  • .NET Development
  • Microsoft ISV
  • Visual C#
  • Visual J#
  • Architecture
  • VS Express Editions
  • Windows Live
  • SQL Server

Software Development Network >> Visual Basic

Visual Basic

New Question

Cannot save my.settings if one of the setting fields is a sortedList
Static Constructors in VB 2005
How to extract treeitems' caption from the treeview control in another application?
DrawRectangle method creates oversize rectangle
Type conversion errors.
Add connection wizard fails with Access database
Copy Local
My.Application.OpenForms does not return MDI child or dialog forms
merging different projects in Vb 2005 Express
How can I create a date control that validates and confirms that the user is entering a valid date

Top Answerers

Ronim5
DonL
caperaven
shureshs
im4nits
Bigguy Graves
jojolimited
Rich MSFT
Alexej
Bijan Javidi
The Ultimate Programming Tutorials Site
Only Title

Answer Questions

  • R. Child Radio Check Options in Menu Strip?

    First off, I'm completely new to the world of Visual Basic. I took a little break from programming for about 20 years :) What a change... and THANK GAWD! I'm trying to keep current in my studies and am using VB.NET 2005 beta 2 at the moment and training with App Dev's VB .NET course... I've got the basics down, nagivation, understanding of objects, properties, etc... but for the life of me, i can't find what i'm looking for... and what I THOUGH ...Show All

  • babu mano Problem in creating setup and package

    Hello , I want to know why couldn't create setup and package for my application. I did my appliacation in VB 6.0, Ms-access 2000 and Crystal reports 8.5. When i am creating setup and package at end this error is occured "Unexpected error number 28 has occured: Out of stack space". Please help me... Sorry these forums are vb.net not vb6. Please try one of the vb newsgroups . Saamy As this is the same q ...Show All

  • Sergio Costa Faria stop watch using vb.net 2005

    how can i create a stop watch using vb.net 2005 i am performing a data extraction job using windows forms and want to display time elapsed on the form. how can i do it Thanks Are you sure you have the Enabled property and the Interval properties of the timer set Set a breakpoint on the tick event to see if you reach the tick event at all. Yes, Enabled property is set to True and Interval property is set to 50. I placed a breakpoi ...Show All

  • Werners how i can get connection string of db on host computer??

    as my code is dependent on the database so whenever i take my code on the different computer, i need to set connection string for it and recompile the project.. can i get this string by using any api.. at run time i don't want to give it string every time when i change pc or database server.. If the database resides on the same computer then nothing should change; unless you change the name of the database, of ...Show All

  • Mrs RP Relase the Fix for Visual Basic Compiler Error &H8013141e&

    Hi all i just want to know when is going to be released the fix for visual basic compiler error &H8013141e&   this is already reported in the microsoft productfeedback site. i think this is a very urgent patch that must be released asap and please do not repond that i should go back to vs.2003 because i have lots of code developed in VS 2005 to framework 2.0 ..   JSB PS: this error pisses me of, i need to res ...Show All

  • fred2k Question in VB.NET database programming

    Hi, I need to know couple of questions in database programming with VB.NET which are listed below: How to locate records In Borland Delphi I do something as: Table.Locate('<Which Field to Find', 'Values to find', []<Options>]); and hope something similar would b there in VB.NET I need to create a Lookup Dialog Form. How can it be done in VB.NET to pass values from one form to antoher Looking forward for your replies. ...Show All

  • Letifix How do I get the system time

    How do i get the system time what are the objects i will use DateTime.Now Thanks ...Show All

  • jsmahesh vb6 to VB.Net upgrading Sub Main() error

    Hi everyone.. thanks for taking a peek on my thread. Im upgrading a VB6 application. On its sub main, after it finishes, keeps jumping to other control on different forms. Is there a way to make my project to still go through code just the way VB6 does Perhaps your easiest solution is to create a form within your main call, and have that form be invisible, and be responsible for creating/calling the other forms as they are needed I'm not ...Show All

  • Ed Noepel Web Browser Popups

    Hello everybody, I have created a successful webbrowser in VB Express Edition 2005, with all controls (back, forward, stop etc..). Yet when a link is clicked which opens a new window on a website, it always opens in internet explorer... how can I prevent this from happening Thankyou Ben im only assuming here so please someone correct me if im wrong but im thinking that this may be because your default browser is internet explorer, try c ...Show All

  • Richard Lyon Database Save Problems using GUID

    Hi all, I have a database table which contains a GUID column. I created a data entry form for that table [drag and drop the datatable on the form]. When I enter all the data and click on "Save", I get the System.Data.NoNullAllowedException was unhandled Basically, the GUID value is not getting generated. However, If I go directly to the SQL exress 2005 table and enter a row, a new GUID is automatically generated. Am I doing anything wro ...Show All

  • Alex Yakushev Error during statement Execute

    I'm migrating an application from VB 6.0/ODBC to VB.NET/ADO.NET. My 'Execute' function behaves differently with each Select statement. I'm not able to figure out where is the error. The error is 'Fill: SelectCommand.Connection property has not been initialized. The code follows: Public Function Execute( ByVal newQuery As String , ByRef stmtHnd As DBSTATEMENT) As Short Dim myCommand As OracleCommand myCommand = ...Show All

  • Dennishx MDI Forms

    I have a problem. I load MDI child forms from the parent form, but when the child form loads I get objects from the parent form being displayed on the child form (Grid Box with command buttons). Does anyone have any idea how to stop this behaviour Thanks. Hi Rudolph Scott, I think your problem is very simple as i understand; there is nothing wrong in your child form. If you have some panel in your c ...Show All

  • nikkah Code snippet to read/write file ratings?

    Does anybody know how to programatically set the "star rating" on a file under Vista Dear Customer, Thanks for your posting. For Vista programming, I think you may try to post in the forum below. http://forums.microsoft.com/MSDN/default.aspx ForumGroupID=24&SiteID=1 Thanks for your understanding! Best regards, Peter Huang ...Show All

  • scotland Parameters in TableAdapters

    In a project done to test some feautures in VB 2005 we create some datasource and a datagridview in order to show data from a simple table using parameters.  Dataset is: Comprobantes, Table is tb_datos and datagridview is comprobantesDataGridView. The code to fill the table adapter is: Me .comprobantesTableAdapter1.FillTemp( Me .Comprobantes.tb_datos, 2005, 1, 8888) Me .comprobantesDataGridView.DataSource = Me .Comprobantes.tb_dat ...Show All

  • Robert Lettan Sub Procedures

    Hi Folks, Can you call one sub procedure (clearButton_Click) and use it on the same form in another sub procedure (clearToolStripMenuItem_Click) without coding it all over again. Thanks.......Eric Alex, yes, this is what worked: Private Sub clearButton_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles clearButton.Click, ClearToolStripMenuItem.Click ...Show All

363738394041424344454647484950515253

©2008 Software Development Network

powered by phorum