Ged325's Q&A profile
Visual Studio Tools for Office Modify LoadBehaviuor registry value with RegEdit?
Hi, this message has got a looong story behind... From this post, you can understand that I've moved the registries from CURRENT_USER to LOCAL_MACHINE, as was suggested for letting a VSTO plugin to be installed to All the Users on a Machine. From that moment on, NONE could see anymore the plugin in the ComAddIn list: none has confirmed that it's due to this change, but I'm quite sure. Now, the problem: how could someone enable a plugin who was soft disabled...if the plugin doesn't appear in the ComAddIn list To the users of my plugin who couldn't install it, I've asked to check the value of the LoadBehaviuor property...which was 2... So...ca ...Show All
Windows Forms Using menus overload CPU
Hi, VS 2005 C#. I have a BackgroundWorker thread updating a graphic control every 15 ms, CPU load < 5%, i.e., it works fine. But when using menus (MenuStrip) in the form, the CPU load increases to ~50%, even without actually USING the menu. I only position the mouse pointer over a menu item, I don't even click! And the animation hobbles, of course. Is this a bug Best regards, Magnus ...Show All
Windows Live Developer Forums Windows Live Messenger Official Beta Testing Forums
i got asked to beta test WLM by microsoft (like most of us) and i was wondering if there is an official forum where we could post bugs and fewature request thanks in advance and if you cant post the link here please pass it onto aarong85@ripper.com.au (my personal email so if i get flooded with emails it wont bother me) place to do it is Please refer to How to get Messenger Technical Support http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=368260&SiteID=1 ...Show All
Visual Studio classic chm Help doesn't link to MSDN Library
on new PC, reinstalled VS and Library again, but links to commonly inherited NET members like "string" display a Page Not Found error, yet the help 2 versions work in VS and in H2 Viewer... is this a registry problem does this relate to MS article 827054 or 318945 thanks >> I have to make sure I understand this enough to explain it to my bosses: The type of links created by a classic Help 1 chm file depends on the edition of Visual Studio.NET IDE on the Technical Writer’s PC at the time The classic .chm compiler would generate .chm specific types of links. It would not have any built in support for l ...Show All
.NET Development Discard changes made to datatable columns of a Dataset?
Hello, I have a windows form with several text boxes. OnLoad, I use a DataAdapter which calls a SQL sproc to retrieve it's info. The sproc returns has 3 select statements so when all is said and done, the dataset ends up with 3 tables. (table, table1 and table2) Next I use databindings.add for each of the textboxes and bind them to the appropriate column in the appropriate tables. The textboxes are readonly by default and I have an Edit button that allows them to be edited. When the edit button is clicked, a Save and a Cancel button are enabled. I have the Save portion of this working as well. The problem I have is when a User en ...Show All
SQL Server Load a SSIS package via Web Service: The package failed to load due to error 0xC0011008 "Error loading from XML.WHAT IS THAT?
Hello, I have a big problem and i'm not able to find any hint on the Network. I have a window2000 pc, VS2005,II5 and SQLServer 2005(dev edition) I created an SSIS Package (query to DB and the result is loaded into an Excel file) that works fine. I imported the dtsx file inside my "Stored Packages". I would like to load and run the package programmatically on a Remote Scenario using the web services. I created a solution with web service and web page that invoke the web service. When my code execute: Microsoft.SqlServer.Dts.Runtime.Application. LoadFromDtsServer(packagePath, "." , Nothing) I got ...Show All
Visual Basic expert system
hi any body got some idea for expert system. im developing a rule based for railways in vb6.0 ok thats something interesting ...it require a complete requirment analysis of the system u r developing for and to arrange the knowldge as per rules keep in mind the expert system should be able to infer it in correct way ...Show All
Visual Studio how to prevent JIT debugging
Hello, I run a testsuite as a batch job, and if a testprogram fails in the testsuite I don't want a window to pop up that ask me with which JIT debugger I want to debug. So in Visual Studio I unmarked everything in Tools->Options->Debugging->JIT The window still pops up and now tells me that "No installed debugger has Just-In-Time debugging ..." I also tried to remove the entry "Debugger" in HKEY_LOCAL_MACHINE\SOFTWARE Microsoft\Windows NT\CurrentVersion\AeDebug and tried Auto=0 and Auto=1 What do I wrong I run XP64 on AMD Turion, just in case that this plays a role, and I compiled with the environemt settings ...Show All
Software Development for Windows Vista can not set state machine baseclass if use signed assembly?
Hi, step 1) I have created one component which has a empty state machine workflow ( A.BaseWorkflow ) step 2) I then create a workflow library and add a state machine workflow with code behind. step 3) I can now select the state machine workflow and in the property window, changing the base class to A.BaseWorkflow Now if I set both components to be signed, (in visual stuido project property, check the "sign the assembly" and "delay sign only" check box). If I recompile A and repeat step 2) and step 3), I won't be able to set the baseclass to A.BaseWorkflow, (If I bring up the Base class selection window, it ...Show All
Visual Studio Team System Is it possible to get the connection string from the app.config file for the DataSourceAttribute?
Hello, I would like to be able to change my DataSource Attribute connection string to access the app.config file. The problem that I am running into is that the connecting string must be a constant. Do you know of any work suggestions Currently it is something like this. [ DataSource ("System.Data.SqlClient", "Server=TestServer;DataBase=TestDB;User Id=sa;Password=", "ChildSearchCriteria", DataAccessMethod .Sequential)] I would like it to be something like this. [ DataSource ("System.Data.SqlClient", ConfigurationManager .AppSettings["MyTestDB"], "TestTable", DataAccessMethod .Sequential)] Than ...Show All
Visual Studio Express Editions Numeric Problem
Hello, I am currently writing a gemetric multigrid solver as an exercise at univeristy. Until now i have developed the solver with gcc. But I want to port this project to Visual C++ 2005 Express. My Problem is that exacty the same code compiled with gcc give me the right results. But if i compile it with Visual C++ the program runs but do not give me the right results. The solving process is iterative so the defect is getting smaler with every iteration. Here is a comparision between VC and gcc: Visual Studio 2005 Express: gcc: Iteration &nbs ...Show All
SQL Server Some questions for a begginer
Ok, im a lil confused I know that SSSME (SQL Server Management Studio Express) CTP is a simple gui that you can use to manage your sql server databases and connections... In Visual Basic express, you also have the Database Explorer and the option to add a database and create a connection and a gui to edit ur database/tables/fields etc, but it starts another sqlserver.exe service under the user that is currently logged in, so does it create and start its own server or how is that working ....also when i use one, i cant use the other....so which one should i use Im going to be using connection strings and creating my own datasets/data adapters ...Show All
Visual C# how to get reference on the form class instantiated by Application.Run method
how to get reference on the form class instantiated by Application.Run method Application.Run doesn't instantiate any Form, you do. If you have code like this Application.Run(new MyForm()); just change it like this to keep a reference MyForm f = new MyForm(); Appication.Run(f); ...Show All
.NET Development Strange connection string persistence issue
I’m connecting to a MySQL database using a third party component (MySQLDirect). The issue I’m having does not seem to be a bug in the third party component as no other users are reporting issues with it and they seem unable to help. I would really appreciate if someone could give me some inspiration on how else I can think about tracking this issue down. The weird issue is: I have my MySQL database connection string in the app.config file. I’m using the MySQLDirect components in a component designer using VB.Net 2005. When I change the database name in the config file to another database, t ...Show All
Visual Studio 2008 (Pre-release) XAML Futures
Is that possible to produce something like a main logo at: http://www.relate-software.com/uk/ using XAML I mean the shape itself and 3D effects as well Thanks. "Would it worth doing that by XAML " Yes, of course it is! One decision that you likely want to make early on is whether you want real 3D or a simulated 2D as discussed on the other thread. Here is the link to Mike Swanson's illustrator==>XAML exporter, which might help you out: http://www.mikeswanson.com/XAMLExport/ You can always set up a binding between the ScaleTransform of one Geometry and another variable in y ...Show All
