maixmus's Q&A profile
Windows Forms For consideration
Some of these would be better suited to the VS.NET team, I'm not sure how much the winforms team and the VS.NET team work together. 1) I know this would be difficult to implement, and not even sure if you guys have control over VS.NET,&nbs ...Show All
Visual Studio Team System Team System unit testing and config files
If you set up one project as a class library production code and another project for you tests in the new team system how can you read a configuration file as below: string connectionString = ConfigurationSettings.AppSettings["ConnectionString"]; I know you can add a connection string in the [TestMethod DataSource ...] but this does not seem to be in the mode of TDD -- so how would you do it. thanks grs If you specify an app.config, and se ...Show All
Visual Studio Team System Creating a workitem and assigning a user
Hi, I wrote a custom web service to be able to create bug workitems programatically, it works fine if the users provide the exact display_name for AssignedTo field. It does not work if they provide a domain user as it is known in a domain (Domain\Username). On the other hand, if they provide a display_name (sth like "Eric Johnson (Project Leader)" as it is shown if we try to create a bug via TFS Client). I am a little lost ...Show All
Windows Forms DataGridView inserting records
I am looking for an event in the datagridview, tableAdpater, etc.. that I can use to add a record to the database. Current, my table adapters insert command is set to a sproc. When a user enters a new row in the datagridview, what event should I use to exec the insert command I am using the UserDeletingRow event to prompt the user for deletion verification, followed by exec the delete command which execs a delete sproc (I pass ...Show All
Visual J# search in combobox by pressing button
I am creating a program , some words just like dictionary, items (words) are in combobox. You select word in combobox and explanation of that word you select appears in label. Later i was trying to make search, i create that, bus is problem. That is just like live search, then you are typing word, program automaticly in label says "no match found" , then you finish - in label appear if that word is. How to do that : you write word in c ...Show All
Visual Studio Intellisense Manager
Intellisense Manager does not appear in the Tools menu on my Visual Studio 2005 set up... any one come across this Nevermind I found this... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=138278&SiteID=1 ...Show All
Visual Basic Using Winsock function: GetData
Hello, I'm using Visual Studio 2005 Beta 2 running in Win 2k SP 4, in english, to developtment an aplication that use the winsock control to send and receive data in string format. I can set the sockets, and send message but I can't use the function GetData to read the data of the messages. I use this code: AxwsLab.GetData(sMsjRecibido, vbString, e.bytesTotal) But doesn't work. And the application show me this error message: "Excep ...Show All
Software Development for Windows Vista Correlation Communication service: two activites using the same CorrelationParameter
Hi, If two activities are calling the same method in an ExternalDataExchange interface, and both activities are using the same value for the CorrelationParameter, what will happen when an event with a matching Correlation value is raised I tried it and see that only one waiting activity will be waken up, and the other one simply will never get it. Is that the expected behavior Thanks, Patrick ...Show All
Windows Forms Where is ClickOnce App?
Hi, After successfull installation of ClickOnce app can I find where it is installed. I can find it through explorer but what I need is to find it in code Thanks ... There is an undocument registry key that gets created, but you really shouldn't be accessing a ClickOnce deployed app from another app programmatically unless you are going through a remote communications layer like .NET Remoting. You can use .NET Remoting or eventually W ...Show All
Visual C# Licensing service
what are the steps to implement Licensing Service in Windows Application I would suggest reading the post on how to ask good questions. At this point, I'm not sure what you mean by 'licencing service'. Do you want to write a web service A windows service Just a program What do you want to licence ...Show All
Visual Studio Team System How to create additonal directories in output
I am new to Team Build and I am struggling to create additional directories in the output. To elaborate: By default team build drops all binaries in $BuildDirectory$\$ProjectName$\AutomatedBuild\Binaries\Release. I want to create something like the following directory structure in $BuildDirectory$\$ProjectName$\AutomatedBuild\Binaries : ├─── Binaries │ │ ─── dir1 │ │ ─── dir2 │ │ │ ─── subdir1 ...Show All
Visual Studio HOw to Install Visual studio 6 in sp2 system.
I'm not running any applications while installing the visual studio... my friends have installed visual studio by switching off the windows firewall but i tried this method also, it didn't work..... The dll which is falling to register is "djljobs.dll" , (guess - i've forgotten) Some times this error Do you have a virus checker running The file might be locked by the virus checker as VS is trying to register it. If you do, unplug yo ...Show All
Windows Forms passing variables to form
I made my textboxes on form1 public. I was able to access them through my form2, after I made a statement like form1 form2 = new form1(); Problem is, the text boxes are all empty on form2. Is this because I initiated a new form1 and therefore the textboxes are set back to their default as empty How can I access variables stored in form1 from form2 thanks. To have one form talk to another, pass the ...Show All
Visual Studio Team System Web tests resulting in Internal Server error due to Invalid ViewState
I am seeing an odd problem when testing our web site. I have no problems navigating through our website manually from a web browser and experience no problems when creating a web test that navigates through our web site. But, when I run the web test I created, then I keep getting an "Internal Server Error" on the first server page transfer. When I look at our server logs it indicates that the problem is caused by an invalid ViewStat ...Show All
SQL Server Full Text Search Engine in Chinese Simplied
contains(name,'" 三"') will not find the row in database with column named "name" and " 三" is sure there,but will find ' 三一',' 三二' why name column is sure in the fulltext category and data population is finished! This is due to wordbreaking behaviour in Chinese Simplified wordbreaker. ' 三一' is got broken into ' ' and '三一'. You could try freetext instead of contains to allow some fuzzi ...Show All
