|
adamlowery wrote: Hi, how do you go about viewing the source code in a program that I have downloaded?
Download the source code if it is available.
If its a java program, there are many decompilers that generates the java code out of the byte code.
-Prakash
|
|
|
|
|
Thanks for that. Much appreciated.
|
|
|
|
|
Hi!
What I want to do is to save many (70k+) rtf strings into one file. The problem is that rtf uses \r\n, which causes that only a part of a string is read from the file when I try to load it.
I'd like to avoid reading/writing fixed length block for each string since their length varies from 50 to 1200 characters (plain text, make it x3 in rtf).
If anybody has a way of doing it without saving as text, reading line-by-line and checking whenever it is a predefined separator I'd really appreciate it.
No .Net please (I’m already feeling bad about using MFC and I think I’ll have to send some angry emails to billg@microsoft.com just to feel better).
this:
CStdioFileEx input; //CStdioFile-derived class for Unicode/Multibyte
CStringW theString, temp;
input.open (_T("somefile.txt"),CFile::modeRead);
input.ReadString(temp);
while(theString != definedSeparator)
{
theString.Append(temp);
input.ReadString(temp);
}
just looks bad.
Maciej Lisiewski
"The day that Microsoft makes something that doesn't suck is probably the day they start making vacuum cleaners"
-- modified at 8:52 Sunday 8th January, 2006
|
|
|
|
|
Hi,
i need to read XML file in my Dialog window.
how can i do this?
|
|
|
|
|
checkout MSXML set of apis to read XML document.
-Prakash
|
|
|
|
|
In case you don't want to use MSXML, have a look at the TinyXML library:
http://www.grinninglizard.com/tinyxml/index.html[^]
Best regards
Dominik
_outp(0x64, 0xAD);
and
__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do??
(doesn't work on NT)
|
|
|
|
|
Do anyone know any online
c/c++ or vc++ question sites
where i can get some good
kicking questions
thank you
vikas
Vikas Amin
Embin Technology
Bombay
vikas.amin@embin.com
|
|
|
|
|
First kicking question!
do u know google?
and read this
-Prakash
-- modified at 5:24 Sunday 8th January, 2006
|
|
|
|
|
G Gle
My newly born
child who is 5 months old also knows it
Vikas Amin
Embin Technology
Bombay
-- modified at 0:29 Monday 9th January, 2006 
|
|
|
|
|
|
thanks finally
i got some good stuff
Vikas Amin
Embin Technology
Bombay
|
|
|
|
|
Hi all:
I have a tree control with checkbox inside dialog and I added the following message map:
ON_NOTIFY(NM_CLICK, IDC_TREE1, &CCheckBoxDlg::OnNMClickTree1)
And before the CCheckBoxDlg::OnNMClickTree1 finish. I've counted all the checked child items which belonging to specific parent. But it seems that the CTreeCtrl class doesn't take the items I've just check/unchecked into consideration before the NM_CLICK finish. In other words, I always get the item's previous check/uncheck value. How can I do my part after the check/uncheck default processing finished, but still inside NM_CLICK?
|
|
|
|
|
i havea class in my local main int i am trying to make a for loop to look for a empty class to put my data in
grahpic_card gc[10];
int i;
for(i;i<10;i++)
{
if(gc[i].model=="")
{cin>>gc[i].model;}//by the way model is an char[50]
}
but this does not work since the object was created as a local is there any way to make this work?
|
|
|
|
|
I would like to suggest you to buy a good book on C++ and read it
-Prakash
|
|
|
|
|
I suggest Bruce Eckel
yeh its and author name , i dont know if the spell is wrong.
Vikas Amin
Embin Technology
Bombay
vikas.amin@embin.com
|
|
|
|
|
He needs it not me.
-Prakash
|
|
|
|
|
Ok prakash
Vikas Amin
Embin Technology
Bombay
vikas.amin@embin.com
|
|
|
|
|
|
The MSDN docs say "The path can be specified as a Unicode string or a PIDL" for the BFFM_SETSELECTION message (inside a BrowseCallbackProc function after calling SHBrowseForFolder), but when I send a Unicode string instead of an ansi one it fails. Is the documentation wrong?
|
|
|
|
|
Did you set the wParam as true?
-Prakash
|
|
|
|
|
yep, it works fine with an ansi string.
|
|
|
|
|
How are you sending the unicode string ? can you dump the section of code ?
-Prakash
|
|
|
|
|
if you uncomment the commented out lines it works fine in unicode builds but not ansi. it's being converted to unicode ok because OutputDebugStringW prints what it's supposed to.
int CALLBACK BrowseCallbackProc_SetInitFolder(HWND hWnd, UINT uMsg, LPARAM lParam, LPARAM lpData)
{
if (uMsg == BFFM_INITIALIZED)
{
SendMessage(hWnd, BFFM_SETSELECTION, TRUE, lpData);
}
return 0;
}
|
|
|
|
|
In Ansi build you should NOT convert the string to Unicode while using windows APIs,
Check this link[^] and search for BFFM_SETSELECTION
The Microsoft documentation has a couple of minor errors I should point out in case you try to program SHBrowseForFolder in C. The documentation says to pass the string for BFFM_SETOKTEXT in WPARAM; actually, it's LPARAM. It also says that BFFM_SETSELECTION requires a Unicode string, but BFFM_SETSELECTION is available in both A and W flavors, so you can use LPCTSTR.
-Prakash
-- modified at 23:38 Sunday 8th January, 2006
|
|
|
|
|
Mr.Prakash wrote: The Microsoft documentation has a couple of minor errors
ah, thats what i thought. thanks.
|
|
|
|