Answer Questions
jdang Downloading the software
I don't know if this is the right place to ask this question, but I could not find an answer. My question is, is there a place I could order or get a Visual Studio Express Editions CD or DVD rather than downloading them from this site. I live in a rural area where I can't get an high speed internet connection and downloading on dial-up would take about 20 hours of tying up my phone line. Thanks for any help you could give. James.... You might want to look into getting a copy of the book Microsoft Visual Basic 2005 express edition: Build a Program Now . The book comes with a cd that has vb and sql express on it. Or I think the dummies guide .... also provides a free CD as well. Or you ca ...Show All
jss3426 Container control?
Hi. I'm trying to make a control that can contain other controls. I make a UserControl, but I can't get it to work. I can't drop another control on it. Sorry for the newbie question, but in VB6 I only had to set a property to make it a container control. I'm really a bit confused. Any help Thanks. ok, :) buy I was talking about design time... Just one more thing... this attribute is required for design-time support. Adding controls to other controls at runtime also works without it: UserControl11.Controls.Add(Button1) ' Set button's position etc... Andrej Hi, to make your control act like a container for other controls at design time, you have to add a special System.ComponentModel.Designer attribu ...Show All
Eswans2000 What Tools can be embeded to VSTS
Clearly: What tools results and outputs can be merged with VSTS FS, ARC, Development, Testing like I have got point A utility called 'Fiddler'. It is a debugging proxy that provides a testing tool agnostic capture of the HTTP conversation occurring between a client and a web server. The capture provided by Fiddler can be saved as a VSTS Web Test. You can find this product at the following link: http://www.fiddlertool.com/fiddler/ like this I want Thank you for your reply, What about Test Director for Requirements Traking and Bug Traking VSS if TFS is not taken in suite Other Testing Tools can be integrated with VSTS TE like (QTP, LoadRunner) regards, Sudheer You can integrate Ca ...Show All
Musa_Tariq_Raza Express Edition Registration Problem
I hope I got the right forum here, I apologize if I am wrong. My problem is not addressed in the FAQ, and I hope someone can help me on this 1. When I 1st downloaded all of the Express Editions, I did so via my sister's computer. Her PC has XP & mine, at the time, had Windows 98. I have now obtained a WinXP machine & did the SP2 thing. I burned all of my projects off of my sister's machine & removed all of the Express Edition's from her PC. I installed VB2005 on to my new PC & tried to register it. Rather than get a new registration code, as I expected, I only got a confirmation email & Microsoft's "Thank You". I need a new code :) Now, I don't know if this makes any difference, but the VB2005 that ...Show All
pershing How to display closed captions in Windows Application
I am trying to create an application inVisual C# Express in which an mp3 file is played along with captions (text). I understand how to get the Windows Media Player (WMP) to run on my form and think I understand how to make a caption file (SAMI) and tell WMP where to find it. What I don't understand is how to get the captions to display (say in a textbox) on my form. There is a parameter Player.closedCaption.captioningId which is supposed to be able to read a string containing the name of the element that displays the object. I've tried my textbox name as "tbx.CC" and "tbx.CC.Text" with no result. I.e. no error, but no text displayed either. The examples in the MSDN documentation seem to be for web pages in which the ID ...Show All
Ranju_Akram Serial Port. Problems in Storing received data
Hello everybody. I'm still on the same project: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=714917&SiteID=1 Hello there.. I fixed the problem, changing the Read function from RedByte to ReadLine. Heres the code: Private Sub Receiver(ByVal sender As Object, ByVal e As SerialDataReceivedEventArgs) Handles COMPort.DataReceived Dim RXString RXString = COMPort.ReadLine() Received.BeginInvoke(New StringSubPointer(AddressOf Display), RxString) End Sub Private Sub Display(ByVal Buffer As String) Dim array() 'Temporares Array um Werte zu Extrahieren Received.AppendText(Buffer) array = Buffer.Split(",") Hell = CDbl(array(2)) Hell = CInt(Hell * 3.4262591) TB_Helligkeit.Text = Hell ...Show All
Joran Omark Databind to a ToolStripStatusLabel
I have a BindingSource obtained by a DataReader. How can I bind a ToolStripStatusLabel to my BindingSource Can I make a Class with a Custom ToolStripStatusLabel My ToolStripStatusLabel has to be binded dinamically with different BindingSource, so I need to do it on runtime. I'd need a few lines of code to do the job. StatusStrip1.DataBindings.Add( "Text" , bsCustomers, "Customers_ID", True ) This works for the StatusStrip How can I Make the StatusLabel show the "Customers_ID" It doesn't work for me. I solved in another way: Private Sub bsCustomers_CurrentChanged( ByVal sender As System.Object, ByVal e As S ...Show All
ferdesceline Updating Data, take 3...
I am amazed at how difficult it has been trying to figure out how to update data. Please help me!!!!!!!!!!! Here is my attempt to update a data table with an update command: Dim oCon As New OleDb.OleDbConnection( My .Settings.FantasyConnectionString) Dim oCommand As New OleDb.OleDbCommand Dim oAdpt As New OleDbDataAdapter oCon.Open() If IsBench = False Then strSQL = "UPDATE Table1 SET Field1 = 1 WHERE ID = 1" oCommand = New OleDbCommand(strSQL, oCon) oAdpt = New OleDbDataAdapter(oCommand) oAdpt.UpdateCommand = oCommand oAdpt.Update( Me .DataSet1.Table1) dt = me.DataSet1.Table1 I put a break just after the last line up there to see if my changes were made ...Show All
AAKurtz Team Server security and VPN
I'm the administrator on our TFS system. I have a user who is connecting to our network through VPN. I want them to be able to check in and check out files, basically he is a member of the Contributors group for the project. He can see the project and the solutions in the project, but he can't check anything out. He can't even right click on the project and get a popup menu. Is there a setting for VPN users If it's security, why can he see them, but not do anything with them We were running under workgroup, but now we've upgraded. Thanks. Also, have the user go to Tools/Options/Source Control and make sure that the currently selected "Source Control Plug-in" is "Visual Studio T ...Show All
Teymur Hajiyev How do I hide a form?
I am looking to create a simple program that pops up a balloon on startup. What I want to do is hide the form1 that is created. How do I do it I can use the notifyicon for displaying the balloon no problem. Ahh That would work... Although I used sendkeys to minimize it. ;) Did you try setting the opacity Hello Martin, I haven't tried this myself but maybe Me.Hide() hope it works tattoo The form is still open on the desktop. It needs to be hidden from view. Not too bothered about it being in the taskbar though. You may have to take a few extra steps, since just 'hiding' the form may cause it to flicker: Set the opacity to zero, so it's completely transparent (and pe ...Show All
xlordt Multiple TFS Projects
I am planning out our TFS strategy. I have read MS recommendations that say not to create a lot of Team Projects, but this concept mankes many of the reports useless: If I have 10 web services in a single TFS Project, and each has its own solution file. If I build one of them, the build report contains all the check-ins since the last build, even though many of them had nothing to do with the single web service I am building. My work item reports give me all work items for all the web services, not just the one I am working on. ... Wy the "minimize Team Projects" recommendation Subprojects are a common request. I don't think we'll support subprojects exactly, but we do have dras ...Show All
Hassank Component Question
Hi again, I've been trying to build a component as Express doesnt come with a component template, does anyone know what code I need to insert in order for it to work correctly I am sure its not as simple as merely putting 'Inherits Component' under the class declaration, I'm pretty sure you have to some stuff with the 'New' and there's also a 'Site' property that needs sorting out. Like I said, I'm new to this, but if anyone could post the generated code for a new component, that would be great. Thanks again. While we are on the subject, I have other queries... Firstly, how do I obtain the name of my component, for example, if I drop an instance of the component onto a form (well, under the form, actually), ...Show All
Jarda Jirava I so thought I had this but I don't - I am not creating multiple objects I don't think...
I thought I had two objects and that I was taking cups away from each of these two unique vendingmachine objects, called decaff and caffeinated. But after testing how many cups are left, I find that I am always having the same number of cups left in either object. Or whats happening is I have one object or maybe I am only accessing one of the two. I am not sure. I really need someone to explain to me what is going wrong with this. I am trying to create two vendingmachine objects. Choose which one I want to buy from, then actually remove cups from that one as a cup of coffee is bought. I am failing to somehow keep them seperate, create them properly or access them properly. Any help would be so appreciated. Edited: Realized a fe ...Show All
Jamesx Need help with Bluetooth detection
Hi all, I am using Visual Basic Express and would like to know whether is it possible to write codes that can detect and display the available bluetooth device within range I need to write a program which will allow sending of pictures to the selected mobile phone via bluetooth. Please kindly advice how I should go about doing it Is it using the Serial Port or suzume, I'm a fraid you cannot create any appplication on the Smart Device such as Pocket PC 2003 Device Application in VB Express Edition. But in Visual Studio, you can make the samrt device applications. I suggest you to use the VS 2005 to complete your project. I searched MSDN, there is an anticle on the concept: http://msdn2.microsoft.com/en-us/library/ms863414.asp ...Show All
builtbikes VS2003 against TFS
Hi, I have migrated VS2003 project from VSS to TFS. I have installed MSSCCI Provider for connection with TFS from IDE VS2003. In IDE VS2003, I have connected to TFS. When I checked out some file under Source Control, then I changed it and Checked in, this file, project and solution kept in check out state. And I might to do undo check out. Sometime, this action made the problem, by rolling back the actions, which I did. I have also noticed that, TFS made double folder structure to local folders (It was copying parent folder to new folder which had the same name as parent folder), because TFS added new mappings to current workspace. It's expected behavior And what can I do instead of undo check out Thanks Janko Now ...Show All
