RumWarden's Q&A profile
Visual Basic creating a text object
Is there a way to create a text object By putting [ and ] you can escape the name between them. In this case, since string is a built in keyword in Visual Basic .NET, the compiler would have treated it as the keyword string instead of the type name String. In this particular case (assuming that you are Importing the System namespace) they just happen to mean the same thing (a string in Visual Basic maps to ...Show All
Windows Forms FolderBrowserDialog
Hello, I added a folder browser dlg to my form, but it just comes up gray...no window with the folder directory. I created a test form with nothing in it besides a button to showdialog the folder browser, and it worked, but for some reason in my other project it just comes up gray. I know this is pretty ambiguous, but anyone have any ideas Thanks! Joe Check you have STAThreadAttribute applied to your entry poin ...Show All
Visual Studio Team System Deleting Work Items
Hi, I've come to the conclusion that Wor Items aren't to be deleted. However if someone creates one mistakenly what should be the correct approach I mean should it be closed with a cut reason Luis Change its state, then have the queiries not show workitems with that state. By default, the Agile process template that come with TFS is configured that way for workitems that are marked as 'Closed' ...Show All
Visual Studio Express Editions Registration code not recognized
Hello, WHen I copy and paste the registration code I received under help-> register the activation code is not recognized. What could I be doing wrong Are you trying to use an old key The registration keys are version and machine specific, so if you are using an old key, or a key from a different machine it will not work. Benjamin Bradley - VSCore IDE ...Show All
SQL Server A problem with a chart
Dear all, I'm kinda new to reporting services and I have a small problem. Currently I'm using RS 2000, and I have a bar chart on my report. It displays names on the x-axis (I group by the name) and total number of hours on the y-axis (the value). I need to change that total number of hours with a percentage from the whole number of hours worked. My problem is I'm not capable of getting the total number of hours worked per all users since I'm gro ...Show All
Visual Studio Team System Code Analysis Policy
I was looking to create a Code Analysis Policy for Checkin but noticed that the docs are still under development. Is there a pointer to a blog anywhere on this slee, Yes, you can indeed sign up for the checkin event using the docs in the extensibility kit. I don't know for sure, but I would expect there's an example in there. There are couple of forum posts that show subscribing to events, such as this one. http://forums.microsoft.c ...Show All
Visual Studio Team System Unable to generate a model from the OLAP datasource
I have generated a model from the TfsReportDS datasource and I can write reports with that. If however I try to generate a model from the TfsOlapReportDS I get the following error: SQL Server Reporting Services Error An error occurred while generating model. (rsModelGenerationError) Get Online Help An error occurred during the generation of semantic model : [Create mapping between cube dimensions and database dimensions]Unexpected erro ...Show All
Visual Studio Team System Folder names greyed out in SCC explorer
All folder names are greyed out in the source control explorer when I view it. At first it seemed that the greyed-out status was meant to indicate which folders have mappings and which don't, but it doesn't correspond to that. In the repository I have two top-level projects, both of which are mapped to local folders via two different workspaces. All of the folders for both projects are shown greyed in the SCC explorer. For the first projec ...Show All
SQL Server Assistance on implementing Data Mining
Hi, I'm new to SQL Server and data mining, so please forgive my ignorance... I'm working on a project which requires me to use the datamining provided by SQL Server 2005. I've a table for which i want to predict the values in a table (Encyclopedia) The table contains the following fields: Component Major Attribute Minor Attributes(which is basically a list of CSV for attributes in no particular order) I want to predict the c ...Show All
Visual Studio Express Editions Timing issue
I would like to find out if there is a way to add a bit of time for one line of code to complete before Starting the next. I would like my textbox to display the contents of an action as in: case 4 TextBox1.Text = "My Text" ---Do Somehting here to slow the system down for about 5 seconds TheAmount = TheAmount - 50 If TheAmount <= 5000 Then MessageBox.Show("Your Amount is: " & TheAmount) End ...Show All
Visual C++ SSE3 Programming question
I am trying to use the sample code in Visual Studio 2005 Beta 2 to compile SSE3 math operations, and am having problems. The first issue is that the intrinsic math functions (_mm_addsub_pd for example) are not declared in emmintrin.h. This is the only file that the MSDN help says is needed to include. If the sample code is compiled with this header file, unresolved externals occur. I managed to find pmmintrin.h in the Intel C++ compiler installa ...Show All
Visual Studio Express Editions win32 application
i have read abt this frm the forum and followed steps given in the following link : http://lab.msdn.microsoft.com/express/visualc/usingpsdk/default.aspx but still i am getting the following error: 1>c:\documents and settings\administrator\my documents\visual studio 2005\projects\test\test\stdafx.h(28) : fatal error C1083: Cannot open include file: 'windows.h': No such file or directory i am missing something . plz help Looking at http: ...Show All
Visual C# Using Assembly Language with C#
Hi, I need to use assembly language within my C# code for a software controlled hardware kind of application. Should I do it with C++ and save it as DLL which I can later inport and use with my C# code or is there a way to use assembly directly from my C# code C# code is compiled to MSIL (Microsoft Intermediate Language)... something completely unrelated to run of the mill assembly and because of that you would not be able to d ...Show All
Windows Forms Question on using SaveFileDialog box in .net2.0
Hi all, Have a bit of a strange one here. On my form, I'm using a SaveFileDialog box private : System::Windows::Forms::SaveFileDialog^ saveFileDialog1; on initiate this ->saveFileDialog1 = ( gcnew System::Windows::Forms::SaveFileDialog()); this ->saveFileDialog1->DefaultExt = L "xml" ; this ->saveFileDialog1->Filter = L "SCM files|*.xml" ; this ->saveFileDialog1->InitialDirectory = L "c:\\\\" ; when my user call ...Show All
Windows Forms How to develop a time reminder with Timer control
I want to develop a timer reminder for each user. The time interval will set 5 minutes, but based on the last inserted recode DateTime in table. That means each user will have different timer reminder because the different records in the table. Foe example, user A’s reminder will happen at 9:00 am because his last record DateTime in table is 8:55 am. User B’s will be 9:30 am because his last record is 8:25 am. What will be the best way ...Show All
