Software Development Network Logo
  • VS Team System
  • Smart Devicet
  • Audio and Video
  • .NET Development
  • Visual FoxPro
  • SQL Server
  • Visual Studio
  • Game Technologies
  • SharePoint Products
  • IE Development
  • Windows Forms
  • Microsoft ISV
  • Windows Vista
  • Visual C#
  • Visual C++

Software Development Network >> VS Team System

VS Team System

New Question

Colours
How can I gather a string of items selected in a CheckedListBox to print?
Reading a web page...
Must be non-Negative and less than the size of the collection
Use Multi-SqlDataReader to retrive data from multi-table
certification
Listbox1 dagdrop to Listbox2 & reorder items
how can i remove files from my drive
How I..............
Parameterize?

Top Answerers

n1c-
Sailu
su45937
LonestarF1
cablehead
PedroCGD
Yones
fReShJiViN
Hedgeh0g
PCSQL66
Xcess-Team Martin Harrer
Only Title

Answer Questions

  • jitendra badkas Program display

    How do I get my program to display forms properly on any resolution (Example: Windows will display properly regardless of the screen resolution of the computer that it is loaded onto. ) When I open forms on any computer other than the one I wrote the program on, the right half of the form does not show. It is almost as if the form is larger than the screen, and there are no scroll bars. krhoover, Pay more attention to the properties of the Form control. When you set the Size property with a fixed number for the Width and Hight, the size of the form will always be the same. There is another property called AutoSize, you can make it true or false according to your demand. Actually, in the property win ...Show All

  • harveyk Import Schema

    running ctp5, I create a new sql 2005 project. I import schema against a database using a user who is sysadmin and dbowner of source database. Import schema completes in under a second and no schema is imported, can someone advice how I can get this import schema to work TIA Rob I am not sure what is broken here, I think we would need to have access to your schema in order to be able to tell for sure. If you are not comfortable with this. Can you tell me if there is anything unusual about that schema that you are importing mairead Rob, Martin, Lorin - Are you folks able to successfully import your respective schemas with CTP6, or are you still b ...Show All

  • Zero_ Splashscreen Question/Problem.

    Greetings, I have an application that I have added a splashscreen to, the problem I am unable to solve is that when I run the application at design time (F5) the splashscreen appears and then the Mainform appears and functions as required. However if I build the application and run the program from the desktop (via an icon) the Splashscreen appears and then the MainForm however the XP startup bar appears and the icon (for the application) is flashing which means I have to click the form to commence using it. If I have VBEE open but minimised and select the icon from the desktop the application functions as required. What do I have to do to have my application function as expected Cheers Bakerboy60 ...Show All

  • shyma Start page question

    On the start page, there's a list of recent projects. I to remove projects from this list to remove clutter. The only way that I found was to move the directory and then click on the link. VS then asks me if I want to remove it since it cannot find the directory. Is there a better way Thanks, LGuy And is there any better and easier way without going to the registry just a simple deletion from somewhere My experience is that you need to delete or rename the project folder, then when you double-click on the project name on the start-page list, the name entry will simply disappear. I just deleted the *.sln file in the project folder and I got the same result. ...Show All

  • Giri Preventing the need to rebuild TFS warehouse cube

    We're encountering the TFS warehouse cube problems described in "Warehouse Cube Won't Process" thread on this forum. There are a few other similar thread on this forum, too. We don't encounter the problem until we create a new team project. The problem is that the students in our class do this in one of the early exercises, which means we lose 15-30 minutes getting the students to apply the fix described in that thread. That's a lot of time to lose in class--especially a VSTS class. Does anyone know how to prevent this from happening Is there something we can do on our virtual PC image before starting the class It has a fresh installation of VSTS-TFS. Thanks! Seth Livingston | Director of Learning | Adventos ...Show All

  • Nancy_Issa Options page with TreeView control

    I don't mean to rant, but for the past nine hours I have tried everything I can think of to create an Options page with a TreeView control, and I still can't figure it out. My goal is create an Options dialog with a layout very similar to the one is VB 2005 Express Edition. I've searched through IntelliSense an insane number of times to see if I can find something useful. And with no luck, I'm afraid. I can create the TreeView control, but the "dynamic" controls are what's giving me trouble. Simply put, how can I display X number of options on the right side of dialog when a certain node is selected, and then display a totally different set of options when selecting another node I was thinking of creating a load of User Controls, ...Show All

  • chris fitzmartin array for IP address range

    im trying to get an IP address range into an array so that i can scan for example 192.168.1.1 to 192.168.1.12 the array that i created was in vb6 and even that one errored out because of the "." between each octet.. Im not using vb6 anymore, just express Hello. You should be able to add a range of ip addresses to a string array as follows: Dim IpAddresses() As String = ( New String () {"192.168.1.1", "192.168.1.2", "192.168.1.3"}) Hi... I think the following will work for what you're needing...might need to tweak it a bit here and there. Hope this helps! Dim ipAddresses As New ArrayList Dim endAddress As String = "192.168.3.14" Dim currentAddr ...Show All

  • barchard Database objects not getting created in .sql file

    Hi, I'm experiencing some peculiar behaviour when building my datadude project When I right-click-->Build the resultant .sql file does not contain any of the objects (tables, keys, sprocs etc...)within my project. I have checked each individual object and they all have BuildAction='Build'. Anything that has BuildAction='PostDeploy' DOES end up in the resultant .sql file. The even stranger thing is that all those objects have been in my project for some time. I then added a completely new table and then built the project again. The resultant .sql file ONLY contained the creation statement for this new object (plus all the BuildAction='PostDeploy' stuff). This behaviour is consistent across both of my data ...Show All

  • xplosiv_1 Help Clearing All Textboxes and All Comboboxes

    Greetings: I found this helpful code elsewhere on the forum, but it is only working on the Combo Boxes and not the text boxes on my Form1. Currently I have 4 textboxes and 3 comboboxes on my form. In the editor, when I hover my mouse over "ComboBox" it says "Class ComboBox" and when I hover my mouse over "TextBox" it says "Interface TextBox." Any ideas or help is greatly appreciated. Thanks Glenn Public Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click For Each c As Control In Me .Controls If TypeOf c Is TextBox Then ...Show All

  • Agent00 launching an exe from application menu

    how do I launch an external program from my application menustrip That works great. Now I need to do 2 more things. 1) I need to specifiy the file path EX: C:\\myfolder\myapp.exe 2) I need to use the directory that my application is in, automatically detect the directory, and run a program in a subdirectory. EX: current_directory+"subfolder\myapp.exe" If I understand correctly this is what you need: Process::Start(Path::Combine(Application::StartupPath, "subfolder\\myapp.exe" )); Application::StartupPath gets the folder where your executable is, Path::Combine combines this path with the subfolder/exe file that you want to start. ...Show All

  • fabianus some little question ;/

    how can i get an or in my if-construction (like if myint == 0 or myint == 5), i know it is some stupid question but somehow i cant find the answer In C# you use && for logical AND and || for logical OR: if( myint == 0 || myint == 5 ) ok thx :) ...Show All

  • odv DLL and LIB?

    I'm curious as to how I can have my project compile and produce both a DLL and a LIB file. I have seen it done before (such as SDL does so) and I have been unsuccessful in doing it myself (I have been only successful in building a DLL or a LIB, not both). Any help is appreciated; thanks! First hit I got when I typed .def in the MSDN library index. You don't want to use .def files for DLLs written in C++ without extern "C". You'd have to provide the mangled C++ symbol names. When you use __declspec(dllexport), the compiler does it for you. When the linker builds the DLL, it automatically creates a .lib file for it. That's the import library for the DLL. You can link that .lib with ...Show All

  • Fradam What to do?

    I've just finished the VB Express Edition book.I've got really in to programming but dont know what to do next.I still cant write a program off the top of my head. Does anyone have any suggestions Was that ever a good answer !!!!!!!! Pick a post that you think is interesting and has a code solution and try to make it work in your envirionment. All of the things we all do as solutions providers are the same no matter the language. Look over the forum and find something interesting and go at it. Google samples or sample projects in the tools which you have to develop in. Try loading a combo box from code from a database table Then try and write a new record to the table then re-load the combo box to se ...Show All

  • NeerajAg how to modify a timer?

    hi all, i found this simple timer on http://www.developer.com/lang/other/article.php/792901  5:  using System; 6:  using System.Timers; 7:  8:  class myApp 9:  { 10:    public static void Main() 11:    { 12:      Timer myTimer = new Timer(); 13:      myTimer.Elapsed += new ElapsedEventHandler( DisplayTimeEvent ); 14:      myTimer.Interval = 1000; 15:      myTimer.Start(); 16:  17:      18:      19:        20:      21:    } 22: 23:    pub ...Show All

  • DTHMTLGOD database update

    what do i write to update a database and save the data back to the file i opened. when i eventually sort this prob out will the update store the data or will i have to save the data when the program hqas terminated as well. thanks Use a "Update" sql statement to update existing records or use an SQL insert statemnt ot insert a new record...as far as writing the info to a file...what did you use to open the file i usdwee the open file dialog as i should, but when the user ebters data, lets say his name and address, i want to use that new data to be trasfered to the databasse, the books i have are not very explanitotry on this issue. keep it sim ...Show All

495051525354555657585960616263646566

©2008 Software Development Network

powered by phorum