odrejesus's Q&A profile
SQL Server page number & records number
1. how to show page number & total page number in report body 2. how to show total records number For #1: Create a text box. For the value, enter the following: ="Page " + Globals!PageNumber.ToString() + " of " + Globals!TotalPages.ToString() For #2: If you just want to show the number of rows in a table for example, then create a text box, and enter the following: =CountRow ...Show All
Windows Forms Binding custom objects to Data Grids
Binding collections of custom objects to the DataGrid control works great, but I need a little bit more control. 1) By default all the public properties on the objects become visible columns in the grid, and the header is the name of the ...Show All
SQL Server About the user defined sp for calculating & updating the staff annual leave record
Hello, I'm using sql2005 and created a table use for contain the staff annaul leave holiday records of the company. I created a table 'test' and 3 columns 'id' (int), 'dj' (datetime), 'al' (int) which represent staff id, date join, annual leave holiday respectively. I used this table for testing the calculation of the annual leave of each staff have. the annual leave has the following conditions that must obey: working years annu ...Show All
Visual Basic Catch Events On Datagrid
How can I catch the double-click, right-click, etc. events on the data part of a datagrid control. Not the title or the left border area Hi, this Cell * events are available for VisualStudio.Net 2003 Regards Mata ...Show All
Smart Device Development accessing the strings of the string table
hello everyone could anyone tell me how to get the strings/text in the string table into a control - i mean can i anyways get a string/text from a string table into a control's caption (on a button click or some event) i have a smart device mfc dialog based application. in the application's dialog, i have a static text control and a button. i have included a string table in my application and inserted few strin ...Show All
Windows Forms Reporting Services or Report Sharp-Shooter?
Hello All, I've got a question as follows: I've heard that Reporting Services are to be included into "Whidbey". Has someone tried it and can tell me how it can be compared with Report Sharp-Shooter by 9Rays.Net I've been using Report Sharp-Shooter ...Show All
Windows Forms Application Settings Upgrade
From what I have seen, the application settings do not migrate from one version of the application to another. I have read about AppSettingsBase.Upgrade() but I am not sure how to apply it. Should the application call Upgrade() each time it is started If not, how should the application handle the transition between versions without requiring end-user assistance and assuming the settings are the same between versions. Thank you, Valentin T ...Show All
SQL Server Xpath/Xquery SQL question
Hi all, Sorry to dump my problem, but I'm a bit stuck for ideas. I've searched BOL and MSDN but can't seem to find anything that does what I want, and I'm no Xpath/Xquery expert. I'm running SQL 2005, and have a typed XML column with the following data in it: < PPP_PCB xmlns = " urn:hl7-org:v2xml " xmlns:xsi = " http://www.w3.org/2001/XMLSchema-instance " xsi:schemaLocation = " urn:hl7-org:v2xml PPP_PCB.xsd " > < MSH & ...Show All
Visual Studio Express Editions how to update the GUI from a different class
well! i have written a class which has some functions is there a way to update my GUI form that Class. got it. yep! it helps alot but one more thing if i am calling form2 from form1 and want to update from1 from form2 with the help of property then how can i use it ...Show All
SQL Server CustomReportItem Installation
Is there any documentation currently outlining how to make use of the CustomReportItem element or class My thoughts on this are that it might act as a server control for an ASP.NET application. Is that correct I want to be able to add some richer user interactivity to a couple reports that I'm currently authoring (i.e. checkboxes, buttons to access web service functionality, etc...) and I think that I might be able to make use of t ...Show All
Visual Studio 2008 (Pre-release) WPF App design: How to handle selection events without coupling
Here's the problem: The main window of the application contains several panels that may contain selectable controls such as listboxes or listviews. When the user presses a key combination (ex: CTRL+A) or presses a specific button, I'd like to identify all the selected items from the last selected container and execute a specific operation on them. An example: Imagine the application is a store front that displays items of diferent t ...Show All
Visual Studio Team System TFS beta 3 installation
So where is TFSQL2005AnswerFile.ini referred to in the installation guide And is /inifile: actually supported for unattended install of TFS http://blogs.msdn.com/robcaron/archive/2005/09/29/475530.aspx For Beta 3, there was supposed to be an .ini file in the Team Foundation Server image for installing SQL Server 2005 silently from the command line. As fate would have it, that file never found its way into tha ...Show All
Windows Forms Inline controls in a DataGrid or ListView
I want to create a grid that shows other controls (such as combo boxes) when the user clicks on a given cell. What would the best approach be, and should I use a DataGrid or ListView I can provide more details about what I'm trying t ...Show All
.NET Development How can I extract a string from a string?
I have the following string string ConnectionString= "data source="MyLocalSQLServer" ;Initial Catalog=aspnetdb; ;Integrated Security=SSPI ;persist sercuity info=false ;UID=sa; ;PWD=asdasd; ;ProviderName="System.Data.SqlClient" what I need to do is extract all th ...Show All
Windows Forms problem calling methode with delegate
hi i have a problem communicating from a thread to the mainForm i thought i could solve the problem by using a delegate but i get an exception Controls created on one thread cannot be parented to a control on a different thread the thing i&nbs ...Show All
