Click here to Skip to main content
16,005,316 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralConvert SYSTEMTIME to BSTR Pin
banski24-Jul-05 4:15
banski24-Jul-05 4:15 
GeneralRe: Convert SYSTEMTIME to BSTR Pin
John M. Drescher24-Jul-05 4:30
John M. Drescher24-Jul-05 4:30 
GeneralRe: Convert SYSTEMTIME to BSTR Pin
banski24-Jul-05 5:01
banski24-Jul-05 5:01 
GeneralRe: Convert SYSTEMTIME to BSTR Pin
John M. Drescher24-Jul-05 14:23
John M. Drescher24-Jul-05 14:23 
GeneralRe: Convert SYSTEMTIME to BSTR Pin
banski24-Jul-05 22:09
banski24-Jul-05 22:09 
GeneralRe: Convert SYSTEMTIME to BSTR Pin
John M. Drescher25-Jul-05 16:40
John M. Drescher25-Jul-05 16:40 
GeneralRe: Convert SYSTEMTIME to BSTR Pin
banski27-Jul-05 1:21
banski27-Jul-05 1:21 
GeneralCreate Tables Pin
Saksida Bojan23-Jul-05 23:30
Saksida Bojan23-Jul-05 23:30 
Can anybody tell me how to create tables. I am putting a sample using adox but i got verious error. And by using sql querry, nothing happens. Please Help

ADOX::CatalogClass *cat = new ADOX::CatalogClass();
			String *strDataName = String::Concat(Application::StartupPath, "\\Data\\Blank.mdb");
			String *strCreate(S"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=");
			strCreate = String::Concat(strCreate, strDatabaseName, "; Jet OLEDB:Engine Type=5");
            cat->Create(strCreate);

			ADOX::Table *tbl;
			tbl->Name = "CD";

			tbl->Columns->Append( S"ID", ADOX::adInteger);
			tbl->Columns->Append( S"Name", ADOX::adVarWChar);
			tbl>Columns("ID").Attributes = ADOX::adKeyPrimary;

						cat->Tables->Append (tbl);

Questionhow to copy a function as a whole from onre c++ file to another c++ file Pin
fox_mulder_fbi23-Jul-05 4:24
fox_mulder_fbi23-Jul-05 4:24 
AnswerRe: how to copy a function as a whole from onre c++ file to another c++ file Pin
Christian Graus24-Jul-05 19:04
protectorChristian Graus24-Jul-05 19:04 
GeneralRe: how to copy a function as a whole from onre c++ file to another c++ file Pin
arshadthegreat25-Jul-05 20:43
arshadthegreat25-Jul-05 20:43 
GeneralServer Command Routing Pin
DhCole22-Jul-05 23:16
DhCole22-Jul-05 23:16 
GeneralFile Monitoring Using ReadDirectoryChangeW Pin
Sheela_R22-Jul-05 20:43
Sheela_R22-Jul-05 20:43 
GeneralControlling my Console Pin
jinbabaj22-Jul-05 9:21
jinbabaj22-Jul-05 9:21 
Generalparse Pin
iboett2s22-Jul-05 2:56
iboett2s22-Jul-05 2:56 
GeneralRe: parse Pin
Christian Graus24-Jul-05 19:06
protectorChristian Graus24-Jul-05 19:06 
GeneralRe: parse Pin
gecool10-Aug-05 22:25
gecool10-Aug-05 22:25 
Generalstop another dialog exe Pin
chenggong22-Jul-05 2:48
chenggong22-Jul-05 2:48 
Generalmc++ icons/resources Pin
istrasci21-Jul-05 10:50
istrasci21-Jul-05 10:50 
GeneralRe: mc++ icons/resources Pin
ursus zeta27-Jul-05 9:50
ursus zeta27-Jul-05 9:50 
GeneralRefreshing the iterator Pin
Pazzuzu21-Jul-05 5:31
Pazzuzu21-Jul-05 5:31 
GeneralRe: Refreshing the iterator Pin
Christian Graus21-Jul-05 13:40
protectorChristian Graus21-Jul-05 13:40 
GeneralRe: Refreshing the iterator Pin
Pazzuzu25-Jul-05 2:30
Pazzuzu25-Jul-05 2:30 
QuestionSystem::Drawing::Rectangle problem??? Pin
richiemac20-Jul-05 3:20
richiemac20-Jul-05 3:20 
AnswerRe: System::Drawing::Rectangle problem??? Pin
Christian Graus20-Jul-05 12:44
protectorChristian Graus20-Jul-05 12:44 

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.