Indeed if you can do what you want without iteration via set based commands then that would be preferable due to the performance problems associated with Cursors.
As Salem says arithmetic in hexadecimal is the same as in decimal.
Decimal is base 10, there are 10 symbols 0,1,2,3,4,5,6,7,8,9.
10 in decimal is 1 ten and 0 units, 11 is 1 ten and 1 unit etc…
Hexadecimal is exactly the same except its base is 16, there are 16 symbols...
Hi JohnEOasis,
sorry if i missunderstand the question but:
To loop through a query output table use a cursor.
The example below will read each row of an eventsTable
reading the EventID,StartDate and EndDate into 3 variables
Declare your cursor for the table
and the variables to hold your...
With the last post you would need to reset RowOffset to 0 for each new sheet. I really need more coffee :)
Sub Summarize()
'
' Summarize Macro
' by Olaf Bogus
'
Dim Counter As Long
Dim Source As Workbook
Dim Dest As Workbook
Dim DestSheet As Worksheet
Dim RowOffset As...
Quick modification, this will copy each source book to a new sheet in your destination book.
Sub Summarize()
'
' Summarize Macro
' by Olaf Bogus
'
Dim Counter As Long
Dim Source As Workbook
Dim Dest As Workbook
Dim DestSheet As Worksheet
Dim RowOffset As Integer
Const...
This copies range (B10:O29) from each sheet in the source book to different rows in the destination "DB" worksheet
Sub Summarize()
'
' Summarize Macro
' by Olaf Bogus
'
Dim Counter As Long
Dim Source As Workbook
Dim Dest As Worksheet
Dim RowOffset As Integer
Const Directory...
The first error is most likely due to the type of variable msg is. Check you arn't mixing managed and unmanaged code.
The second is a result of the first. Try...
String^ msg("The Message"); string on the managed heap
if (MessageBox::Show(msg,"Warning",MessageBoxButtons::OKCancel) ==...
you could try
char* wch = (char*)(void*)Marshal::StringToHGlobalAns(this->textBox1->Text);
//Do stuff with wch
Marshal::FreeHGlobal(wch); // dont forget to free the created char*
If i understand you correctly I believe that the TreeNodes Tag property is what you are after. Any Object derived type can be assigned to this property.
O.B
This is just one way of doing it.
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(/*your xml here*/);
XmlNode userInputsNode = xmlDoc.SelectSingleNode("system/base/userinputs");
foreach(/*your objecthere*/ in /*your ArrayList here*/)
{
XmlNode nodeToAdd =...
this is how to open a common dialog open/save this is set to open and I have added the *.xtr filter for you.
CFileDialog dlg(TRUE/*Open=TRUE Save=False*/,NULL/*Filename Extension*/,"Directory Selection"/*Initial...
...call.
The example below calls a function from myDll.dll called myfunction. myfunction takes and returns an int.
//function signature
typedef int (*THEFUNCTION)(int);
//dll instance and function
HINSTANCE dllinstance ;
THEFUNCTION theFunctionAddress ;
//load the DLL
dllinstance =...
...MFC then something along the lines of...
CFileDialog dlg(FALSE,NULL,"Directory Selection",OFN_ENABLESIZING|OFN_EXPLORER|OFN_FILEMUSTEXIST,"Text (*.txt)|*.txt|All Files (*.*)|*.*||",this);
if (dlg.DoModal() == IDOK)
{
CString fileName = dlg.GetFileName();
}
the bit I think you are...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.