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

Software Development Network >> VS Express Editions

VS Express Editions

New Question

A few things
Developing INTRANET MESSENGER
Long Loop behind Button causing problems (newbie question)
VB 2005 Asynchronous sockets help
thanks
VS C# Express hangs during install
How do I make a directory browser?
RSS News
How do I get my free e-books?
BUG:???? Two ComboBoxes on one form won't allow debug

Top Answerers

_LorenzoSJB_
AgedBOY
Natiq
duke63
Sandro K
fgalal
cbaldo1
Jaans
dustinto
lucone
瓒e懗銇甐isual Basic
Only Title

Answer Questions

  • Ahmed Mostafa How to filter the items in a listbox depending on the selected item in a combobox.

    Hi, I have a combobox bound to a Section table and a listbox bound to a Department table. The listbox has to display the departments agreing with the Section selected. I tried this: Private Sub SectionComboBox_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SectionComboBox.SelectedIndexChanged DepartmentBindingSource.Filter = "SectionID=" & SectionComboBox.SelectedValue End Sub but it ...Show All

  • swapnil katare how getting the benefits?

    Hi:) In the mail of "Thank you for registering Visual C# 2005 Express Edition", there was written the following statement: "Accessing your registration benefits is easy. Simply go to the Registration Benefit Portal for further instructions." But whem I'm clicking che link, it's said to me: The Microsoft Passport Network is unavailable from this site for one of the following reasons: Why how can I go on Thanks everybody! ...Show All

  • zahnej Error message "non-generic method" using ObjectDataSource and GridView

    Here is my process: (all with visual web developer 2005 Express, April version.) 1.  create new dataset in the app_code folder, called interaction.xsd.  (right-click on the app_code directory and select new...) a.  Step through the TableAdapter Configuration Wizard. b.  Select the data connection (ManagementConnection String (Web.config) c.  Create new stored procedures d.  sql statement "SELECT Interaction.* FROM I ...Show All

  • Martina23809 Debugging a project

    Is it possible to activate JIT on the Express development platform It is time consuming to debug by running the .exe When the execution is halted by a so called fatal error, I think that the help could be better. The explanation is extremely technical; I just want to know what Basic line to correct and why in plain English. Example: Form.KeyDown event. Try forgetting writing e.Handled = True and see what you get of help. Help You are more confu ...Show All

  • robcw How to create a code when I open OpenFileDialog

    I've been working on Visual C# Windows Application. My  project includes Team Name, City, State, and Players FirstName, LastName, and Age. Then, I create the OpenFileDialog, and SaveFileDialog to read and write into the file. When I enter those information to the textBoxes then click Add Player button to put on many players for each team.  I also create "Teams" in the menuStip. My next step is; how I can cod ...Show All

  • Andreas - Moe How can I access variables between forms

    Hello everyone, I have two forms and would like to assign the value of a variable (receive) from form1 to a variable (count) on form2. Does anyone have an example they can post. Thanks, Ken hi, Is your problem solved If yes then please mark the reply as answer. Thank you, Bhanu. Thats not even VB Code - its C#. The code underneath is a much simpler VB example. ...Show All

  • BillS How do I view Console.Writeline?

      I'm rather new to programming. I've read two VB Express books and everything that I could find concerning Console.Writeline, and yet I still cannot figure out how to view what I write to it. When I use Debug.Writeline, I can view what I write to it in the "Immediate" window. I guessed that I should be able to view Console.Writeline in the "Output" window. Is that correct I tried things like the example below, and nothing ...Show All

  • LostGamer GDI+ Mapping Question

    I would like to map world coordinates to device coordinates, but I'm a little unsure on how to do it. Suppose I have world extents of (100,100 - 1000,1000) and device extents of (20,20 - 300,300). Page extents are in pixels and identical to device extents. Can someone give me a clue on how to do this. Thanks You can do positive Y up with a transform... did you think there was no way to do that in .NET w ...Show All

  • Javier Becerril C# Loop thru a Listbox

    Just started knocking around in C#. For the life of me (no pun intended)....I cannot convert this from VB: for i = 0 to List1.listcount - 1 MsgBox (List1.List(i)) next Believe me.....I have tried every logical possibility....this is pretty scary, from what I've read the syntax diffs between VB.Net/VB and C#....are not really that different. for (int i = 0; i < 5; i++) MessageBox.Show(listbox1. for ( int i = 0; i < ...Show All

  • Bill DiPierre MFC in Visual C++ Beta 2?

    Will MFC be packaged in the upcoming Visual C++ 2005 beta 2 Is there any new feature in next version of MFC I think i like vc 6.0 best, ha.. I wish ms will release some new updates for it.. 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) Stan ...Show All

  • Charl Herholdt 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

  • C03N ClickOnce Problems

    I have a small windows test application that I'm attempting to deploy. I can deploy it to my hard drive, transfer it to a memory stick, and successfully install it on another computer. I can deploy it to a website, when the website opens and I click on Run or Install (depending on the type of deployment) a new webpage, myTestApp.application, is displayed. The page is an XML file. That is as far as the deployment goes! There are no error messages ...Show All

  • rotest Error while creating Excel object

    Hi All, I am getting error while creating Excel object when running the application from a shered network drive. It is working fine when running from local. These are the codes. Private ExcelObj As Excel.Application ExcelObj = New Excel.Application() --- getting exception at this line. This is the error message: System.UnauthorizedAccessException: Retrieving the COM class factory for component with CLSID {00024500-0000-0000- ...Show All

  • loris capture Control-Enter keystroke

    In one of my programs I use e.KeyCode = Keys.Enter to tell when the Enter key is pressed while the focus is on a textbox.  I want to be able to capture when ControlEnter is pressed.  In the IntelliSense picker there is an option for CTRL modifier, but nothing for CtrlEnter.  So how do I combine the two to capture a ControlEnter keystroke   I tried e.KeyCode = Keys.Control + Keys.Enter but that doesn't work.  Thanks. ...Show All

  • adi Build a Program Now! E-Book Question

    Hey there, I just started using Visual Basic and I was wondering about that E-book. I went to the registration benefits and was told I can't register because I am not 16. Is there any way for a 15 year old to get a copy of the E-book I'm not really understanding what you mean, Dave... . Two, options: Get your parent to register and get it. Wait until you are 16. I have an original hard cop ...Show All

646566676869707172737475767778798081

©2008 Software Development Network

powered by phorum