Search:
Type: Posts; User: Saeed
Search :
Search took 0.04 seconds.
January 28th, 2013 10:00 PM
Hi
I am posting this thread to see if anyone has come across extracting data from a winword document and putting that in another document.
What i woudl like to do is to be able to read a...
I m not sure if going through the processes in the taskmanger is going to help me with this but this is something i want to do and before i start to try a few things thought pop that question in here...
November 27th, 2011 10:40 PM
In compliment to what Aray said I hope you have not forgotten to register your dll
>RegAsm.exe smanageddll.dll /tlb:smanageddll.tlb /codebase
You have to run this command before being able to...
November 25th, 2011 02:36 PM
give me your email and i will send u my proj on MONDAY , its the Weekend now
November 24th, 2011 04:35 PM
HI
I m sorry but I dont recall what the remedy was.
I somehow fixed the issue and the project is working but Cant remember what I did.
August 31st, 2011 06:11 PM
Yes you are right
must have been one of those days for me that I logged on here sleepy.
August 30th, 2011 08:12 PM
try a simpler soultion:
string.Empty.PadLeft(i, ' ');
August 8th, 2011 12:52 AM
In
string y= "CodeGuru site"
string result = string.Format("%8s",y);
Is there a way that "%20s could be a dynamic text ?
string format = "site is %8s";
string result =...
Thanks paul;
but i do need the pointer as it contains a series of Values
sprintf(textUID,"%s%02x ",textUID, *pabUID+i));
textUID is a char* with enough number of bytes allocated. That has...
There is an API that I need to call to fetch a VALUE (UID)
//declaration
RET_STATUS ActivateIdle(uint8_t *pabATQ = NULL,
uint8_t *pbSAK = NULL,
...
October 20th, 2010 07:21 PM
After 11 years, Thanks to dot net and c sharp , bye bye cpp
Thanks Hanne;
Good work .
Cheers
I am displaying an Image in a fixed size section of screen say X and Y
If the picture happend to be smaller or bigger I use stretch to fit it in my area of control.
Now the area could be wider or...
April 30th, 2010 12:48 AM
mTrack = new Regex(@"^%B\d{8,19}\^.{1,26}\^\d{2}(01|02|03|04|05|06|07|08|09|10|11|12)\d{3}((.{9,57})+|\^)\?", RegexOptions.None);
between the two ^ it says minimum 1 , Maximum 26
This I...
March 25th, 2010 10:20 PM
Thanks for teh reply...
What you have posted shoudl deal with a string terminator ,\r\n or \r\n\r\n
An issue has risen and I know it has to do with having some binary in the record .from exp i...
March 25th, 2010 09:24 PM
istream& getline (char* s, streamsize n );
istream& getline (char* s, streamsize n, char delim );
Hi
Thanks for the reply.
The file is in binary .... records may contain control characters,...
March 25th, 2010 06:42 PM
Hi C++ gurus;
string strBinAll = s0.ReadToEnd();
s0.Close();
string[] records = Regex.Split(strBinAll, "\r\n");
in C# .net one can easily split a...
March 15th, 2010 12:37 AM
Ok for those that may have the same problem here is my conclusion:
DO NOT use Ole
use Microsoft.Office.Interop.Excel
Using that I managed to read/fetch what was in the spreadsheet regardless...
March 14th, 2010 07:49 PM
Have tried all that. removing locks on cell formulas , sheet
again once pasted from other cells its OK , as soon as you modify it
you wont get anything back
March 12th, 2010 07:21 AM
Hi thanks for the reply
sample xls is attached within the zip file.
Rows 12-15 ,Column Z
March 11th, 2010 11:13 PM
I have functions that use
OleDbCommand , OleDbDataReader and OleDbCommand
to read values of cells within an excel sheet.
it works fine for everything else , however in some cases like:
Row...
January 20th, 2010 05:32 PM
Hi;
I am running into a problem that I dont seem to be able to find the answer however someone who deals with OleDbDataReader most likley knows the answer.
When a cells attribute is General
...
January 10th, 2010 05:31 PM
apologies
i did not scroll down enough to see the code ;)
Thank You
January 7th, 2010 09:57 PM
This is a unit test to ensure 8 bit data (00-FF) can be placed in an string moved to a byte array and vice versa and nothing is lost in this conversion.
it seems that base64String does not seem...
January 6th, 2010 11:35 PM
If Encoding ignores the unprintable characters , what this means is some of the data would be lost when they are moved to the string objext is not it?
then teh answer woudl be NO i guess to my...
Click Here to Expand Forum to Full Width