Cosgram's Q&A profile
Visual Studio Crystal Report Viewer Not displaying ICON And not functioning when clicking the print.
I have an issue with Crystal report viewer where when I run my ASP.NET site in 2005 locally using the built in Web Server for Development I can see the toolbar images and when I click the print button I get the popup window prompting for how to print the report and it prints just fine. Now I publish the site to the web server I do not get the images for the toolbar and when I click the print placeholder the page just posts back to itself and nothing else happens. I already ran the "cr_net_2005_mergemodules_mlb_x86.msi" for deployment to the web server and that did not work. It almost seems as if the control is pointi ...Show All
Visual Studio Express Editions Is Visual Basic 2005 Express interpreted or compiled?
I have looked through a lot of literature, but it seems difficult to find a clear answer to this question. I can see that VB generates P-code, which is interpreted and therefore executes much slower than compiled languages, but some literature indicate that it may be possible to compile the P-code and generate a fast executing program. C is a terrible language so I am looking for a good, strong alternative, but in practice it seems that there are only two alternatives - Delphi (Pascal) and VB. Delphi is based on Turbo Pascal, which is en extremely slow implementation of Pascal - approximately 5 to 10 times slower than FreePascal. Be ...Show All
SQL Server How to get the SessionID from the html viewer?
Is there anyway I can get the SessionID of a report viewed in the html viewer It seems that the html viewer hides the rs:SessionID from the url I need the session ID to pass to a webservice to save the report as MHTML exactly in the state it has in the reportviewer. Unfortunately I can not take advantage of the export function in the toolbar because, the report has to be saved in a specific place, given a specific filename etc. /Henrik Hmm.. I am using the render method. I need the SesionID to pass to the header. Does anyone know how to get the SessionID visible in the url ...Show All
Visual C# bug in double calculations?
Hi! I just encountered a strange behaviour of the IDE: If you wannt to evaluate the result of the following expression, if in immediate window or in a watch window, the IDE hangs or crashes: double r = 2.5+(-5/System. Math .Sqrt(50)) * System. Math .Sqrt((25-(System. Math .Sqrt(50)*0.5) * (System. Math .Sqrt(50)*0.5))); Console .WriteLine(r); If you run the build app (debug or release version), it gives the correct result, wich is allmost zero (4,44089209850063E-16). This can be reproduced on different machines. I tried to report as a bug, but cannot overcome the "Profile Center" page showing up immediately after logging in, it alway ...Show All
SQL Server debugger doesn't stop at breakpoint while debugging SQLCLR function
Hi, I have created one simple SQL Server 2005 CLR function in Visual Studio 2005 beta 2. It works fine from SQL Server 2005 management studio April CTP. When I try to debug this SQL CLR function from Visual Studio 2005, I am getting the output in Output window along with debug information but it is not stopping at breakpoint. Output window says ‘No symbols loaded’. Could you please help me why it is not stopping at break point I checked configuration property and it is debug for project and solution. There is no Web.Conifg file, as it is Database project. So I changed the debug = true in machine.config file at ...Show All
Visual C# how to make a window popup when i press a button i have created
how do i make a window popup when i press a button i have created thanks Alright problem solved. I needed to use the top level indicator ^ as in... aboutForm^ about = gcnew aboutForm; as aboutForm had no intrinsic copy constructor. Although these are in the same namespace, I also needed to include the file at the top of my Form1 header. ...Show All
Visual Basic Regions bug
Every day after I’ve been working in the IDE for a while, the collapsed #regions will not open with a single click on the plus sign anymore. Instead it takes 5 to 10 clicks to open them. Actually in different source code files it takes a different number of clicks in order to un-collapse a #region . (but always the same number of clicks within the same source code file) I sure hope this will be fixed soon. It's been doing this all along since I switched in February. Any idea what's causing this Which versions on VB are you using.... VS Studio, VB Express Has it been doing this f ...Show All
Visual Studio Express Editions New Project in VB.NET
When i create a new project in Vb.NET Express. it creates a folder by name "My Project" I want to know reason for creating this folder and purpose of file under this folder. Regards Jeevan. hi, actualy you can write all your classes in one file without anyfolder or you can write your project in many files and use the commandline compiler to build your project but you have to provide path for every file, but you have to type too much like that so visual studio creat one folder and gather your files names in the .vbproj so you can open it in your IDE and compile it all at one step that will be easier and ...Show All
SQL Server Enabling the Service Broker
I'm trying to enable the Service Broker for Sql Server 2005 because I want to be able to use a SqlDependency object. I ran the following query to see if my local sql server service broker was enabled: SELECT is_broker_enabled FROM sys.databases WHERE name = 'dbname'; It came back with a value of 0 (which means it is not enabled). I tried executing the following sql command to enable it: ALTER DATABASE dbname SET ENABLE_BROKER; The query has been running for over 5 mins and just keeps spinning (should it take this long to enable the Service brfoker), so I cancel it. I even try to issue the command to see if the service broker i ...Show All
System Center where i can find it to download?
i'm looking for SCCP 2006..i'm msdn subscriber..but i can't find it for download... Any help .. SCCP now available to MSDN subscribers ...Show All
Visual FoxPro Parameter Query
I have a date field that has the hire date for an employee. I have built a search form & I would like to be able to have users search for the hire date within a time frame. (i.e. 04/01/04 and 04/30/04). How would I do this In Access I would be able to put the "between" clause in the criteria field in the query designer. I am a newbie to VFP & have NO CLUE how to do this. Thank you!!! Got it to work. ...Show All
Visual Studio Express Editions Do I need to Uninstall VS.net 2003?
My PC currently installed VS.net 2003. Do I need to uninstall VS.net 2003 before trying VS.net 2005 No, you do not need to uninstall VS .NET 2003. VS .NET 2005 will install and work alongside VS .NET 2003. ...Show All
Visual Studio Tools for Office Hidden XML Tags in Word document
I have a Word template that has a custom XML Schema attached. I would like some of the nodes to be hidden from the user, so that the nodes could contain some meta data, such as a database primary key ID. Is this possible Another approach would be to map XML nodes to custom document properties. Is this possible Thank you! // Johan Yes you can put tags in the header and footer. Thanks Paul Stubbs Program Manager http://blogs.msdn.com/pstubbs/ This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All
SQL Server SQL Server Indirect Package Configurations
Hi all I am trying to create indirect package configurations so that: 1) My configuration data is stored in a SQL Server table, and 2) The location of that table is stored in an environment variable. Achieving #1 is easy, but when I hit the "Configuration location is stored in an environment variable", I strike problems. I can specify a environment variable no problems, but there doesn't seem to be anywhere in the documentation to describe the syntax of WHAT should go in that environment variable. HELP!!!! Thanks in advance Jays If you create 1 you will see in the connection s ...Show All
.NET Development class design question
I have my class with properties and methods. I create an instance of the class and get some of its properties in my forms. When I go back to the class and try to access that property from inside the class itself, I see that it has a NOTHING value. 1/ How do I keep the value of the property between calls and instantiations of the class when I sometimes instantiate the class from different forms in my application. 2/ What is this technique called in Microsoft Jargon. I mean when I go back to the properties and finding them again not reset to nothing 3/ What s the best way to design my class in order to keep its properties and also ...Show All
