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

Software Development Network >> VS Express Editions

VS Express Editions

New Question

Timout when creating a database (mdf file) in VB EE
ToolStripMenuItem1.Click makes bgcolor change
control.visible
Problem on Sorting Strings
Problem building MediaShare Messenger Starter Kit
Add-in for IDE
Starter Kits for SQL Server Express?
MDI Taskbar?
How do I get different colors of text in a RichTextBox?
Let's go to work on an FAQ for this Forum

Top Answerers

Javier Becerril
Sohail2006
Ackworth
Herback
Mongrel
viniciusweb
RonO
blueray
2005User
Karlo47
PW Systems
Only Title

Answer Questions

  • Immo Landwerth Build Form Application From Scratch

    I'm trying to create a form application from scratch and I have some questions: 1. Do I create an "Empty CLR project" or an "Empty Projet" from the "General" tab of the Create New Project dialog I've tried both. 2. namespace System is not recognized and I've try to add references under the Project>>Properties dialog, but none show up to choose. What am I doing incorrectly Please advise and thanks in advance.  ...Show All

  • pouncer Displaying Data from a Access spreadsheet on a form

    I want to display data from a spreadsheet on a form in a more attractive way than just using the "datagrid". Is there a way I can possibly have the information displayed in a different way Can anyone point me in the right direction (I would like to be able to display the information in a window with a scroll bar if possible) Thanks. Eric can you give us more details about the problem, oth ...Show All

  • mizd Developed with Visual Studio 2005 Express

    I want to do my thesis project with visual web developer express, the project is for the university, Can I do that , The university would been used the software that I realize, Can I develop a software for the university without license or do a pay for the tool The express editions are a tool over a free product as in using it, the .NET framework SDK. When you have finished developing you do not actuall ...Show All

  • Robert Hemmings Installation problem with 2.0 Beta

    I had previous .Net Framework 2.0 beta 1 installed and followed instruction of beta 2 installation from http://lab.msdn.microsoft.com/vs2005/uninstall/ But, I keep getting error message Microsoft .NET Framework 2.0 Beta 2 Setup has stopped because item listed above could not be downloaded And I followed trouble shooting from instruction below. Then I still get same problem. Any idea Eddie Thank you, I will try this. Eddie I would r ...Show All

  • Edward Son Simple Question for a Simple Program

    I have developed a Counter form that once you click start, it just counts up until you press the stop button. I have aslo in included a third button that is supposed to reset the counter back to Zero. I don't know how to reset the counter back to 0. Here is the code. I belive the code should be written under Button 3 That's the reset button. I dont' know what code to put there. Can anyone help me out Public Class Form1 Dim ...Show All

  • MKelly USBs, COM ports ...

    How do I get my program to receive a binary file from a external device, analyze (compare) that binary and react to it. Can I get some help (in VB) about the code that I should use. I'd prefer COM ports but USBs would work. I know how the comparing should look like but I don't know how to store that data and get it! Any help I apologize. That looks like an incredibly fun web site. However, you probably need ...Show All

  • alexrjs Desperate..unable to connect to sql2000

    Hi, I am able to connect to sql 2000 from vs2003.But,now I am using c# express..but it is giving me very strange error.. An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) ...Show All

  • rranft Put data from form into table

    Greetings, I'm trying to take data from form fields (textbox) and store it in a table database and getting nowhere. I can load the data from the table database into the form fields but I also want to do the opposite. I want to enter text into the DataSet textbox fields and then add this data to the database. Can you tell where to find out how to do this Thanks   hi, first of ...Show All

  • Pat Kaeowichien sql command with two variables

    Hi, I'm using vb express and sql express. I have created a sql command as SELECT Name, Code From Table1 WHERE @filtoption = @filtvalue ; I'm writing this commandin visual studio express as a tableadapter option. When i try to call Me.Table1TableAdapter.Fillbyx (me.mydataset.Table1,ID,1) it fails and does not return any value even if there are such row(s). But when i write my own tableadapter not the vs creat ...Show All

  • zakHurst Using multiple data bound items

    Hello! Im very new to programing in VB. I have a database with info about some persons. I've managed to let the user select the name from the listbox and other info apeears on the form. Now I want to build in a search. I want to let the user to select gander, hair color, eyecolor etc. But if i use data bound items on gander I get gander info of every person (of course :P). So how to get in the gander combo box only 2 options (male/female) and ge ...Show All

  • zerodevice Question

    Sorry for the pathetic title, anyway, I recently downloaded the new version of Visual C++ Express. I've gotten use to the interface, and I'm impressed that Microsoft has released such an amazing product for free. I'm new to C++ programming, so I work with the win32 program type. This is some sample code of mine: #include <iostream> using namespace std; int main() {     int number=3;         co ...Show All

  • PowerPoster How to set traffic priorities?

    Tell please! How it is possible to establish a priority on the traffic on this or that process or a thread hi, net work trafic is complelty different issue , as what SJ said you can't do that from vb but you can query that from your devices there is a network protocol for that called SNMP Simple Network Management Protocol Is used to query and control network devices from a central management station, you ...Show All

  • rranft Converting String to Double or Int

    I am working on creating a program that calculates the area of a rectangle. The program has two textboxes and a button. When the button is pressed, I need to convert the strings to numbers according to type (ie if it's a double, i need it to be a double...integer to int) In my class file, I have three constructors 1. Takes two integers <-returns integer 2. Takes two doubles <-returns double 3. Takes an integer and a double <- returns do ...Show All

  • Mike Jay ComboBox Dropdown problem

    Hi I have a SQL ststement which I run as a SQLCommand and retrieve records to a dataset. I go through the records and add all the WorkOrderId's to the dropdown for the ComboBox. There are 10,000 WorkOrderID's, while it is trying to add the IDs to the dropdown list, the program freezes. The list adds after a while, but on clicking the combobox the takes a while to display the dropdown list. The SQL statement is String sSQL = "SELE ...Show All

  • chuckdfoster String transfer

    I know that many have asked this question, but as i searched i just couldn't get answer to this so i'm asking it in my own thread. I have two forms, in form1 i have a textbox where certain person should enter his/her name, what i want is that the name that certain person entered is transfered into form2 so i could use that name in form2 to be shown in the MessageBox. One other thing, how can i transfer integer from form to form, so if i ha ...Show All

373839404142434445464748495051525354

©2008 Software Development Network

powered by phorum