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

Software Development Network >> VS Express Editions

VS Express Editions

New Question

Finding Verbs for an Application
Learning Visual Basic express edition
Starter Kit Trouble
"DataBindingNavigatorDeleteItem" click event
Applying the same code to ListBox
It endless read my drive A ?
Starter Kit Trouble
Is The OOP Microsoft.VisualBasic.IIf Equivalent To the Procedural If Then?
yadda yadda for Dummies -- getting data into my VB thang
C# and GDI+

Top Answerers

TenTwenty
stg1
KMeekins
kogkog
Reaper069
JPP
Madman
TCS BAJA
DaveCT
prenders
Renaissance Software
Only Title

Answer Questions

  • ts_nika Unexpected end of file problem

    Im reading a tutorial at cplusplus.com and Ive got this code: #include <iostream> using namespace std; int main() { cout << "Hello world!"; return 0; } And so I go to build and then build solution because im pretty sure thats what you have to do before compiling and I got this: ------ Build started: Project: example2, Configuration: Debug Win32 ------ Compiling... example2.cpp .\example2.cpp(8) : fatal error C10 ...Show All

  • Tarmo Tali no option for C# in visual Web Developer

    When I create a new web site, it is auytomatically created in VB no screen to choose type of component or to select c# as the language. Any ideas will be greatly appreciated. BTW this is Beta 2 To change the language when you start a web site from the Getting started window. you can change it by looking at the bottom left hand side of the popup window next to were it said language you will see a combo box ...Show All

  • ChrisMcV Tiny app consumes lots of RAM

    I just created a small app for my contacts and it uses a small database with one table and single Windows Form. IN the Vb IDE, all I did was a simple drag and drop from the data sources panel onto the form. I let the ide create the controls, on the form, to interact with the database. Other then the binding navigator, no other controls are used. No menus......nothing. I compiled and published the project and installed it on my pc and ran it. ...Show All

  • JarLin VS 2005 and VS 2003 Compatability

    I have VS 2003 and 2005 B2 installed on my system. When I try to use ASP.Net in 2003 I recieve a error message (URL: http://localhost/somename , "HTTP/1.1.500 Internal Server Error) It had worked before but now has stopped. I understand that 2003 + 2005 can function side by side. VS 2005 functions without a problem but I am more versed in VS 2003. Can any one help me figure this problem out so that I can use both versions.    &nbs ...Show All

  • Antonio from Malibu Printing a form

    After following the code found here   to print a Windows Form I now have this Dim memoryImage As Bitmap Private Sub CaptureScreen() Dim myGraphics As Graphics = Me .CreateGraphics() Dim s As Size = Me .Size memoryImage = New Bitmap(s.Width, s.Height, myGraphics) Dim memoryGraphics As Graphics = Graphics.FromImage(memoryImage) memoryGraphics.CopyFromScreen( Me .Location.X, Me .Location.Y, 0, 0, s) End ...Show All

  • mrgilbe1 The 30 day trial begins when??

    Hi, These Express Edition pacakge is for 30 days only Really quite short to familiarize and enjoy using them. When this 30 day trial starts, the day you install them or the day you register Am I right the 30 day starts after you install them for those who have no internet access den2005 no, there is no time limit. These are not trial versions except insofar as some of the more advanced featu ...Show All

  • roy92014 Nested Loops In OOP

    Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim a, b, c As Integer For a = 0 To 1 For b = 0 To 1 For c = 0 To 1 MsgBox( "Fish" ) Next MsgBox( "Dog" ) Next MsgBox( "Cat" ) Next End Sub I Started VBE in Nov/05..... My first OOP Language... I am having extreme Difficulty in Learning OOP.... Would someone please Translate these ...Show All

  • Adam404 error LNK2019: unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartup

    I have already walk through every detail described in this forum but i find this problem keep jumping out in front of me I have installed psdk-x86.exe    added    corewin_express.vsprops   additional dependencies :                     kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advap ...Show All

  • Leon Han help !

    Hi, I've just installed Visual C# 2005 Express Edition, and have now started learning the C# language, I already know C and C++. When I try to start my program with debugging (F5) I get this error: Error while trying to run project: Unable to start debugging.  The binding handel is invalid. Does anyone know how I can fix this You are likely running into this problem  which has a couple poss ...Show All

  • Czar9 CDate function returns 'IndexOutOfRange' error - also in VB.Net 2005 Beta2

    Hi folks, I have already reported this error in the VS 2005 Beta2 forum, but was told that it was not reproducible (VbCity and VBug, and your UK Launch team were also unable to reproduce the problem). I think I now have a lead on the issue! It also looks similar to a problem reported yesterday on the VB Express forum - 'I keep getting the out of range exception'. I have condensed the problem to two lines of code:    &nb ...Show All

  • Nils Nordenbrink Mdiparent and MdiChild - Recommended method?

    Hi... I have a form that is MdiParent with one menuStrip and many other forms that aren't MdiParent. So I need to know which is the best way to associate the on click event on the MdiParent menuStrip item to the other Forms. I tried with show : form2.show() in the on click event... and the form came in, but in window format. Is there any way to do this form appears like a part of the MdiParent form and not like a new form Thanks ...Show All

  • SivaRaja VC++ Express Beta 2 : On other computer..

    Hi. I'm using VC++ Express Beta 2 + PSDK. Created small progmra with Win32API, run it - works. But how to make it run on other computer, were VC++ Express is not installed I saw that VC links msvcp80.dll and msvcr80.dll, witch are in WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50215.4652_x-ww_b7aeacd4. Is it possable to get rid of thease run time librarys Did this work for you It is hard to get far without using the CRT, so it i ...Show All

  • JohnMcKenzie NewLine in a TextBox

    I have a text box on a form that im appending text to. How do i put a new line in. Code: Textbox1.AppendText("blah") I want to put a Return before and make it its own line. You made a mistake in the command. You should use Environment.NewLine instead of Enviroment.NewLine (missing the 'n'). Grtz, Tom. You should actually use Environment.NewLine, just in case your code gets run on a system ...Show All

  • Simon L Using a char variable as an 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 Hi! ...Show All

  • Karthik - MSFT "Failed to add validation event handler because the following error..."

    Failed to add validation event handler because the following error: El indice no es valido. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX) While double clicking on column. Editor shows this: namespace HolaMundo1 { partial class Database1DataSet { partial class CLIENTESDataTable { } } }   Windows XP sp2 in spanish. Visual C# Express 2005 SQL Server Express 2005 Some idea what can I do It seems a bad DLL / OCX / assembly ...Show All

282930313233343536373839404142434445

©2008 Software Development Network

powered by phorum