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

Software Development Network >> VS Express Editions

VS Express Editions

New Question

Problem Publishing
Registration links leading to "Page cannot be displayed"... help!!
need SerialPort control code example
Windows service application in Visual C# Express
Accessing Oracle databases in Visual C# .Net Express
Convert a VS.net 2005 csproj file so VS.net 2002 recognizes it?
Distributing a multi-user application
Problem porting a Visual C++ 6 application to Visual C++ 2005
How to Refresh the form?
Debugging services

Top Answerers

aserbert
RBone
Codewarrior3
johnof
Muhammad Ismael
mizatch
Twitchy
jswilson
Rob Hall
Thaedrys
Mr.Webmaster:
Only Title

Answer Questions

  • TimHa sql installation hanging

    Please can someone help me.  I tried to install the web development, and ticked all the boxes.  Vis.web.dev. and msdn installed ok (apparently) but the SQL Server 2005 express is stuck.  According to the website this can happen and one should wait ten minutes.  I've been waiting about two hours!  I tried "Cancel" but it said it would finish setting up what it was on!  What the hell do I do now. Jess ...Show All

  • DonTheWriter MSFT BalloonTip

    Can someone please explain to me why no matter what value I set the timeout value to for the BalloonTip of a NotificationIcon in my project, it always shows for the same length of time Below is the line of code to call the BalloonTip: nfyNotify.ShowBalloonTip(1000, "SubSelect Watchdog" , _ "SubSelect watchdog will remain in the notification " & vbCrLf & _ ...Show All

  • bl4ckprint How to use 101 samples

    I downloaded 101 samples of visual studio 2005, but there is no project or solution for me to open by visual studio 2005, who knows how to use the 101 samples. thanks. You have posted this question in C# General also, i have replied there. Find this thread here: How to use 101 samples of Visual Studio 2005 . I will close this one. ...Show All

  • Doru Roman Repost on problem with debugger reporting wrong values

    Saturday I posted a question about problems I was having with VC++ 2005 Express debugger. The thread I started has disappeared but the debugger problems have not. So I'm re-posting. The debugger is intermittantly showing wrong values for variables and faining to single step correctly through code. For example: in main: bool x = true; someFunc(x); void someFunc(bool x) { if(x) do A do B, etc. Inside someFunc, the debugger shows the ...Show All

  • Jared Morrison Using a char variable in a array position

    Is it possible to use a char variable to point to a position in an array For Example, <code> char position; std::cin >> position; char array[] = { 'A', 'B', 'C', 'D' }; std::cout << array[ position ]; </code> I think I understand why it doesn't work. Its because a number in a char is not the same number, i.e. '1' = 49, '2' = 50, but is it possible to convert it to an integer I am not qui ...Show All

  • Lexin Shan ListView sorting question

    Hi I have a ListView control called HSlist on a form which has 3 columns. The adding data seems to work OK, but the sorting is weird to say the least. Initially, I thought that the list would be sorted on the contents in the first column, so I added to the ListView with the Item containing the data that I wanted the list to be sorted on (numerical). Then I found that the list was being sorted on the second column (strings), so I swapped th ...Show All

  • newbnet Intellisense Does "See" all Forms Controls And Procedures

    Hello All, I am having a bit of a problem here and I can't seem to figure out how to fix it. Hopefully someone out there will be able to shed some light on what is going on and how to fix the problem. I have a two project solution file. Project one is a Win Forms EXE and contains all the forms used by the application. Project two is a Class Library. The class modules are organized to form an Object Model. The model's layers, properties and ...Show All

  • H.Saber Copying files from a directory

    I want to copy files from specified directory to another target directory, but only those files, that has been changed since specified date. If the first directory has subdirectories, I want to copy files from them too. Can anyone tell me how to achieve this goal.;o). Is it possible, the structure of directories and subdirectories in the target directory to be the same as this in source directory I have a similar project. I am tryin ...Show All

  • Fernando Velásquez Debug- Setting a watch

    Simply put, how do I do it Every piece of debugging software I've used so far has some way to place watches, including VB6 (which my school uses)... but I can't find how to do it in this IDE :( Please, help is appreciated so I can get back to work on my (A level) coursework (I imported it from a VB6 project and now it's been changed so that it no longer works- which is the main reason that I need the watch in the first place)... EDIT: Oh, ...Show All

  • dannycaro Converting a String to a Number

    Does anyone know of a way that I can convert a string word, ie. "seven" to the number representing that number, ie. 7 I thought about using a Generic Dictionary, and load up all the keys with the actual word, and have the value as the number, but that still doesn't solve my problem 100%. I really just need a converter to do all of this. This is probably a long shot, but I figured this would be the best place to look if it ...Show All

  • DerekM MFC in Visual C++ Beta 2?

    Will MFC be packaged in the upcoming Visual C++ 2005 beta 2 MFC was part of Beta 1 and will be part of Beta 2 and the final release for the Visual C++ Standard, Pro and higher editions. The scope of the Visulal C++ Express Edition is: 1) Standard C++ development 2) .NET development using C++ 3) Win32 development using the APIs directly (after downloading the Platform SDK) Development using MFC or ATL is not a ...Show All

  • John Jeffers Controlling the Serial Port

    Hello! I want to control the serial port and have converted some code over that i was using but got all kind of errors. Does Visual Basic Express deal with Mscomm1 the same as VB6 I tried to find some code to help see any difference but was unable to find such. Is there any code out there that i am not finding that allows me to crontrol the serial port Thanks, Kevin The .NET framework provides the SerialPort class: http ...Show All

  • sohamraj Is it possible to shell an application seamlessly?

    I need to be able to run an application such as notepad or calc in the same way that I can start a browser inside my VB app ie. make the spawned program appear to be just another window in my program. Has anyone done this before He plainly posted: I need to be able to run an application such as notepad or calc in the same way that I can start a browser inside my VB app ie. make the spawned program appear to ...Show All

  • Waseem Aslam Help a Beginner

    I cannot understand why the following code does not show label1.text until the copy has comleted. It then shows label1.tex t= "All Copied" I am expecting "Please wait" until the copy is complete. Any help appreciated Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim pathtobackup As String Dim datenow As String Label ...Show All

  • kikoBYTES Stored Procedure in SQL Server 2005

    Anyone, Can we create a stored procedure in SQL Server 2005 just like we do in SQL Server 2000 I know that we can create a stored procedure in Visual Studio.Net with C# or Visual Basic.Net. They call it CLR based-class stored procedure. Just wonder whether we can write a "simple" procedure without go through C# code. Thanks, Thuyen Hi, Yes you can. Database ---Programmability ------Stored Procedures ...Show All

161718192021222324252627282930313233

©2008 Software Development Network

powered by phorum