Answer Questions
ImmanuelG Selection Formula
Dear All, I have this problem of designing my report in Crystal Report. Basically my table structure is as below ID OutletID Type Serial 1 1 A 1112 2 1 B 1123 3 1 C 1200 4 2 C 1201 5 2 C 1202 Below is how I want to output my report A 1112 B 1123 C 1200 - 1202 The problem is that for Type A and Type B I want to list as it is. But for only type C I want to put them in a range like how I did above where for 1200,1201,1202 I will just put 1200-1202. I done some reading and also did some work ...Show All
bilalso Error using Project template - Package templates may not be properly registered.
Hi, I am using the Guidance package to create a new guidance package. The example stubs a console app and a website. When I add a project vstemplate for a class library I receive the error below. Am I supposed to register the new template System.InvalidOperationException: Cannot find registration information for template "C:\Documents and Settings\bbyrd\My Documents\Visual Studio 2005\Projects\FPPSGuidance\FPPSGuidance\bin\Debug\Templates\Solutions\Projects\BusinessEntities\BusinessEntities.vstemplate". Package templates may not be properly registered. Run package installation again and verify template name and location. at Microsoft.Practices.RecipeFramework.VisualStudio.Templates.VSTemplatesService.GetTemplateRegistryData(S ...Show All
Fillipe246466 TreeView DataBinding
Hi! I'm using a TreeView which content is filled with an XmlDataProvider through its ItemsSource property. I still can't get how this really works. I believe that the treeview never creates TreeViewItems instances when filled this way. My application lets me select a node, and then execute an action that makes me refresh the tree. What I'm doing is resetting the XmlDocument in the XmlDataProvider , and the treeView gets refreshed automatically. The problem is that the treeView is reseted and I loose the selected position. Some more details: I changed the treeview and treeviewitems styles and templates. I'm able to change some properties (like color) from the TreeViewItems in that styles definitions. ...Show All
Bartosz How to Merge HelpStudio Lite Help Files into Visual Studio Help
The following is a batch file containing the secret sauce needed to merge your language's help into Visual Studio's Help. This works for help files generated by Innovasys HelpStudio Lite. Build the help project first, then execute this .BAT file in the Build directory. I like HelpStudio Lite. It's pretty intuitive. UI is mostly very good. However, error checking isn't robust. Beware of using spaces within the project name. It causes problems during build. The topic names must never contain spaces. Ironically for a Help system developer, their Help and documentation is lacking in key areas. They need to do work in these areas and others. Below is the result of a build of a HelpStudio Lite project created as "My Lang". I had to man ...Show All
simon_56387 ADO.NET vNext problem
We have started developing with .Net 3.0 and now we use the ADO.NET vNext august CTP. I have installed: LinQ CTP - May 2006 ADO.NET vNext August CTP Whe I try use the "var" keyword in c# I recieve this error: Error 25 The type or namespace name 'var' could not be found (are you missing a using directive or an assembly reference ) [... the file name and the line of var keyword..] The code is: using (dbObject = new DBSICOP_DEV("name=DBSICOP_DEVConnectionString")) { var iaRighe = from ia in ImpegnoAccertamento where iaRighe.Id = this._dbId select ia; } I have this using directive (added to the default): using System.Data.Mapping; using System.Data.Objects; using System.Query; using DBSICOP_DEVMo ...Show All
QuantumMischief Javascript Debugging With IE7
Hello, I have ran across an issue debugging an ASP.Net page after installing IE7 on my development machine and I have not been able to find a solution. I am using Visual Studio 2003 and I am no longer able to access the rendered source (including embedded javascript which is emitted in the code behind) using Debug -> Windows ->Running Documents -> Page.aspx When I click on the running page in the Running Documents , all that displays is the source page and not the page that is running in the browser. Doing these same steps in IE6 worked fine. Also, note that the debugger statement does break but only shows the source page (not the running page) in Visual Studio and places the break at the end of the </html> tag. Therefor ...Show All
sanmarcos ASP.NET Error - The request could not be submitted for background processing
Dear All, I am recieving an intermittent error, with the details at the bottom. Essentially i have a webpage that refreshes ever 10 seconds. A new dataset is populated and then passed to the Crystal Report Source object as below to update the contents of the report. Does anyone have some ideas as to what i should do any help would be greatly appreciated. reportData = new ReportData (); ta_OvenStatus = new rd_OvenStatusTableAdapter (); ta_OvenStatus.Fill(reportData.rd_OvenStatus, tb_CurrentUser[0].LoginId, tb_CurrentUser[0].OsvUseAlertFlag); rsOvenStatus.ReportDocument.SetDataSource(reportData.rd_OvenStatus as DataTable ); Error Message Recieved: Error in File C:\DOCUME~1\JUPITER\ASPNET\LOCALS~1\Temp ...Show All
Insignia Launch WPF app from Browser
Let's say I distribute a WPF app through a web page using ClickOnce technology. Then I want the user to be able to launch the app in the future by clicking on a link in the browser. Is this possible I don't even really want them to see the app in the Start menu or elsewhere on their machine. I really don't want the user to know they're running a local app. It should act like part of our web site. Brian If you want the app to look like part of your web site, you can create an XBAP (WPF Browser Hosted Application). When you click on a link to the XBAP file on your web site, it will download and run the XBAP in the browser. XBAPs have no shell presence (start menu, desktop icons, etc.) If you are usi ...Show All
Joshua Yates Outlook Sennt Items....
Hey, I am using outlook 2003 with an Imap connection.I have setup a rule to move the sent messages from my personal folder to teh sent items folder on teh IMAP server.Now i am asking a different thing.Is it possible that outlook should ask me to which folder I wish to store the message after sending a message.Pls help me as my previous mail client pegasus had this feature and the users are askin for this feature. Ajay Hello Kris, this is just a fast simple sample on what you can do. Just hacked it into Outlook VBA (Start Outlook and press Alt+F11) Doubleclick ThisOutlookSession and past in this code: Public WithEvents m_monitoredFolderItems As items Private Sub Application_Startup() &n ...Show All
Mashrur Threading problem in WPF
I'm having a problem which I expect is by design, but I can't find any documentation on it. When I create an object on another thread and then try to databind to it from the UI thread I get a System.InvalidOperationException with the message "The calling thread cannot access this object because a different thread owns it." That seems to make sense. The object was created by another thread so access to it is restricted to avoid potential problems. It's just that owning thread has exited and I want to go on using the object. If the object has been stamped with the ID of the thread that created it, is there a way to change it Just out of interest, if I call Dispatcher.CheckAccess() before I databind the object it returns tr ...Show All
mcdonaldn Distort VisualBrush
I want to distort a VisualBrush by manipulating each corner of its definining rectangle independently. I've tried doing the following: VisualBrush vb = new VisualBrush; vb.Visual = MainGrid.Children[0]; PathSegmentCollection psc = new PathSegmentCollection(3); psc.Add(new LineSegment(new System.Windows.Point(Top + Width, Top), true)); psc.Add(new LineSegment(new System.Windows.Point(Top + Width, Top + Height), true)); psc.Add(new LineSegment(new System.Windows.Point(Top, Top + Height), true)); PathFigure pf = new PathFigure(new System.Windows.Point(Top, Left), psc, true); PathFigureCollection pfc = new PathFigureCollection(1); pfc.Add(pf); PathGeometry pg = new PathGeometry(pfc); Path p = new Path(); p.Data = pg; p.Fill = vb; ...Show All
George1905 Set the SignedInfo id attribute
Hello, I am building a Client-side web service that must output the following SOAP Header. <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <wsse:Security xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/07/secext"> <wsse:BinarySecurityToken valueType="wsse:X509v3" encodingType="wsse:Base64Binary" id="X509Token"> MIIEZzCcA9cgwaABQfd86afd2g... </wsse:BinarySecurityToken> <ds:Signature xmlns:ds="http://www.w3.org/2000/09/xmldsig#"> <ds:SignedInfo> <ds:CanonicalizationMethod> Algorithm="http://www.w3.org/2001/10 ...Show All
bagjuice Hi, how can remove a empty column from preview of crystal reprot?
I have a Crystal report with 700,000 records. I grouped this by fields "PROCESS" and "OPERATION". Under the Grouped Operation field there are many duplicate numbers such as 10 or 20. I want to suppress the duplicate numbers and only show each distinct number once for each Grouped Process & Operation. Example: Process Operation LEFC710 10 LEFC710 10 Process Operation LEFC730 10 LEFC730 10 LEFC730 20 LEFC730 20 LEFC730 30 LEFC730 30 In this example I would like to see only: LEFC710 &nbs ...Show All
Ryn How to access "Compress Images" function with VSTO
Hi there, I'm sure everybody knows the functionaltity to compress Images within Office Documents. With the contextmenu of any image you can access the properties of the image an there is a button "compress". (I've never used the english version of office so I home my translation is correct). Then you can select some options for the compression (crop image, resolution,...) What I'd like to do is, access this functionality with VB.NET in VSTO I've already tried to find it within the Interop.Word Classes but didn't find anything. Does anybody know how to do this Thx in Advance Steve Pretty much, if the images are already in the documents. About all I can imagine would be Save the d ...Show All
mariap VSS Server 6.0 & 2005 Side By Side
Can I install VSS 2005 Server on a machine thats running the VSS 6.0 server process Will there be conflicts in the registry, databases etc The database is not changed when merely installing VSS 2005. There are small differences in the way certain things are parsed from the database (Unicode files, time zones). You'll be left with 2 versions of the tools installed side-by-side. I'd install 2005 if you can. We fixed a lot of bugs. Order shouldn't matter. Huh You lost me. I installed VSS 6.0d on one of our Network file servers. Our developers connect throught thier VSS client software from thier workstations to the VSS server on the file server that hosts the vss da ...Show All
