|
thanks a lot everyone, realy.
an example, in the C program. ı had wanted:
when I take "A" from keyboard, C understand it "65" Ascii.because computer run with ascii you know. like that: if('A'==65) printf("yes, this A");
ı can do this with a few variable in the program. but it s real just in that file. not anwhere apart from that c program.
thats what ı had want
ıf ı could, ı chanced it from source ( ı dont know, where is the source in operating system, in debugger or maybe in hardware )
like a frind it s nonsense.
again so thanks. ı stopped to find a way
|
|
|
|
|
Hello all !
I don't have any programming experience so thats why can't create a software.
So , I need you people help .....
Can anybody create a Family Tree Maker Program also Known as SHAJRA in Arabic for me at free of cost.
I know there are lot many programs of that type but they also include Mother name but in Islamic Family Tree we only write Male names & not of females ......
So, program must show Shajra like that
INPUT ;
Name : ------------------
Date of Birth : --------------------
Place of birth ; ----------------
Date of death : --------------------
Place of death ; ----------------
Occupation : -----------------
& also ;
Father Name : ----------------------- [in case someone doesn't know about his ancestors but when get to know that can also add it to complete the chain .
OUTPUT ;
http://i162.photobucket.com/albums/t260/noman_87/111-9.png[^]
But the language must be Arabic.
THANK YOU !
NOTE : If I have posted in wrong section then please move it to the correct section & also tell me by mailing on my email id .
|
|
|
|
|
Noman Rasheed wrote: name but in Islamic Family Tree we only write Male names & not of females ......
I'm sooooo sorry, I only do full family trees, women and men, sisters, brothers, sons and daughters, grand-fathers and grand-mothers.
M.
Watched code never compiles.
|
|
|
|
|
no problem man !
may b someone else ...
|
|
|
|
|
Today is your lucky day, see here[^].
|
|
|
|
|
what to write on those 2 blocks ?
|
|
|
|
|
Oh, just type in the kind of code that you want in the first box and your email address in the second box and voila! the code will be sent to you free of charge! It's such a life saver.
|
|
|
|
|
thanx man DONE !
now waiting for their reply
|
|
|
|
|
No problem. Anytime you need code you can just go there instead!
|
|
|
|
|
You measure democracy by the freedom it gives its dissidents, not the freedom it gives its assimilated conformists.
|
|
|
|
|
|
Yuo need to get a clue, see here[^].
How, and BTW read the posting guidelines ("How to ask a question") at the top of this message board. What you are asking is similar as if I asked you to come clean my house, free of charge of course. I think you need to come back on earth, nobody's gonna write a full program for you free of charge.
|
|
|
|
|
This is my first thread! The thread is initialized during WM_CREATE.
However their are no errors during compilation, but when I run it the program breaks.
void Windows7ProgressThread(void *)
{
if (TotalBytesToDownload)
{
if (List.AnyFailed())
{
TaskbarProgress->SetProgressState(g_hWindow, TBPF_ERROR);
}
else
{
TaskbarProgress->SetProgressState(g_hWindow, TBPF_NORMAL);
}
TaskbarProgress->SetProgressValue(g_hWindow,50,100);
}
else
{
TaskbarProgress->SetProgressState(g_hWindow, TBPF_NOPROGRESS);
}
}
|
|
|
|
|
Fareed Rizkalla wrote: ...but when I run it the program breaks.
Really? Are we supposed to guess how?
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Man who follows car will be exhausted." - Confucius
|
|
|
|
|
The problem their are no errors, it breaks with error Access violation. :S
|
|
|
|
|
Even after I commented out what threading code I had written and the process.h header.
I run it and the same error is occurring over and over.
|
|
|
|
|
Fareed Rizkalla wrote: The problem their are no errors, it breaks with error ...
Really?
Fareed Rizkalla wrote: ...it breaks with error Access violation.
So single-step through the code until you find the offending line. If you think there are too many lines to wade through, read this thread on how to quickly narrow down a problem by removing unnecessary code.
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Man who follows car will be exhausted." - Confucius
|
|
|
|
|
It was because I removed the SUCCEEDED micro, but I can't believe the errors it gave me.
Thread exceptions and Access Violations.
I thought something went wrong with the project settings, cause it mentioned Multi-Threading.
Got WinMerge and started going over each line and started thinking what should be undone.
|
|
|
|
|
Fareed Rizkalla wrote: It was because I removed the SUCCEEDED micro, but I can't believe the errors it gave me.
The SUCCEEDED macro did not cause errors to your code. How could it:
#define SUCCEEDED(Status) ((HRESULT)(Status) >= 0)
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Man who follows car will be exhausted." - Confucius
|
|
|
|
|
Hello,
Can scanf be set to retain leading whitespaces in between words?
For example, if the string was " Hello everyone, how are you today? "
can scanf grab " Hello" " everyone," " how" " are" " you" " today?"
Thanks,
|
|
|
|
|
Only if you wrote your own parser. The other ideas that I mentioned to you would use the space as the delimiter.
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Man who follows car will be exhausted." - Confucius
|
|
|
|
|
|
You can do this to capture everything till the enter key is hit.
scanf("%[^\n]", sz);
|
|
|
|
|
|
Hi,
How can I advance the sscanf statement to read each word in the sentence? Right now my output is an endless loop of "This".
CString incoming_line="This is my example incoming line.";
CString string_out;
while (sscanf(incoming_line, "%s", string_out )==1)
{
cout<<string_out<<endl;
}
Thanks!
|
|
|
|