KTaylor's Q&A profile
Visual Studio Team System ?!
I have just installed the Team Suite. Now, should I be able to use it without the server Under File->New, I only see 'Team Project'. Is that how it is supposed to be If that is the case, I assume I now have to install the server part too. That wouldn`t be good... Thanks Rob. I apologize for not answering earlier, but I never got alerted about your reply. I decided to completely reinstall XP, Visual Studio... Btw, I dont remember choosing any profiles. I think the problem was caused by installing Team Foundation Server before installing Team Suite. Off the topic but... Is there a good tutorial on usi ...Show All
.NET Development XML Comments
On the new XML comment features (which is really cool by the way) you can add remarks (comments, remarks) to your classes and methods. But how do you add this to a root namespace Because the root namespace is not visible on the Vb form. John I was just curious because if you go to Object Browser you will see XML comments on the namespaces (which can be done if I was to declare a namespace in my form). I was just wondering if it could be done at the root namespace level, so i am guessing it cannot. Thanks, John ...Show All
.NET Development Help need with XML?
Hi, http://www.microsoft.com/downloads/details.aspx familyid=E0FAA0AF-A185-4296-B74D-A9FE870C92CC&displaylang=en i downloaded one exe "OfficeWordWordMLtoXSL-FOSample.exe" from the above link and they given some steps how to convert xml file in to fo file, i did the same thing and fo is also created. but i want to convert that fo file in to pdf is there any tool microsoft provides and also that fo file format is different than what normal fo is having ie normally fo is having root element,masterpage set and sequence master page etc.. that things are not there in that fo file (which created by using the above procedure) Can ...Show All
Visual Studio Team System DisposeMethodsShouldCallBaseClassDispose and Windows service projects
Hi all, I have a project that is a Windows Service. The code that's generated by the designer overrides the Dispose method of its base class. It does this in the following manner: Protected Overloads Overrides Sub Dispose( ByVal disposing As Boolean ) If disposing Then If Not (components Is Nothing ) Then components.Dispose() End If End If MyBase .Dispose(disposing) End Sub FxCop correctly indicates that if an exception occurs in any of this code before the call to MyBase.Dispose, the base class resources won't be disposed of. Is this a problem then in the designers that generate this code Has t ...Show All
Visual Studio Express Editions Error 1335. The cabinet vbsetup1.cab required for this installation is corrupt...
I downloaded de ISO image for VB 2005 and got this error when installing. I only install VB not MSDN or SQL Express. I am using Daemon Tools because I don't have CD burner on my machine. I tried to install from a folder. No luck. Any suggestions I also had the same issue. I have checked the CRC and its correct. I extracted the contents from the image using Microsoft Virtual CD and burnt it in a CD. When this error occured the installation failed and when I tried to install it again it worked well. But I couldn't find the vbsetup1.cab anywhere in the CD. In fact there is no file in the CD with .cab e ...Show All
Windows Forms Setting Hotkeys
Hello, I've got a question; Is it possible to set a global hotkey in a C++ Windows::Forms Application (in 2005 Beta 2) With Thanks, Gal Beniamini hi, dman!! i want to know how to set a global hotkey in .net without using the win32 api. right now my app is running in the background and i want to activate it using "ctrl+ctrl" how do i set my hotkey in such a way that when the user presses the control button once, it calls a function in my code. i have just one form named qviksurch. and a function qv ...Show All
Software Development for Windows Vista Lab 10 Problem: Activity Condition cannot be set
I dropped an IfElseBranch on the designer, then in the property grid, I select condition to be RuleCOnditionReference. In the expanded properties of the condition, we're supposed to set the condition name and expression. But the sample gives an error when trying click the ... next to 'ConditionName' property: "Value cannot be null. Paramater name: activity." Anyone knows why this happend and how to fix it Vihang, please, you are one of the most knowledgable experts on WWF on this board. Thanks, Alan Alan, I had posted a solution for this problem at http://forums.microsoft.com/MSDN/Show ...Show All
Game Technologies: DirectX, XNA, XACT, etc. capture audio
Hi! REALLY sorry to post this here but didnt know where else! is there a way to capture audio from the sound card I am trying to use directX but the sample I have seen is hard to understand unfortuantly :( How do I capture audio either using DirectX or some other method I want to capture it to a normal wav file Thanks! :-) You should take a look at the Windows Media Encoder SDK. http://msdn.microsoft.com/library/en-us/wmencode/htm/usingadeviceasasource.asp Good Luck. ...Show All
Visual Studio Express Editions Progress bar
I am currently makeing a web browser in VB express and at the bottem i wish to have a progress bar . i have the bar in place .... but i need a script or the code to get it to tell the user how much the browser has loaded. Also does anyone know how to make a tool bar ... e.g. File | Edit | veiw | Help etc. I would be soooooo grateful ... thanks a bunch Rhys Durham Hi lildotti, look, for the tool bar, or menu, you select MenuStrip from the toolbox(to view toolbox, click View in the main menu-->Toolbox)... Now regarding the progress bar, use the following code on your form where you have&n ...Show All
Windows Forms Calculate Width of a String in Pixels
hallo, Given a Font and a string, is there any ready-to-use function in .NET which can compute the resulting width of the string in pixels So that I can adapt say a Label, MenuItem or Textbox to the new size of a string. thx, Steve I guess we can agree to disagree on this one. =) I didn't have a lot of time to plink with&n ...Show All
Windows Forms controlling behavior of combo box in a datagridview
I am using both text boxes and combo boxes in a datagridview. The combo boxes have different item lists. All is wonderful except on the very first pull down of a combobox the selection does not stick. On all subsequent pull downs of that or any other box things work perfectly: the value "sticks", the edit is ended, and the program responds to the new value. Here is the code (Please forgive the bullets it was the easies way I could thing up to remove all the extra <P> tags. Whoever thought of this forum interface should have to use it very regularly to make a living as a real VB programer.) Private Sub dgvData_Editing ...Show All
SQL Server Certificate not recognized by SQL 2005 - Encryption Problem
Hi, We recently upgraded from SQL 2K to SQL 2005 on WINDOWS 2003 Server. The entire upgrade process has run pretty smoothly aside from encryption. We have ASP.NET 1.x apps that connect to an internal server but fail when encrypted. We have tried all of the steps available on the MS KB and still have not resolved the issue. On http://msdn2.microsoft.com/en-us/library/ms191192.aspx, we find the following: To configure the server to accept encrypted connections 1. In SQL Server Configuration Manager, expand SQL Server 2005 Network Configuration, right-click Protocols for <server instance>, and then selectProperties. 2. In the Protocols ...Show All
Visual Basic Show user SQL Server Login Screen in ADO.NET
Hi, Is there a way to display a SQL Server login screen to the user so that the connection string can be dynamic Thanks, Dave 'Login form class Public Class frmLogin Private Sub OK_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OK.Click Dim strConnectionString As String = _ "Integrated Security=False;" & _ "Server=MyPC\SQLEXPRESS;" & _ "Initial Catalog=MyDb;" & _ "User ID=" & Me .UsernameTextBox.Text & ";" & _ "Password=" & Me .PasswordTextBox.Text Dim cnn As ...Show All
Software Development for Windows Vista Dynamic update to ASP.NET hosted workflow
Hi guys, I have an asp.net application that host the runtime + sql persistence. I also want to change the workflow definition of running instances through dynamic update. I want to use the workflow designer (windows app) to do the modifications. And here is the problem my workflow runtime is in the asp.net app and I must use it. But how can I access it For some situations the sql persistence can be solution so I can rehydrate the workflow from there and apply modifications. But what if my workflow is still in the memory of the asp.net app. I saw Dharma's demo on PDC but he use the control as ActiveX object. Any suggestions You co ...Show All
Windows Forms Handling identity columns in a data bound GridDataView
Does anyone have any sample code or suggestions on handling identity columns in a DataGridView control If I show the ID column it defaults to 0 instead of 1 and doesn't necessarily match what's in the database until the records are saved and the grid is reloaded. I do the update in the RowLeave event. I will need the actual ID for a custom button control function I'm adding. Thanks. Regarding the IsNewRow property - check out the DataGridView FAQ for how the new row is calculated. http://www.windowsforms.net/Samples/Go%20To%20Market/DataGridView/DataGridView%20FAQ.doc You'll want to use the row index and the row count ...Show All
