Amernath's Q&A profile
Windows Forms Scrollable charting application
Hi, can anyone tell me which method is most likely to be used for the below posted pictures and maybe you can also post me to resources where similar samples are shown. Are these simply panels or what do you think how this is done: http://www.k ...Show All
SQL Server Create stored procedure wizard in 2005?
Where is the create stored procedure wizard in SMS 2005 that we had in 2000 ! The templates are nice, but they show syntax only. The 2000 wizard created insert update and delete stored procedures based on the table structure. Regards Richard We dont need only templates. Look another Thread about this here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=2392193&Si ...Show All
Visual C++ missing dll - mpr.dll
im building my exporter for 3d max, and max is complaning about missing dll's i load up my exporter in dependency walker, and the only sus dll is mpr.dll (its in red) all other missing ones are in the max directory as usual. I suspect mpr.dll to be the problem, but when i copy it from my system32 folder to max directory, it still complains. dependency walker says this: Error: At least one required implicit or forwarded dependency was not fou ...Show All
Visual C# drawing something to the form---
how can i draw a line or circle on my form an example will be welcome! Thanks A Lot Depending on why you want to draw on the form, you can chose which suits your needs. Options A: Use the forms Paint event, to draw the graphics everytime the form is painted... private void Form1_Paint( object sender, PaintEventArgs e) { Graphics G = e.Graphics; G.DrawLine( new Pen ( Color .Black), new Point (25, 25), new P ...Show All
Windows Forms Grab current record when not using databinding
Table: CustID int, primary key, Identity Specification = yes CustName nvarchar(20) When a customer is added the CustName field is passed to a stored procedure, therby adding the customer. The CustID is created automatically by the DB. I need to grab the value of the CustID just created by the DB. There is no windows databinding class being used. That value is needed for a foreign key into additional tables (billing adresses, phone ...Show All
Windows Forms Custom User Control
Hi all I am new to CSHarp I want to know if what I want to acomplish is possible, and how if so: I want to extend the methods of the treeview to include more custom defined methods, also I would like to create or ...Show All
SQL Server CLR Trigger
Hi, I want to call webservice in the Trigger. How to call the webservice from CLR Triggers .If anybody knows teh detail let me know. And i worked out the following Example code for CLR Trigger. using System.Data; using System.Collections.Generic; using System.Text; using System.Data.Sql; using System.Data.SqlTypes; using System.Data.SqlServer; namespace CLR { & ...Show All
Visual Studio Express Editions Debug- Setting a watch
Simply put, how do I do it Every piece of debugging software I've used so far has some way to place watches, including VB6 (which my school uses)... but I can't find how to do it in this IDE :( Please, help is appreciated so I can get back to work on my (A level) coursework (I imported it from a VB6 project and now it's been changed so that it no longer works- which is the main reason that I need the watch in the first place)... EDIT: Oh, ...Show All
.NET Development Sending large files with WSE
Hi guys. I'm trying to create a web service that will expose a method to upload a big file from a client to the server. I want to send a really big file ( aroung 1Gb ). I succeeded with 64Mb, but not with files larger than this. Any ideea Thank you in advance. Mircea Hi. Thank you very much for the answers and for your time. It pointed me to some directions. Thanks. Regards, Mircea ...Show All
SQL Server SSIS Runtime - free redistributable?
Few questions regarding the SSIS runtime... 1. Is the SSIS runtime a free redistributable like in DTS 2000 2. Can it be used to run a package where SQL Server 2005 is not installed ... e.g. on clients 3. Can the SSIS object model be used in a custom .NET application to execute packages stored on the server Is the runtime required in any way in that scenario...hope not. Also does the usage of the Object Model require any sort of SQL Server lice ...Show All
Windows Forms Icon colors not looking correct
I compiled an application using a few icons. I have changed the actual colors of the icons and now I can't get the program to use the new icons. Does anyone know how to fix this I finally got the images to work. For ...Show All
SQL Server SQL 2005 Uninstall/Install Problem WMI Configuration related
Hi, I'm the following encountering WMI error message when invoking SQL2005 setup. The SQL Server System Configuration Checker cannot be executed due to WMI configuration on the machine CAPRICORN Error:2147942405 (0x80070005). For help, click: http://go.microsoft.com/fwlink LinkID=20476&ProdName=Microsoft+SQL+Server&ProdVer=9.00.2047.00&EvtSrc=setup.rll&EvtID=70342 I'ver found other postings related to WMI errors and ...Show All
Visual C# Inheritance in C#
Hello Friends How can I inherit class usign Access Modifier (public, protected, private, internal) in C#. for e.g. in C++ we can derive as follow class DeriveClass : public BaseClass{ } or class DeriveClass : private BaseClass{ } or class DeriveClass : protected BaseClass{ } how can i do the same in C#. try the below code. using System; namespac ...Show All
Visual Basic Reference problem in Beta 2
We are developing a new VB .Net Beta 2 application. This application references some DLLs that were developed in VB .Net 2003. When I build the application, everything works fine. However, when someone else from the project team gets the latest version of the solution from SourceSafe and rebuilds, he gets an error that says "<The system cannot find the reference specified>". If he removes the reference and then ...Show All
Visual C# Is this a bug or by design? Settings declared internal when autogenerated???
In relation to this question I had concerning how to access settings that are declared in another project: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=116815#116815, I have some concerns with the way VS2005 beta 2 sets up the Settings file. When you create a Settings config file, it creates a Settings class that is marked internal to the Properties file. For example, the generated code from one I just created looks like: namesp ...Show All
