Mike.PD's Q&A profile
SQL Server Restoring just a table from a full backup
is there a way to restore certain tables from a full backup I am not sure. We are using Great Plains 9 and my bose told me he just wants to backup and restore payroll. ...Show All
.NET Development MSMQ in a Network Load Balancing server farm
Hi I have a slightly bizarre question based on the use of MSMQ within a load-balanced farm. In general, I can use load balancing to my advantage - I simply replace the physical host with that of the virtual server and I'm laughing. However I have one scenario where I need clients to send messages via MSMQ to the virtual server, but have only one (master) server in the farm process the messages. The master server is decided (v ...Show All
Windows Forms Databinding across multiple forms?
Hi All, I'm fairly new to .Net Windows Forms development and I'm curious how one would normally accomplish the following: - Assuming an assembly created by another developer has a few methods that returns a dataset containing a single datatable. ...Show All
Microsoft ISV Community Center Forums ScrollBars for Userforms
hi, I want to enable scrollbars for the userforms created during design time. I am adding certain no of controls based on an input during runtime to the userform which was created during design time. I want to have the size of the userform fixed and if the controls are more then enable the scrollbars so that we can scroll and view the controls during runtime. Is there any way to do this regards, sk80. ...Show All
Visual C# How to pass reference parameter to unmanaged dll
Hi I have a function in unmanaged(VC++) dll which is accepting a refernce parameter void check(UInt32& c) { c=20; } I want to call this function from my managed code(C#) so i used the following code class Program { [DllImport("samp.dll")] public static extern void check(ref UInt32 c); static void Main(string[] args) { UInt32 s = 0; check(ref s); Console.WriteLine(s.ToString ()); Console.ReadLine(); } } but it shows me the error&quo ...Show All
.NET Development Where to start? confused....
Newbie here... I have a split Access database, and want to use SQL Server for the Back-end (locally, for now), but can't get it to work. I've installed (without any problem) the June CTP SQL Server 2005 Express, along with the Express Manager.. I can get into the configuration manager fine, but don't know what to do once inside... When i start the express manager, it asks for the server name... i've tried every name i can think of, but none work ...Show All
Visual Studio Create a diagram by using custom code
Hi all, I am trying to create a diagram by using some custom code but facing some problems. Not sure if I am on the right way. I am first trying to create a "store" (Microsoft.VisualStudio.Modeling.Store). after that I am trying to create a new diagram ans suply it the new (empty) store by using code that looks like this: ServiceDescriptionDiagram diagram = ServiceDescriptionDiagram.CreateServi ...Show All
Visual C# Adding ListView Groups through code
The following code doesn't add the group names to the listview control. Anyone have any suggestions This is coming straight out of the documentation too... private void Form1_Load( object sender, EventArgs e) { // Adds a new group that has a left-aligned header listView1.Groups.Add( new ListViewGroup ( "Group 01" , HorizontalAlignment .Left)); listView1.Groups.Add( new ListViewGroup ( "Group 02& ...Show All
Visual Studio Team System Please help - installation error!
Hi, I've been trying to install TFS since last week without succeed. I've followed all the guides and requirements such as excluding reports IIS, creating user accounts, but still receive the error below. D:\Program Files\Microsoft Visual Studio 2005 Enterprise Server\BISIISDIR\sdk\bin\BisSubscribe.exe" /eventType ArtifactChangedEvent /userid ISTEAMSERVER\TFSService /deliveryType Soap /Address http://ISOFT-TESTER:8080/Currituck/BisService.asmx ...Show All
SQL Server Invalid Data Type error with Subreports
I have a report with two subreports. The parameter connecting the report with the subreports is based on a field with a datatype of UniqueIdentifier. If I run each of the subreports by themselves, entering in value for the parameter, they run fine. When I try to run the master report, it runs, but the subreport sections contain the following text instead of the correct output: "Error: Subreport could not be shown." The Output window ...Show All
Visual C++ SetEvent not notifying MsgWaitForMultipleObjects
<JockeP@discussions.microsoft.com> wrote in message news:30323ae2-a37a-4445-9d70-1c57e023701c@discussions.microsoft.com > First-chance exception in TestPosNetwork.exe (KERNEL32.DLL): > 0x80010001: (no > name). RPC_E_CALL_REJECTED "Call was rejected by callee". Do you have a message filter installed, by any chance -- With best wishes, Igor Tandetnik ...Show All
Visual C++ Is partial redistribution of VS 2005 DLLs allowed?
We're looking at migrating our applications from Visual C++ 6 to Visual Studio 2005. We link in the MFC and the C-runtime DLLs. Since users download our application over the Internet, we need to minimize the download size as much as possible. We would need to redistribute the VS 2005 DLLs as applocal. Does the license agreement for redistribution require that the entire contents of the Microsoft.VC80.CRT and Microsoft.VC80.MFC ...Show All
.NET Development Bug with NullableConverter ?
When attempting to convert Decimal to Decimal at runtime Type targetType = typeof(decimal ); decimal newPropertyValue = 2.3; -------------------------------------- NullableConverter nullConverter = new NullableConverter (targetType); &nbs ...Show All
Windows Forms regarding vb.net windows datagrid
Hi all, Is it possible to display the excel sheet into vb.net windows datagrid If any one have ideas regarding this, please let me know thanks in advance First, you have to load the excel sheet into a DataSet. You can use OleDb for ...Show All
Visual Studio Team System FxCop Visit* methods
Hi Guys, Does any one have any documentation about what visit* like visitmethod do I need to check if any method uses lock in any method or not through custom rules in FxCop. Any pointers will be of help. Thanks in advance. Hi Rajeev, There currently is no documentation on what the Visit methods do. Basically all that the Visit methods do is walk the tree representing the binary (e.g. VisitType ...Show All
