Click here to Skip to main content
15,887,683 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
QuestionQuery to copy the table with Data and Constraints in SQL Server Pin
siddisagar6-Jan-10 0:56
siddisagar6-Jan-10 0:56 
AnswerRe: Query to copy the table with Data and Constraints in SQL Server Pin
LunaticFringe6-Jan-10 1:05
LunaticFringe6-Jan-10 1:05 
GeneralRe: Query to copy the table with Data and Constraints in SQL Server Pin
siddisagar6-Jan-10 1:12
siddisagar6-Jan-10 1:12 
GeneralRe: Query to copy the table with Data and Constraints in SQL Server Pin
LunaticFringe6-Jan-10 2:27
LunaticFringe6-Jan-10 2:27 
QuestionATL ActiveX control embedded in Internet Explorer not receiving WM_CREATE, WM_DESTROY, WM_SHOWWINDOW messages Pin
Member 455120828-Dec-09 23:55
Member 455120828-Dec-09 23:55 
QuestionProblem in transform function Pin
ashtwin16-Dec-09 1:50
ashtwin16-Dec-09 1:50 
AnswerRe: Problem in transform function Pin
Stuart Dootson16-Dec-09 6:45
professionalStuart Dootson16-Dec-09 6:45 
GeneralRe: Problem in transform function Pin
ashtwin16-Dec-09 17:34
ashtwin16-Dec-09 17:34 
Hi,
Thanks for replying. I am using VS98(VC6.0) Smile | :) .

The headers file and defination of PC is as follows

#include <algorithm>

#include <functional>

#include <iomanip>

#include <iostream>

#include <map>

#include <string>

#include <utility>

#include <vector>

 

using namespace std;

 

class PC

{

public:

            enum PC_type { Dell, HP, IBM, Compaq };

            

            PC( PC_type appliance = Dell, int model = 220,

                        int serial = 0 );

            

            bool operator<( const PC& rhs ) const;

            

            PC_type appliance() const;

            int model() const;

            string name() const;

            

            void print() const;

            

            int serial() const;

            

private:

            PC_type appliance_;

            int model_;

            int serial_;

            

};

GeneralRe: Problem in transform function Pin
Stuart Dootson16-Dec-09 21:30
professionalStuart Dootson16-Dec-09 21:30 
GeneralRe: Problem in transform function Pin
ashtwin17-Dec-09 0:25
ashtwin17-Dec-09 0:25 
GeneralRe: Problem in transform function Pin
Stuart Dootson17-Dec-09 0:26
professionalStuart Dootson17-Dec-09 0:26 
GeneralRe: Problem in transform function Pin
ashtwin17-Dec-09 21:33
ashtwin17-Dec-09 21:33 
GeneralRe: Problem in transform function Pin
Stuart Dootson17-Dec-09 21:36
professionalStuart Dootson17-Dec-09 21:36 
GeneralRe: Problem in transform function Pin
ashtwin18-Dec-09 1:53
ashtwin18-Dec-09 1:53 
GeneralRe: Problem in transform function Pin
Stuart Dootson18-Dec-09 1:57
professionalStuart Dootson18-Dec-09 1:57 
GeneralRe: Problem in transform function Pin
ashtwin18-Dec-09 2:31
ashtwin18-Dec-09 2:31 
GeneralRe: Problem in transform function Pin
ashtwin17-Dec-09 0:29
ashtwin17-Dec-09 0:29 
QuestionATL interfaces/COM problem in Vista Pin
T800G13-Dec-09 2:53
T800G13-Dec-09 2:53 
QuestionA quick connection point question... Pin
asdfhjkasdf dfhjksdf12-Dec-09 19:44
asdfhjkasdf dfhjksdf12-Dec-09 19:44 
AnswerRe: A quick connection point question... Pin
Jonathan Davies13-Dec-09 3:48
Jonathan Davies13-Dec-09 3:48 
QuestionCOM/ATL interfaces Pin
asdfhjkasdf dfhjksdf8-Dec-09 16:39
asdfhjkasdf dfhjksdf8-Dec-09 16:39 
AnswerRe: COM/ATL interfaces Pin
Jonathan Davies9-Dec-09 6:04
Jonathan Davies9-Dec-09 6:04 
GeneralRe: COM/ATL interfaces Pin
asdfhjkasdf dfhjksdf9-Dec-09 8:09
asdfhjkasdf dfhjksdf9-Dec-09 8:09 
GeneralRe: COM/ATL interfaces Pin
Jonathan Davies9-Dec-09 8:47
Jonathan Davies9-Dec-09 8:47 
GeneralRe: COM/ATL interfaces Pin
asdfhjkasdf dfhjksdf9-Dec-09 10:32
asdfhjkasdf dfhjksdf9-Dec-09 10:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.