nimrodel's Q&A profile
.NET Development Help On a Crystal Report for .NET 2003
Hi all I have created a parameterized report and for one of the parameters i see following message from Crystal Reports when I run the report " you can provide a single value for this parameter. Enter the value you want to include" I assigned the parameters before calling the report. Can anyone help me on this that why is the message shown and how should i avoid it here is the cod ...Show All
Visual Basic Any clever ideas?
In our ERP package, in the address book there are two (primary) tables involved. In one of those tables we have a user defined code with values 1-35, each of those numbers corresponds to a person, i.e. one is Joe, 2 is fred etc... In the other table there is a field with actual address numbers (not a UDC) where for example 4038 is Joe, 5064 is Fred etc... I need to come up with a way to select these two fields into a dataset, and then d ...Show All
Visual Studio Tools for Office Calling a smart Excel Client from a webform
I've done this with windows forms, so it doesn't seem like it should be so hard, but I'm completely stumped. I'm trying to load a smart excel document(done in C#/VSTO), based on a few preexisting variables(Set when the user decides which set of data he wants to look at in a webform). I've handled this problem in the past with winforms by creating a separate project in my solution and having it make a new instance of the class an ...Show All
Visual Studio 2008 (Pre-release) 2D Transform: GeometryGroup or Multiple Geometries?
Hi, Is 2D matrix transformation performance better using a single GeometryGroup or multiple geometries Or, no difference TranslateTransform translateTransform = new TranslateTransform(-100, -100); lineGeometry1.Transform = translateTransform; lineGeometry2.Transform = translateTransform; rectangleGeometry.Transform = translateTransform; OR GeometryGroup geometryGroup = new GeometryGroup(); geometryGroup.Children.Add(line ...Show All
.NET Development Graphics class too slow and Drawing too
Ive upgraded an app from VB 6.0 to .NET 2005 Express, my problem is that in the pass i used the line, circle and print methos over a picture box to show a big graphic. Now ive changed old methods for drawrectangle, drawline, drawstring etc.. over the paint event. The final results are the same but the speed of the .NET versiuon is awesome SLOW like a turttle, when i click in the scroolbars to see other part of the picturebox the paint event acti ...Show All
Windows Forms ListView items in VC++ .NET!!
Hi All, How do I edit and view items in a ListView for VC++ .NET I can add items easily and save as xml format but viewing them seems to be a whole new issue. I'm used to easily viewing them C# but it seems to be different& ...Show All
SQL Server Subscription and email issues with Browser role.
We have our user's set up in the Browser role. We are having an issue in that none of them can create a subscription on a report or email a report. If they set up a subscription, it is displayed but the report does not run. When they try to email a report, the To: box is greyed out. Has anyone encoutered this issue Does anyone have any suggestions on why this is happening Thanks. Vicki ...Show All
Visual Studio WebForm ReportViewer Drillthrough Datasource
Hi, I am using VWD with the Report Viewer add-in. I am attempting to create a drillthrough report, but keep getting this error: A data source instance has not been supplied for the data source 'DataSet1_DataTable1'. I know you are supposed to handle it with the Drillthrough Event handler, but so far I have only been able to find example of this using .xml files. I created the dataset using a SQL2000 datasource. When I added the repo ...Show All
Visual Studio Team System Web test failing RequestFailed: The value of the date string in the header is invalid.
All webtests I run from VS2005 RTM are failing with a response of: RequestFailed: The value of the date string in the header is invalid. The request looks like this: GET /Angel63/sidebar.asp HTTP/1.1 User-Agent : Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Accept : */* Accept-Language : en-US Host : 600m01 Cookie : ASPSESSIONIDSATDSCQA=LMGPKPGDJNEPFDPPJKBKILEP Accept-Encoding : gzip I can successfully run the same test using the beta 2 re ...Show All
Windows Forms Using class File in Windows for the User control
HI, I have created a user control toolbar and included the dll to all the forms in my application. This toolbar contains buttons. Now instead of writing the button click event to individual forms, i want a way to write the click events to be in the common place and based on the form load and the button click action, the action should be taken place on the right form. What can i do for this should i create a class file or something like tha ...Show All
.NET Development MultiThreading Question
To the multithreading gurus: Given the following code, is it necessary/good practice to use a lock somewhere Thanks in advance, zulu using System; using System.IO; using System.Threading; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { FileCounter cnt = new FileCounter(); cnt.StartAsync(@"C:\"); while (true) { bool exit = !cnt.IsRunning; Console. ...Show All
Visual Studio Team System Unit Test Question
Hello, I am experimenting with Unit Tests in VSTS. I have created a very simple unit test for a method that literally just returns a 0. The method that is being tested is inside an assembly that has many classes. This assembly also has a reference to a mapped file as follows: K:\Libraries\DotNET03\TValue\tvalueenginelib.dll When I attempt to run the unit test it fails with the following text: Failed to Queue Test ...Show All
Visual Basic Need Publish My Application with dotnetfx.exe within setup package
In 'Publish' of VB2005 Express , Item of 'Prerequisited' choose to install '.Net Framework 2.0' . I choose option ' Download prerequisites from the same location as my application' . Because I need to package within Publish package. (no need to use option 'Download prerequisites from the component vendor's web site' ) It shows error message 'The install location for prerequisites has not been set to 'component vendor's web site' and the file 'D ...Show All
.NET Development What about Dataset relation ??
Hi for all In VB.NET 2.0 I have a dataset filled with 2 tables every table has a CurrencyID column O.K how I can add a relation between these two tables in a dynamic manner like :- When CurrencyID is equal to a value- which is given dynamically at the runtime - like e.g: 1 I can get the column name ONLY from the other table -which is under CurrencyName Column - Please any help from any one !! Thanks for all Hi, Check ...Show All
Software Development for Windows Vista Service events missing event handlers? - [code included].
"In Beta2, when you add a service to the ExternalDataExchangeService, the events are assigned event handlers that, when invoked, enqueue a message onto the workflow queue created by the HandleExternalEventActivity." I'm not seeing my HandleExternalEventActivity getting invoked and I believe it might be because the initialization step in the workflow creation is not creating these handlers for me. So my event sin ...Show All
