Nazar Ali's Q&A profile
SQL Server MCTS Exam 70-431 Database Administration Study Documementation and Samples ?
Hi, I am looking for good documentation and examples to use to 'study' for Microsoft exam 70-431. This has everything to do with nuts-and-bolts Database Administration of SQL Server 2005. The December BOL examples, do not cover enough topics. The topics that are covered are not in enough detail. The 70-431 exam requirements are very detailed. This seems to be a nuts-and-bolts test. I am looking for nuts-and-bolts study material. No b ...Show All
Visual C++ (54) : error C2061: syntax error : identifier 'ElapsedEventArgs'
what's wrong with this code #include "stdafx.h" #using <mscorlib.dll> using namespace System; public __gc class Timer1 { public: static void Main() { System::Timers::Timer* aTimer = new System::Timers::Timer; aTimer->Elapsed += new ElapsedEventHandler(0, Timer1::OnTimedEvent); // Set the ...Show All
SQL Server Database Mirror & Microsoft Dynamics GP
Has anyone tried mirroring any of the Dynamics GP databases yet I am looking at using this and what to see if anyone has had any problems or even know if it can be done. Thanks 1. It can be done. 2. The only problems would be performance. I don't know what a typical GP database does as far as logging or how many connections are made into the database. Anyone have an idea Thanks, mark ...Show All
.NET Development Query with Distinc Values
Hi, Another problem, hehe. I have an orders table with order_number, customer, item_number as composite primary key. The table also has date_of_order and quantity. A form in VB2005 displays the different orders in a datagridview when a customer is chosen from a combobox. The datagridview is binded to the orders table. Now, the query to extract the order numbers starts off select d ...Show All
SQL Server Cube Process Error : The version of the linked Measure group xxxxx has changed.
I have migrated all my AS 2000 to 2005. But 2 cubes A and B have a processing issue. Cube B shares data from Cube A. When I process Cube A I get this message that the version of the linked Measure Group in B has changed. I have no problem processing Cube B which actually does share data with Cube A. Any ideas Thanks Are both cubes in the same database Try processing the whole database. ...Show All
Visual C++ Debugger problem "The breakpoint will not currently be hit. No symbols have been loaded for this document."
I have recently install VS 2005 Pro and I cannot get breakpoints to work properly in my C++ Win32 application. After compiling for Debug and placing a breakpoint, when I run my program the breakpoint indicator becomes a hollow circle with an exclamation point and I see the above message when I hover over it. This makes no sense to me because I have verified the following: 1. Yes, I have compiled for Debug. 2. Output for my program indic ...Show All
Visual C++ replacement for /mapinofo:lines in Visual Studio 2005
We have a suite of Windows applications w ritten in C++ using Visual Studio 6. The executables contain a structured exception filter which, in case of an unhandled exception, logs the state of the current thread. The logged info includes the fault address, a trace of the call stack, register contents, a stack dump, etc. The Visual Studio 6.0 projects are set up to generate full map files which include line number i ...Show All
Visual C++ Debugging CArrays
Situation: class C1 { ... CString Data; int Source; }; class C2 { .... int x; int y; CArray<C1>A; C1 B[10]; }; C2 *Doc; In the debugger watch window I can view the various elements of 'B' as -Doc x = 10 y = 11 +B[0] -B[1] Data = "asdf" Source = 1 +B[2] ... Problem is viewing the CArray 'A' By default only the ...Show All
Visual C++ STL.NET
Does anyone know what is the status of STL.NET Apparently it did not ship with VS2005 or did I miss something I need STL's multimap container. Anyone know of an equivilant animal Thanks Bollwerk wrote: Does anyone know what is the status of STL.NET Apparently it did not ship with VS2005 or did I miss something I need STL's multimap container. Anyone know of an equivilant animal Thanks ...Show All
Windows Forms Deployment of windows Application on win 98
I developed project on win 2000 system by using Visual Studio dotnet. It works fine in Debug mode and compiled release version, its absolutely works fine on win 2000 system. i am using framwork 1.0. Now I want deploy this project on win 98 client machine. I installed 1.0 frame work on win98 system and afterwords i copied this release folder to client machine and run the exe file but its giving error ie. CLR error:8007000b & ...Show All
Windows Forms Saving a form layout as XML
Howdy Folks, I was wondering if there is a way to prototype a screen in VS2003 and save the layout as XML. I want to be able to deploy the layout to another machine and have the client program read the layout and reconstruct it. Thanks in Advance, Wayne Hi Wayne, Based on my research, there is no such feature provided by IDE. But I just wonder, if you want to present a Form Layout to another ma ...Show All
Windows Forms Single Instance app, Activate
Using this in Main to enforce a single instance of the app: Dim firstInstance As Boolean Dim safeName As String = Application.UserAppDataPath.Replace("\", "_") Dim mtx As Mutex = New Mutex(True, safeName, firstInstance) If Not firstInstance Then Return End If Application.Run(New Form1) ... But instead of just returning if its not the first instance, I would like to Activate the existing instance's window. I guess the question is how can I get ...Show All
Visual C++ Why is there a popupwindow for assert(false)
Hello, This code #include <cassert> int main() { assert(false); return 0; } compiled like that "/cygdrive/c/Program Files (x86)/Microsoft Visual Studio 8/VC/BIN/amd64/CL.EXE -MD -D_CONSOLE -nologo assertion.cpp produces the output: Assertion failed: false, file assertion.cpp, line 5 This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more in ...Show All
Visual Basic Replacing MSFlexGrid in Visual Studio 2005
Hey, can anybody help me with replacing FlexGrid in VS2005, since it appears they are no longer using that. I've looked on the internet all day today, but haven't found anything. I've used FledGrid for my VB6 programs, and I know it will do exactly what I want it to, but this time, I'm using VB2005 for other reasons. In my project, I'm not using any databases or db connections. Basically, a simple socket program that will display data I ge ...Show All
.NET Development XmlRootAttribute and CodeDom
Hello all, How can I generate the following code using System.CodeDom namespace [System.Xml.Serialization. XmlRoot ( "Service" , Namespace = "http: //www.domain.com" )] The code I've managed to generate is [System.Xml.Serialization. XmlRoot ( "Service" )] with this source code: type.CustomAttributes.Add( new CodeAttributeDeclaration ( "System.Xml.Serialization.XmlT ...Show All
