TesmerR's Q&A profile
Visual C# Create extended stored procedure
Hi, You could present structure of a code extanded stored procedures for SQL 2000 on C# Thank It is not possible to write an extended stored procedure for SQL 2000 using C#. You will need to use C++ Regards, Vikram ...Show All
.NET Development Generating documentation for my XML
I work on an application that has a steadily growing number of configuration settings that can be specified in the application .config file. I would like to create documentation for this XML, similar to what I see in the .Net Framework reference (example : http://msdn2.microsoft.com/en-us/library/ms228256.aspx). Are there any tools (with the .Net SDK, NDoc, etc.) that allow me to generate XML documentation similar to what I see in Microsoft's docs Thanks, Andrew Brown Asset Management International Andrew, T he November 2006 CTP version for Sandcastle is now available for download at http://www.micro ...Show All
Windows Forms Inside Cell ??? I need help
When First time I saw DataGridView I feel that itis very powerfull control and Itis really that But I have 2 Points to know Please I need Help 1- How I can write the row number in the fixed area (or fixed cells) on the left 1 2 3 4 5 6 and so on How I can do that 2- This is my Bigg Problem: I need a functionality that allow to me When the user edit a cell (AND STILL EDITING IT) I want to handle a key event e.g: F3 . In summary as example : When the user edit a cell and still editing in it and Press F3 I pop up a messagebox.show() with the cell content that the user editing. I feel That this control is really powerful ...Show All
Game Technologies: DirectX, XNA, XACT, etc. How to use DSSCL_WRITEPRIMARY mix the sound?how write the primary buffer?
how write the primary buffer How to use DSSCL_WRITEPRIMARY mix the sound Since the advent of the Windows Driver Model, there are no advantages to writing directly to the primary buffer, in fact it is simply an abstract concept now – there is no physical buffer available to the app where all audio gets mixed (so you cannot apply global effects on the primary buffer – you’ll have to mix the stuff yourself if you want post submix effects). All applications, even those with simple audio requirements, such as using one stream of audio data that does not require mixing, should use secondary buffers instead of directly accessing ...Show All
Visual Studio Team System ADAM Error on Installation
Hi, I could not ever install the ctp version of foundation server. Finally on beta 2, i thought my woes would be over... Far from it Now it stops at the ADAM install itself. I did exactly as the installation guide said.. fresh machine.. it completes the step 1 starts the step 2 and then it says there has been an error.. now no info on what the error is all abt. I chkd the known issues and it mentioned abt the TMP variable spaces... I even changed it to c:\myTemp. Still no change to my luck. any idea what i might be missing here... TIA Paritosh jb_tiburon, Are you trying to get a single-server ins ...Show All
Visual Studio I need a way to work with more than one report.
So what am I supposed to do Create a form for each report, drop a reportviewer on each form for each report, and create a dataset, bindingsource and so on for each of 100+ reports I've been trying to figure out how to use the same form and the same report viewer so that I can: 1: Select at runtime which .rdlc file the report viewer is going to display. 2: Dynamically attach a dataset to the .rdlc file (based on a stored procedure). 3: Dynamically bind the dataset fields to either a table, matrix, or list in the report.rdlc I've found out how to dynamically attach a report.rdlc to a reportviewer control, I've tested ...Show All
Visual Studio Items and when are they filled
Hi there Looking for some help on this... If I was to create an Items collection in the following way: < ItemGroup > < TestAssemblies Include = " **.tests.dll " /> </ ItemGroup > When would the values be assigned to the collection I intend this to contain a list of all my unit test and I am then going to use this as input to my unit test target, but I am unsure if the collection would be populated when MSBuild is executed, when the collection is encountered or when its first reference. Thanks Andy When MSBuild executes the project it ...Show All
Software Development for Windows Vista Workflow Serialization Problem
Hi to all, I have been using beta 2 bits for a couple of days and trying to upgrade my project with the new stuff. I've change a lot of things ( as you guys did in beta 2 :), but one problem still cannot be solved. I'm using the workflow designer control to change workflow definition. I have also a state machine workflow. If I load the workflow from file (xoml) no problem. But if I want to get a workflow definition from running workflow the serialize it and pass it to the workflow designer control I cannot edit the workflow. After debugging it seems that serializing state machine workflow it only serialize the root activity. Stefan, ...Show All
Visual Basic Please help with Process close and saving, also timer.sleep use
Hi, I want to be able to control a program through a vb.net window app (start, manipulate, close, and save) that has a form with a button to intiate it. As a first step I am experimenting with notepad to get the code down. I can easily create a window app that can start notepad, write a few sentences and then close notepad but focus is then immediately returned to my windows form and my subsequent sendkeys (tab & enter) that were meant for the save message box that comes up happens on my form instead. How can I shift focus back to the notepad's save message box (instead of my form) so that I can also save the file using sendkeys Here i ...Show All
Visual Studio Express Editions Text Drawing Error! Please Help!!
When trying to run this code, i get the error: System.NullReferenceException was unhandled. My Code (Very Simple): Public Class form1 Dim paints As System.Drawing.Graphics Dim afont As New System.Drawing.Font( "Arial" , 22, FontStyle.Regular) Dim x As Integer = 10 Dim y As Integer = 10 Private Sub form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load 'This Doesn't Work! paints.DrawString( "Arctic Games Programming" , afont, Brushes.Black, x, y) End Sub Private Sub form1_Paint( ByVal se ...Show All
Visual Studio How create a report template
How does one create a report template in VS. I assume you can. I assume that you create a .rdlc file that you want to use as a template and that after doing so, you use Windows explorer to copy it into some directory so that the next time you do an add on a project, it shows up. Is my assumtion correct If so, what directory to I paste it to Never mind my previous post. I discovered that there is a Wizard for doing this It's in "Export template" in the "File" menu. :) ...Show All
Windows Forms right mouse click on treeview
can anyone show me how to display a context menu after a right mouse click on a specific node. This is what i have been able to acheive so far If e.Button = MouseButtons.Right Then TreeView1.SelectedNode = TreeView1.GetNodeAt(e.X, e.Y) If TreeView1.SelectedNode.Text = "Categories" Then ...Show All
Visual Studio Team System Workspace remain in the windows 2000 user profile
How can i clean properly the workspaces references in the local machine. The workspaces is removed properly from the server but it is the user profile. When a new user (USERB) uses VSTS and try to create the workspace he has an error 'the workspaces is allready mapped to DOMAIN/USERA'. The previous USERA had removed the workspace from the 'Manage Workspaces' window in his own windows session. Please Help Thanks Laurent Visual Studio caches the workspace info on the local computer. You can update the cache on the local PC by using the following command: tf workspaces /o:* /s:http://yourTFSServer:8080 ...Show All
SQL Server How to sort table in sql2000 with ipaddress(format x.x.x.x) as column with nvarchar datatype in ascending order
How to sort table in sql2000 with ipaddress(format x.x.x.x) as column with nvarchar datatype in ascending order without using stored procedure Ex: Table: netComputers(3 rows) Column Name: ipAddress (string data type) ipAddress 0.0.18.1 0.1.1.2 0.0.0.1 Sql query : if I use the query Select ipAddress from netComputers order by cast( replace(ipaddress,'.','') as numeric(12)) asc Gives result as : ipAddress 0.0.0.1 0.1.1.2 0.0.18.1 Where as expected result should be: ipAddress 0.0.0.1 0.0.18.1 ...Show All
SQL Server Batch invocation of Drillthrough action
Does anyone happen to have an example of a batch invocation of a drillthrough action Essentially, what I'd like the ability to do is use the results of the drillthrough to feed into another process (i.e., to use as input to an SSIS package or load into a relational table.) However, I've found no examples of what the action settings would need to be in the Application field, for example. Maybe drillthrough isn't the proper action to define it (although it would be the easiest.) Maybe a regular action returning a dataset or rowset Any help or idea is a appreciated. JGP, you're situation is another aspect of ...Show All
