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

Software Development Network >> VS Express Editions

VS Express Editions

New Question

e.graphics in wrong area.
long interval between StreamReader/StreamWriter processes
Why this limitation in C#express
What now? - x86
Hide property disables list boxes
Hierarchy and definition list problems.
Two questions about ListBox
Getting the ID from a newly entered record
Error LNK 2019 and LNK1120 with VC++ 2005 Express
Platform SDK install problems

Top Answerers

Nate Stewart
bpsmicro
saurabhdotnet
Alexandre SAC
Mohammed Ghouse Barq
Dave_Novak
tomas77777
Thomas Greenleaf
allkesh
thuja
DataDirect Connect ODBC
Only Title

Answer Questions

  • skidoo Problem in installing VWD Express 2005

    Hai, I have downloaded image file for  VWD Express 2005. I have followed the procedure for manual installation and used ISOBuster 1.8. Windows Installer and .NET 2.0 are installed properly. But while installing  Visual Web Developer it is displaying a message as follows: --- Error 1335 : The cabinet file VNSSetu1.cab required for this installation is corrupt and cannot be used.  ... ---- I tried to find that file but tha ...Show All

  • Ehr Random Assortment

    How do you randomly assort a string of values This is to virtually "shuffle" cards. Modderman - There are many ways to virtually "shuffle".  Here is one simple example in C#: static void Shuffle( string [] items, int numTimesToShuffle) { // Create a random number generator Random random = new Random ();   // Loop over the array swapping random elements for ( int i = 0; i < n ...Show All

  • Jeff Bogdan can i use the Express Edition to control msWord or msExcel?

    hi if i use the Express edition version can i call the Word application and then edit the content or update the bookmark i know the Visual Studio Tools For Office can handle this. Right please reply. THANK YOU i try it already in the trail express edition, but it is not success. when i using the vb6.0, i can use Dim wddapp As Excel.Application Dim wddoc As Excel.Workbook Dim wd As Excel.Worksheet wddapp = CreateOb ...Show All

  • Amr Ouf ListView Control

    Help Me!! LOL. I can't figure out this darn control. Item and then SubItems. List View Control. Thanks alot. Andreas Johansson wrote: You need to add the subitems to the item object. Here is some code that should work. Dim lvi as ListViewItem = ListView1.Items.Add("First item") lvi.SubItems.Add("First subitem") lvi.SubItems.Add("Second subitem") lvi = ListView1.Items.Add("Second item") ...Show All

  • PanBocian XML Documentation

    I have just finished a project in beta 2005 of VS.  I have generated the XML Documentation file, which is obviously not very readable.  I have tried using NDoc to compile it, but this does not cope well with generics or inface .NET v2.x. Are there any programs that will compile this into a nice format Cheers, Chris I heard very useful information that Microsoft will provide alterna ...Show All

  • shivaraj Proper install of Express C#, SQL, ASP. 2005

    I have .NET Academic 2003 installed on my pc. I want to install a version of SQL, C#, and ASP. What is the best approach so that C# 2003 can work with SQL What is the best approach so that this all works   Regards,   Reformat more then once!!! You should be able to install any and all of them at any time with no problems.  I'd personally probably do SQL first, then the VS versions. ...Show All

  • Labutin Replace "

    I'm trying to get hyperlinks out of an HTML page and i need to be able to remove " from the string but obviously when i type string.replace(""") it has an error. Now I assume theres some sort of substitute that I can put in just not sure what it is. Wondering if anybody can help me out. Cheers Nick Dancer String.Replace (chr(34),"") ok tha ...Show All

  • Ricky Wen - MSFT Use some subs more then once

    Hello Can anyone tell me how to use a sub more then once How I can call the sub in more then once. For instance: If blabla = "blabla" then (opensub command) end if private sub ........... end sub I need to know how to define the sub and how to call it. Bye and thanks in advance. Hello...here's the basics. I've created a simply sub called DoSomething and h ...Show All

  • msdnmember Opening another form from a form.

    i've just started to learn C++, i want to open a form from a form, can someone tell me the code to do it thanks. Assuming the parent form is called Form1 and the child form is called Form2. These two lines should give you what you need (from http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=179898&SiteID=1 ): Form2 childFrm = Form2(); childFrm.ShowDialog(this);   ...Show All

  • Dinalli listbox

    I need to first of all find the number of items in a list box. Then I have to select one of them in the code with a random function which I can do but I need to know how to get one selected. then I need to get the one that is selected and print it in a textbox on the screen. As well I need to have it so that when someone enters a swear word into the textbox that it can find the swear word and then replace with with a different word eg. *** as ...Show All

  • futureadmin Need setup help for C++ Express HELP!

    Definitely am requesting some assistance here. I downloaded the iso file and also downloaded Isobuster 1.9 to extract it. I followed the instructions off of Microsoft's downloading page but I cannot open my "setup.exe" file. When I run that file, an error window pops-up and says "Cannot initialize resources" I don't know what has happened and would appreciate any info I can get. Thanks You may email me directly at cbmasterski ...Show All

  • Dugan Porter - Microsoft Problem Installing C# Express Beta 2

    I've had C# Express beta 1 installed for a long time.  When I noticed the February 2005 CTP of Avalon and Indigo was released to the public, I downloaded it and the Beta 2 of C# Express (IExpress Setup 2.0.50215.44).   C# installed without any problems, but it installed a version too high for the Avalon CTP.   I tried forcing the install of the Avalon CTP, which installed but never actually worked.   I wanted to use the CTP, ...Show All

  • DarkNoir Trouble with ComboBox and DataSet

    Hi again, I'm having lots of trouble trying to get a ComboBox SelectedValueChange to work. I have a DataSet with 41 TextBoxes. I am locking the TextBoxes that contain text. When I select a different ID from the ComboBox, I want the TextBoxes to unlock if they have no text. They will unlock but I have to click on the ID twice. I'm using this code on the ComboBox: I have the DataSet ID bound to the ComboBox. I have a DataGr ...Show All

  • Dave of SJNB Express Edition Release Candidates

    Hello Will there be any Visual Studio Express Edition Release Candidates and when will they be available Also if you could make them available to the general public not just subscribers that would be great. thanks Jason D. Are you sure the it was a Release Candidate of the Express Builds    What was the Build number. If so, the person who put up the link may have realized that this wasnt a good idea as Microsoft were not puttin ...Show All

  • T-boy Users in SQL Express server

    This is my connection routine for an SQL Express database I'm using with ASP.NET and C#         connectionString = "server=.\\SQLExpress;uid=sa;pwd=;database=cartridge;" +         "Integrated Security=True;";         connection = new SqlConnection(connectionString);         connection.Open(); When I run ...Show All

484950515253545556575859606162636465

©2008 Software Development Network

powered by phorum