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

Software Development Network >> VS Express Editions

VS Express Editions

New Question

code prob
Floating point problem
How to Find Child Nodes in a TreeView Control
Need some event that occurs before "BindingSource.CurrentChanged"
VB6 to 2005 Control Arrays
How could I extract data of sound from videos?
Hello, Will someone spell this out, in plain english PLEASE.
auto update the mycode.cs to reflect changes in mycode.cs [Design]
How to connect to msqlServer 2000 ?
Intellisense Elements Missing

Top Answerers

Greg Mandel
SteveTri
Aaron Oneal
cj7wilson
rashe
Jorgen Aker
QldKev
PeterLlwr
David J Oldfield
johnmacdev
xSQL Software
Only Title

Answer Questions

  • Luchoborbo Variable Declaration

      Is this code correct   Enum BAUDRATES  COM_BAUDRATE_9600 = 0 COM_BAUDRATE_19200 = 1 COM_BAUDRATE_38400 = 2 COM_BAUDRATE_57600 = 3 COM_BAUDRATE_115200 = 4 End Enum The code you have is correct.  To be slightly more explicit you may want to add the type of the Enum as in this example: Public Enum BAUDRATES As Integer COM_BAUDRATE_9600 = 0 ...Show All

  • bink142430 Hello I am new here =)

    well, lets see what I can do here. ;) I am currently Playing around with VS 2005.. having.. (dont' know the english word) "Praktikum" ;) And i see - a lot of time has gone since i was playing with VB6 =( ...Show All

  • brian185 Which files and directories do I need to commit to version control (CVS)?

    Hi All I am coming across to VB.NET from VB6 and am wanting to commit my first project into CVS. VB.Net generates a lot of files most of which I suspect are not essential to build my simple stand alone application. I have had a search of the forums and Web but cannot find any information which makes it clear which files I can safely delete form my project. I have deleted the "obj" directory sucessfully but when I del the "bin" ...Show All

  • mblazevic Visual Basic Excel Project

    Ok, I have posted many times on this forum for this subject, but so far I am yet to find the answer I'm looking for. I am trying to create a very simple application with Visual Basic 2005. I have a number of Excel workbooks and simply want them to be opened from a command button within my Visual Basic project. However, I would also like it to meet the following conditions: 1. The application should open on any computer, ie. the probl ...Show All

  • zjm Problem with Excel since loading VS express

    I have a spreadsheet that I have been using for over a year that has a lot of coding behind it using VB. Since I loaded Visual Studio Express the spread sheet throws errors in funny places. For instance now I get an error when I try to add a date to the spread sheet using the Calendar control. The line that throws the error follows: Me.Calendar1.Value = Date (It doesnt like Date) another line that errors is a simple line of code vRow ...Show All

  • TingPalm VB 2005 Express Install / run problem

    I've done both web and *.img installs of VB2005Express on clean installs of XP Pro SP2. I can register fine, but when I try to creat a project, I get an exception error... " The filename, Directory name, or Volume label sntax is incorrect. ( Exception from H_RESULT : 0x8007007B) " That is as far as I can get. What do I need to do Google is not helping so far..... I'm not sure but i know you have to make sure y ...Show All

  • UNOTech Unable to read data from the transport connection:

    hi, i am trying to send email using VB2005 but i am getting this Exception. "System.IO.IOException = {"Unable to read data from the transport connection: net_io_connectionclosed."}" while from same machine i am able to send email with same SMTP server from OutLook Express. what could be the reason hi peoples ; A thank you note for the advise on SMTP setup if followed the post by; Vikram Karumbaiah Pos ...Show All

  • trknssr VB Newbie - Database Application

    I'm a beginner with VB alltogether, and I'm in need of some direction please.  I've worked the VB Data Access samples, but they don't provide me with the information I'm needing. I have a MDB with two tables.  The City Table contains the following columns: ZipCode, CityName, State, Latitude, Longitude The FCC table contains a list of FM Antennas across the United States along with the Latitude and Longitude of each. I want ...Show All

  • simonl1980 Events and the Serial Port

    Dear VB experts I have just started to use VB Express. I realize I am trying to run before I can walk, but I seem to prefer working backwards from a given solution and there appears to be little about the serial port in published information. Coming from VB6, I was hoping to be making more progress than I am. I find the help files all lead me to a point, but never give a complete example. 1. I am trying the create an event generated by ...Show All

  • Tareq Gamal mahmoud Error 1402 & Error 1406 on Installing Visual Web Developer 2005 Express

    Hi: I have problems in trying to install Visual Web Developer 2005 Express. There errors that I kept getting are: a. Error 1402 Could not open key: HKEY_LOCAL_MACHINE\Software\Classes\.wsdl\OpenWithProgids. Verify that you have sufficient access to that key, or contact your support personnel b. Error 1402 Could not open key: \Software\Classes\.wsdl\OpenWithList\VWDExpress.exe. Verify that you have sufficient access to that key, or contact yo ...Show All

  • angelok2 Show me how to copy multiple files, please

    I need to copy everything from one directory to another in VB. I hope that someone can help. My.Computer.FileSystem.CopyDirectory("C:\TestDirectory1", "C:\TestDirectory2", True) ...Show All

  • JayantJose Convert extremely simple VB app to a self-contained exe?

    Is it possible for me to take a one-form, very simple application I wrote in VB and make in completely self-sufficient All the application does is have a couple buttons and a text field. The buttons simply call shell programs on the local machine. Kinda bloated to require a MASSIVE .net 2.0 install for such a simple app... Thanks. hi, no you can't every thing your write in .net need .netframework runnin ...Show All

  • MCAD_Infinity Pausing program execution and program focus

    I am working on reader application under Windows Mobile 5. I have yet to find any real referances and I am new to C# and .NET, and windows programming in general. Two things I need to do, pause the display of text while the user reads, and then advance to the next block of text after a brief pause. I know I could use a loop to do this, but I don't want to tie up the processor. I am sure there is some .NET 'thing' that does this, but I will ...Show All

  • Greg Schroder Using "OpenFileDialog"

    I'm trying to open a window to allow a user to open a file. I'm using Visual C++ 2005 Express. I have no problems doing this in Visual 6.0 or Visual 2003. The problem is with the DialogResult enummeration. Here is the sample code from the help files: private: void button1_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ ) { Stream^ myStream; OpenFileDialog^ openFileDialog1 = gcnew OpenFileDialog; openFileDialog1-> ...Show All

  • polonius How to open, read, write, edit & close a XML document

    I'm having difficulty finding a source that describes how to open, read, write, edit & close a XML document. I am attempting to develop a Windows application in VB Express and the XML file is stored locally. Here is a fragment of the XML file. <Bowlers> <Bowler> <ID>1</ID> <lName>Williams</lName> <fName>Glenn</fName> <totPins>6386</totPins> <totGames>56</ ...Show All

697071727374757677787980818283848586

©2008 Software Development Network

powered by phorum