Answer Questions
C_TO Subreport Report through Toggle event?
Hello, Trying to run a subreport through the Toggle event but all I see the toggle args giving me is Cancel. Has anyone tried using the Toggle event to run a subreport. Can you provide any pointers or perhaps point me to some sample code Thanks! --PhB No, sorry. I ended up running it though a link. Hi, Did you get any info. on this elsewhere, i am trying to do the same thing. Thanks, Anand. ...Show All
Knvb1123 Filed to import .ACF files to Access 2003
I use Visual Source safe v6.0 for developing Access 2003 applications. I can not get Forms from Source Safe for one of the Access database. The error message is "Filed to import file 'c:\~.ACF' into Microsoft Access" Does anyone know how to fix this problem Thanks for the pointer. I'm not sure who owns this tool but I'll try to find out. You should be able to check the properties without needing Admin rights. Rightclick the file in VSS Explorer -> Properties. If the type is "text" but the file contains binary data then it's possible for it to become corrupt. To be safe, add .ACF to the list of binary ...Show All
Spartan8392 luna.blue.xaml?
Is there a Luna Blue WPF theme available By Luna Blue I'm referring to the teal coloring scheme from Office 2007. I think you are looking for the Luna.NormalColor sdk "The Luna theme is used for Windows XP style and includes three color variants: Blue (NormalColor), Olive Green (Homestead), and Silver(Metallic)." ...Show All
fcjh Dynamic Crystal Report in web Export and print
I have created a crystal report which is genetrated dynamically on Web Form. But now when I am clicking on Export/Print or any button on the Crystal report tool bar it is showing nothing. But when the report was a static one everything was working fine. Please help me to find out the reasond and solution for this. Is this new application under the default website If it isn't you need to make a virtual directory to the crystalreportviewers directory. It may also be a permissions issue on the viewers directory ...Show All
rpoy SQL2LINQ
Does a tool like this exist Baiscally something to encapsualte all of the complex business rules/logic of the LINQ syntax. Actually, there isn't a tool that shows you the LINQ syntax starting from a SQL statement; sincerely, I can't figure out why you need to programmatically convert SQL into LINQ's query because when they are analyzed by LINQ to SQL, they are transformed back to SQL... Maybe you desire a tool showing you what you have to write in your code to perform a particular query. In this case, at this time, you have to learn LINQ query syntax studying the official documentation, watching webcasts, reading books, and so on. No other chances. Best, Fabio Ferracchiati's LINQ Blog: http://www.ferracchiati.com ...Show All
iowa242943 Object Test Bench: Invoke method that expects string[]
From Class View, is it possible to invoke a static method that expects a string[] parameter I tried to, but I can't figure out the correct syntax to pass the parameter in. {"a", "b"} does not work, I get: "Type Mismatch: 'System.String[]' expected". First you have to create String[] object. You can create this by using "Immediate Window". Immediate Window can be viewed by clicking on Debug --> Windows --> Immediate of Visual Studio 2005 menu bar. In the Immediate Window, create String[] object by typing String[] args = {"abc", "xyz"}; // or any valid syntax to create String[] object This will place args object in Object Test Bench. Now invoke your static me ...Show All
Lightening Open TCP Channels
I have some WCF services that work fine with HTTP bindings, but when I attempt to convert it to run with NetTCP bindings, it fails after about 10-12 connection attempts. I suspect that this has something to do with exceeding the maximum number of open TCP channel connections. Do I have to manually close a channel connection on the client side after using it Thanks, Chuck Here's another question on this topic that would be helpful to me... There's a fundamental difference between the way a BasicHTTP binding works and the way an NetTCP binding works that I need to better understand.... A BasicHTTP binding doesn't create a persistent connection between method calls but it seems that a NetTCP binding does. What I'm trying to ...Show All
LukeRogers15 linking with libc
I'm using the linker and libs from the DDK, and I can't for the life of me get my NASM object files to link with libc. I've tried the single threaded, multithreaded, release, and debug versions of the crt libs and I always get something like: Microsoft (R) Incremental Linker Version 7.10.4035 Copyright (C) Microsoft Corporation. All rights reserved. libc.lib(mbctype.obj) : error LNK2001: unresolved external symbol @__security_ch eck_cookie@4 libc.lib(output.obj) : error LNK2019: unresolved external symbol @__security_che ck_cookie@4 referenced in function __output libc.lib(input.obj) : error LNK2001: unresolved external symbol @__security_chec k_cookie@4 libc.lib(write.obj) : error LNK2001: unresolved external symbol @__security_chec k_coo ...Show All
mccpres VSTO and AVG...HEEELP!
Hi, today I've installed the AVG antivirus...I knew that it used to install a plugin for Outlook, but I choosed to not install it... However...my plugin stopped to work! And I've no idea why!! I tried to disable the Personal Email Scanner, reinstall the plugin, anything, ANYTHING...nothing works anymore :((((((( None of my Outlook plugins works...has anyone experienced something like that ! ! Has anyone solved it! ! ! Please, I cannot work anymore without my plugin...even starting it through VS doesn't work! I've already written top the AVG forum, but I'm hoping to find here anyone with my same experience...and maybe someone who has solved this problem :(((((((((( Thank you LastHope Ade Miller - MSFT wrote: Could you exp ...Show All
Tryin2Bgood SP1
New to the forums, haven't done a lot of reading yet. Will be soon, as I *just* installed vs2005. Honestly I ONLY needed VC++ by MS. But I'm sure there are a few of us that only needed one of the apps. Anyhow, question, any ideas on when SP1 will go final - np Good, so I got in at the right time. - np that is true :-) Kewl.. Just wondering. Also, I really don't see a lot of updates out there for VS2005. Is this true - np it's currently released in Beta but should be officially out in Q4 2006 - almost there. Probably November-ish sometime but don't quote me (would be cool if it were on my birthday ...Show All
Fositron Problems referencing an Excel project class from a Word project
I'm tryng to call a method in an Excel project class, from a Word project, but when I call the call the class constructor, I recieve an Internal Error. // Starup method in the Word Project private void ThisDocument_Startup( object sender, System. EventArgs e) { // Reference to the Excel Project ExcelWorkbook1.Sheet1 sheet = new ExcelWorkbook1.Sheet1(); sheet.ExportarGraf1( "C:\\" ); } It says that Sheet1's constructor recieves another paramether, but I don't know what it means. Thanks a lot Hi Alex "However, what I can see is that this is a method for creating a new Excel graph, from zero. Is there another way to include a component of anothe ...Show All
mhawb How to unload VSTO 2005 SE Excel Add-In
If I create an Excel Add-In for Excel 2003 using VSTO 2005 SE, it does not appear in the list of loaded add-ins under Tools/Add-Ins. How can the end user unload the add-in Since the add-in slows down Excel startup by loading the CLR, I want the end user to be able to choose whether to load/unload it. I know I can unload it by modifying the LoadBehavior value in the registry key under HKCU/Software/Microsoft/Office/Excel/AddIns, but I can't ask end users to do this. Thanks! From Tools/Customize/Commands, select the Command Category. Scroll down the list on the right until you find COM Add-ins. Drag that to the Tools menu and place it just below the Add-ins e ...Show All
PoorSQLGuy Is [BindingRequirements] no longer in WCF after June CTP...?
and if not, what has it been replaced with I want to set Require Ordered Delivery to true. I can't find anything in the online help or on the net that tells me what happened to this. Thanks, J James, BindingRequirementsAttribute has been replaced with DeliveryRequirementsAttribute. You use the new attribute in exactly the same way, only the name has changed. I hope this is helpful, Michael Green - MSFT THANK YOU! James ...Show All
soheil.plus Print problem
When i hit the print button in the report, it does'nt print the first time, or it prints the document after a few minutes. Need help, pls... I found an answer, and it did the job, 10x! http://forums.microsoft.com/MSDN/ShowPost.aspx PageIndex=2&SiteID=1&PostID=177732&PageID=2 ...Show All
soni_ace Sourcafe adding referenced assemblies
I have an asp.net solution in vs 2005 which is under vs source control thourgh sourcesafe v6.0c. The problem I am having is that if I add a reference to any external assembly, it adds it to source control (Assemblies that are built with the solution are ok). vs2005 checks these out when doing a build and so they are then locked by sourcesafe. This then means that anyone else developing the project cannot do any firther builds until the assemblies are checked back in. I have tried removing the bin folder from sourcesafe, deleteing references, adding them manually etc. but to no avail! Has any one else happened accross this before or know of any work arounds Try reading the information from this post h ...Show All
