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

Software Development Network >> VS Express Editions

VS Express Editions

New Question

VB Express - Publishing Help Needed
Visual C# 2005 Express Edition large download size 480 MB for 56k modem
SQL 2005 .NET 2.0 and C# 2005 Express
Functionality missing from Visual C# express beta2?
Error Message When Running .Exe Files
problem with getting correct info from MSNdis_80211_DataRates
Updating a form from a serialport component.
Remote Control for T.V.
Locking Data in Combo Box
newbie to c++

Top Answerers

Stanislav D
JFlash
Prabhu Sadasivam
coolbiker
Adrian Accinelli
paulinmadison
wpf michelle
JoDask
LarryA
Worrior
Topix: Alan Jackson
Only Title

Answer Questions

  • Sunil Pillappa preventing thread from abort at specfic stage

    i am creating a thread that will do some work and then enter those info in database. use can abort that thread but i want to prevent that thread won't abort when it is inserting some thing in database, instead it will abort after that Well, your UI thread is going to abort the worker thread, so it sounds like you need a way of checking first if a database operation is taking place, perhaps a mutex or something like that Surely a databa ...Show All

  • Arno Horlings How do I change the print margins?

    Visual Basic 2005 Express Edition: My application needs to print out a page.. How do I change the margins Which margins are you actually talking about You can't change the printers 'hard' margins. You can set the margins of the page prior to printing using the defaultpagesettings of the printer object. However, none of this actually prevents you from (attempting) printing outside the margins, and ...Show All

  • Isabel_v How do I host my VWD website? Do I have to use Micorsoft's server software like SQL Server 2005?

    How do I host my VWD website   Do I have to use Micorsoft's server software like SQL Server 2005 Are there any other options available to me Michael   Scott Currie MSFT wrote: One option is to use the fee 30-day trial hosting available here: http://www.vwdhosting.net/ You can try http://www.AspSpider.NET . It is a free ASP.NET 2.0 webhosting service with SQL Server 2005 Express support . ...Show All

  • Rajni Roopchandani Upgrade to Visual Studio Full

    I am eagerly waiting for my Visual Studio copy to come in from academicsuperstore.com. Is it possible to install Visual C# express for a couple weeks and then remove it and install the Full Visual Studio package without any sideffects     Thanks! Yep there should be no problems. They can even be installed on the same PC at the same time (not that you would wan ...Show All

  • Jun Fang BindingSource.Filter Problem Part 2

    Sorry for reposting this, but my new question was burried within the thread of my previous post and I wanted people to get a fresh look at my problem. I have a form with a DataGridView with multiple columns. I have another form that pops up to give the user options of filtering the data in the DataGridView form. I have several ComboBoxes bound to tables that contain the data available in a certain column in which the user can select items fr ...Show All

  • Breakgate Decompile Prevention.

    Do you know if any ways to prevent my executables from being decompiled Are you sure Some of you said to use C++ to prevent people decompiling work.. is C++ a better language to use (even though its harder to learn). Do you think I should learn C++ instead of VB (also what's the difference between c++ and c# ). And here's one - I think it's pretty clever, actually. http://www.aisto.com/roeder ...Show All

  • calabonga "Unable to cast COM object of type 'System.__ComObject'

    I get this error when trying to create a new data source in Visual Studio 2005 Express and SQL Server 2005 Express. Does anyone know how to fix this "Unable to cast COM object of type 'System.__ComObject' to interface type 'Microsoft.VisualStudio.OLE.Interop.IServiceProvider'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{6D5140C1-7436-11CE-8034-00AA006009FA}' failed du ...Show All

  • kayfish How To Create Multiple Lines Within A Message Box

    How do you create multiple lines within a message box when combining a string with variable values I know... it would probably be easier to just create a seperate form and load the form.... just wondering if it was possible to not have to do such though. What if the data that is to appear on the next line is - lets say - the value of an array. I'll explain my question. What if I want to display a list of values which the user entered ...Show All

  • Dinesh Kulkarni 'System.EventArgs' is a 'type' but is used like a 'variable'

    Whats wrong with my code below Can you correct it private void txtusername_TextChanged( object sender, EventArgs e) { if (EventArgs (e) == Keys .Enter) this .txtpassword.Focus(); } } Try the KeyPressed Event and it will work fine. private void txtusername_KeyPress( object sender, System.Windows.Forms.KeyPressEventArgs e) { if (e.KeyChar == ( char )Keys.Enter) { Console.Write("a&q ...Show All

  • Matias Toro Place a spreadsheet on a page

    I want to place a simple spreadsheet on a web page. How to do that step by step Can someone help me Thanks I am using VWD 2005 express and have sql 2005 in the hosting server but can't add table or modify table using the VWD. JCH Hi! The best place for asking ASP.NET questions is on the ASP.NET community site, and in the forums there. Check out http://www.asp.net/welcome.aspx tabindex=1&tabid=39 . HTH, PEte ...Show All

  • BillWenmingSun setup hangs at 100% CPU

    Downloaded the img VWD Express edition and burnt on a CD. It has no problem installing onto a Windows 2000 Pro Computer. But using the same CD, when I tried to install on a Windows XP Pro labtop, it hangs at 100% CPU right after double clicking setup.exe. No popup window was displayed. It has hanging problem when installing .NET Framework 2.0 at regsvcs.exe. The laptop had VS2003, .NET Framework 1.1 installed and working fine ...Show All

  • Michael Mclaughlin VC++E Forms Designer Hell

    Hello all, while working on a form in my project i got the following error: One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may require code changes. Either VCProject or VCCodeModel is not ready yet. Please close designer and try again. Hide      at Microsoft.VisualC.CppCodeP ...Show All

  • befstrat runtime error

    I also get this error don't have google tool bar or McAfee Micorsoft Visual C++Runtime Library Program:C:\Programs Files\Internet Explorer\iexplore.exe This application has requested the Runtime to terminate it in an unusual way. Please contact the application support team for mor info. PPPPPlease Help I have not been on my computer for a while and don't remember downloading anything or installi ...Show All

  • net2020 Importing a form into a project

    Hello Friends, I created an application in Visual Basic with Visual Studio 2005 beta. That product is no longer alive. I want to be able to run that application in VB Express. It was apparently not in a project in the beta, or at least VB Express does not recognize that it was. I can copy and paste the code into a VB Express project, but I don't see how to import the form itself. What should I do moontube ...Show All

  • cdolo Visual Basic 2005 Express

    Hi I can't create a new project in Visual Basic 2005 Express Edition ! ! The error message "The filename, directory name, or volume label syntax is incorrect. (Exception from HRESULT: 0x8007007B)" appears.... Does any know how to rectify the problem. Thanks!! Hi, I was looking at this article yesterday but didn't quite understand it. I'm new to this stuff..... I helped build a databas ...Show All

98990123456789101112131415

©2008 Software Development Network

powered by phorum