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

Software Development Network >> vakman's Q&A profile

vakman

Member List

rajesh_batchu
KarlaW
Ben Corneau
williambeaker
Eliaz Tobias
IamHuM
Can-Ann
stonejc
Abdul Muheed
Quirk
Jens-Christian Larsen
preethi_rjs
Timm Hagen
Chris Lang
AndyQ
Michael Hansen
niallhannon
AndrewBadera
Richard Russell
Michael Vanhoutte
Only Title

vakman's Q&A profile

  • Windows Forms Problem with inherits form

    I am trying to modify my existing form to use a new base form. In my new base form, I have added the following property. <DefaultValue(False)> _ Public Property TrainingMode() As Boolean Get Return Me.trainingLabel.Visible End Get Set(ByVal value As Boolean) Me.trainingLabel.Visible = value End Set End Property I use the trainingLabel visibility to indicate whether my system is in training mode. In the base form designer view, I have set the trainingLabel.visible to false. The problem is those inherited form based on the previous base form will change the TrainingMode to true automatically after I rebuilt the base form. I don't know how to debug this problem. As all this happened during the design ti ...Show All

  • Software Development for Windows Vista Does WF support patterns like Simple Merge And Multi Merge?

    Hey Im doing a comparison of serveral workflowframeworks. I need to determine which patterns from www.workflowpatterns.com WF supports. The important part is, we are not allowed to extend the framework to implement / simulate these behaviors. My first concrete question, for know, is whether WF support the patten "Simple Merge" where two branches merge together. can we compare this to the IfElse contruct (link: http://is.tm.tue.nl/research/patterns/simple_merge.htm ) Second. What about multi merge http://is.tm.tue.nl/research/patterns/download/swf/pat_8.swf . Guess i would be imposible with the standard Sequential workflow since it is single threaded. Have anyone created a list that sums up on these patterns in relati ...Show All

  • Visual Studio Team System Change Sets for a Work Item

    Is there a way through the VSTS UI when you drill into a specific work item to see the changes sets that it was associated with -Larry If a work item is associated with a changeset, Changeset will be added as a link to Work Item. Open the specific Work item in VS Select "Links" tab Select the changeset and you can open it to see more details Hope this helps, ...Show All

  • Visual Studio Express Editions Need Help Please

    I am currently making a program which fixes errors with Disk Clean-up which some computers encounter. Which means editing the registry, Would anyone know a code which i could use to delete a section of the registry. Anyhelp would be amazing! Mitch there is however you will face security issues in that the user account may not have read, write or readwrite priviledges. in the mean while take a look at this: http://msdn2.microsoft.com/en-us/library/microsoft.win32.registrykey.aspx http://msdn2.microsoft.com/en-us/library/microsoft.win32.registrykey_methods.aspx ...Show All

  • Visual Studio Team System Data Generation Plan unable to delete tables with foreign keys

    Hi there. I am using the CTP4 of VS for DB professionals and it is awesome.! One question I have is this. I have a database with some 80+ tables. I am only interested in 2 tables. I created a datageneration plan to populate these 2 tables. The IDE picks up all of the correct foreign relationship/constrains and populate the join tables as well. This works great. However, when I run this data generation a second time, I get errors all over. It complaints that it can't delete rows on tables with foreign keys. It seems that it forgets the join relationships that it just populate... I have pull the schema from a production db and created a brand new one on my test server. So initially there is no data on the tables. Is there an option that I ...Show All

  • SQL Server Could not apply KB899761 after SQL server 2000 SP4

    I met a problem when I applied SQL2000-KB899761-v8.00.2040-x86x64 package for fixing the memory bug after installed the SQL Server 2000 SP4 in a 2-nodes cluster environment. I have installed the package on one node successfully, but the installation did not apply the same setting to another node, so I have to install it on the member node, however, when I ran the package, it pops up a dialog "This machine does not have a product that matches this installation package". (the cluster resource is running on the same node that running the installation). Could somebody please help to resolve this problem Thanks. ...Show All

  • Windows Forms Keypresses in picture box

    i have a small app where users can draw shapes in a picture box using the mouse. I want the 'delete' key, when pressed to delete the current shape. But there is no way (that i can see) to be able to listen to key events for a picture box. Any ideas around this Hi, I could see that there is no keyboard related events for a picture box. If I am not wrong I think you could handle the keypress event of the Form (container of the picture box) and somehow associate to your picture box. Thanks, JDee ...Show All

  • .NET Development byte array tcp

    i have a byte array frorm a tcp socket how would i covert it to a int array Cisco public static int[] ConvertByteArrayToInt(Byte[] buf) { int len = buf.Length; int[] retval = new int[len]; for (int ix = 0; ix < len; ++ix) retval[ix] = buf[ix]; return retval; } ...Show All

  • Visual Studio 2008 (Pre-release) Nevigate focus from ComboBox.....

    hi... i m try to create a user interface on which there are 2 buttons , one textbox .one combobox . Focus is transfer from button to other button , but when it comes at combobox it doent transfer to other control .. i m giving code for this .please tell me what i m doin wrong.. < Button Name = " b1 " Click = " btk1 " Height = " 52 " KeyboardNavigation.DirectionalNavigation = " Local " KeyboardNavigation.TabNavigation = " Local " > Hi </ Button > < Button Name = " b2 " Click = " btk2 " Focusable = " True " KeyboardNavigation.DirectionalNavigation = " Local " KeyboardNavigation.TabNaviga ...Show All

  • SQL Server SQLServer Express 2005 and VS.NET 2003

    I would really like to be using SQLServer Express 2005 for some desktop database applications and replace MSDE. However, I am using VS.NET 2003 and so far I have not been able to discover if that combination will work. Thanks, Sid. Thank you Mike, this is now clear and sorry for my mis-reading. I look forward to downloading and installing the code. Sid. ...Show All

  • SQL Server Creating A tab delimited export

    Hello all, I am trying customize the CSV rendering extension with different device information settings. I would loke to change the CSV extension to a Tab delimited output. However, whenever I add a new extension line to the RSReportServer.config file I run into problems. 1. What is the correct character to use in the delimiter to specify a Tab character I seem to be unable to get this correct 2. Why when I override the name in the rendering extension does it still show up as the CSV (comma delimited) name in the export dropdown. Here is my customized rendering extension. < Extension Name = " TXT " Type = " Microsoft.ReportingServices.Rendering.CsvRenderer.CsvReport,Microsoft.ReportingServices.CsvRend ...Show All

  • Visual Basic CopyFile

    Hello I am trying to copy four files. It doesn't seem to work though. Here's the code: Dim DirectoryPath As String = "C:\" My .Computer.FileSystem.CopyFile( My .Resources.index, DirectoryPath & "index.html" ) My .Computer.FileSystem.CopyFile( My .Resources.readme, DirectoryPath & "readme.txt" ) My .Computer.FileSystem.CopyFile( My .Resources.swfobject, DirectoryPath & "swfobject.js" ) My .Computer.FileSystem.CopyFile( My .Resources.viewer, DirectoryPath & "viewer.swf" ) I mean it should work. This is the error it produces: System.ArgumentException was unhandled "Illegal characters in path." Also this comes up in the Watch 1 pane: ...Show All

  • Visual Studio Team System Create a Team Project Programatically

    Can anybody help me with a code sample to create a Team Project programatically using TFS client APIs. Nihal, Unfortunately team projects cannot be created programmatically using APIs. You could do UI automation to create project, but it is not same as programmatic creation. There is bunch of logic in UI that creates project correctly and we plan to remove this dependency in future. ...Show All

  • Visual C++ Several questions relating to Windows Service creation

    Hi, I actually had several questions that I was wondering if people could help me with: 1. This is probably a stupid question, but I am creating a Windows Service in Microsoft Visual Studio 2005 standard edition and I noticed that it appears to default to using managed C++/CLR. I would rather NOT use managed C++ for this application and was looking around for a way to avoid using managed C++. Is there any way to avoid that and to use only native code 2. Along the same line, in said Windows Service I use the type CString. Visual Studio 2005's help files instruct you to include cstringt.h for MFC applications and atlstr.h for non-MFC applications. I have tried using both with the same results. Specifically, it is complaining about t ...Show All

  • Visual C# How to check the presence of a character at the end of each word in a statement!

    Hi all, I was looking to check the presence of a specifc character at the end of each words in a statement. For example checking 's' presence at the end of each words in a statement like " Protein syntasis in Huntington's diseases". I am looking to have a sample code to manuplate such strings. Would you mind helping me in this regards please Thank you in advance. you can write some thing like string statment = "Protein syntasizs in Huntington's diseases" ; char [] seps ={ ' ' }; foreach ( string str in statment.Split(seps)) { if (str.EndsWith( "s" )) { //print it Debug .WriteLine(str); } } other option to use RegEx ...Show All

©2008 Software Development Network