|
hi
I made a dual function button with 2 hovers and two tooltips
the two actions are addition and subtraction on the same button but that did not work
The project is uploaded here
http://www.4shared.com/file/105379147/23d04050/dualactionmfcbutton.html
[^]
here is the code to check whether the mouse clicked the right half oor right side
When i Clicked the button it perform no action?!
Can you help me in fixing this problem?
|
|
|
|
|
plz anyone help me on a c (graphics / algorithm ) code on peephole optimization(compiler).
|
|
|
|
|
Are you developing a graphic compiler?
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
just need the code in C....how three address code is optimized by peephole optimization.
|
|
|
|
|
Looks like your school book was lost. An example here [^] (sorry no C code).
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
You're not going to get code - the code depends on the AST representation, or whatever intermediate form you're using. This page[^] might help.
BTW - are you currently studying a compile construction course @ college...
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
actually i need a C prog which takes 3 address byte code as an input(manually) and optimize the given input by Peephole technique.
|
|
|
|
|
The classic book on Compiler Contruction is Compilers by Alfred V. Aho, Ravi Sethi and Jeffrey D. Ullman. A more modern (and more advance book) is Advanced Compiler Design Implementation by Steven S. Muchnick. The first book talks about all aspects of developing a compiler. The second book just talks about code generation and optimization. Both books I feel are quite good.
I am also wondering why you are doing this. Is it part of a compiler? Feel free to ask a follow up question.
Bob
|
|
|
|
|
yup...its a part of compiler...gotta develop a college project on it...(peephole optimization)
|
|
|
|
|
Then I would try to read the book: Compilers by Alfred V. Aho, Ravi Sethi and Jeffrey D. Ullman. I
also wondering what kind of optimizations are you trying to do. For example, contstant folding,
strength reduction and copy propagation come to mind.
Bob
|
|
|
|
|
i need all the methods - Redundant-instruction elimination, Flow-of control optimization, Algebraic simplification and Use of machine Idioms to be applied on 3 address byte code. thanks...
|
|
|
|
|
I believe the first book I mentioned tells you what you need. The flow of control optimization is
elminiating jumps that go to other jumps. That seems straight forward to me. If you are looking
for some code to download where all this is implemented, I do not know of any such code.
Bob
|
|
|
|
|
I've got an app that uses a ShellExecute to launch the default web browser via
ShellExecute(NULL, "open", "http://somewebsite.com", NULL, NULL, SW_SHOWNORMAL);
On XP, sometimes it works and other times it doesn't resulting in an Error code 5 being returned from the ShellExecute (error code 5 = SE_ACCESS_DENIED) indicating that the OS refused to launch the default web browser.
From the MSDN documentation for ShellExecute, I noticed the bit about if what you are launching uses COM, you will need to initialize COM in your app before calling ShellExecute. When I add the CoInitialize(NULL) at app startup (and the CoUninitialize at the close), it fixes the problem and the page launches every time.
This is all great...but why does it work? the only thing I can come up with is that Windows uses COM to determine what app should open html files. Except that doesn't make sense as to why it sometimes works...
What am I missing?
Oh, and Vista/win7 works. This behavior is only seen on XP
|
|
|
|
|
kinar wrote: the only thing I can come up with is that Windows uses COM to determine what app should open html files.
Last time I checked, it consulted the registry.
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"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
|
|
|
|
|
DavidCrow wrote: Last time I checked, it consulted the registry.
Did you consult the registry to come up with such conclusion?
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
No, I used an API.
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"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
|
|
|
|
|
I have a C program that prints the tuples in a text file. I am looking for a way, such that those tuples be inserted into MS Access database instead of printing into a text file.
How can I do this?
|
|
|
|
|
Use two tables: one containing the tuple name, and the other containing the tuple data. Link them together with a "key" field.
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"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
|
|
|
|
|
I have 14 tables in MS Access. I need to insert the tuples in those tables. Is there any way to insert by SQL Commands. I used fprintf to print those tuples in text file. Now need to inset in my existing MS Access tables.
|
|
|
|
|
sxkoirala wrote: I have 14 tables in MS Access.
Are you implying that adding two more would not be possible?
sxkoirala wrote: Is there any way to insert by SQL Commands.
Yes. Are you using MFC?
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"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
|
|
|
|
|
i have a simple database application,and it has 5 edit boxes.
Whenever the application starts i want the application to populate the editboxes with whichever record is available at the top of the table(i.e the first record in the table.)
I m using ADO.
How do i do this ?
Do i have to use a sql query for this or MoveFirst( ) function ??
As im using a Doc/View i have to insert this in view`s OnInitialUpdate() function.
But how do i do that ?
modified on Thursday, May 14, 2009 1:03 PM
|
|
|
|
|
See the example here.
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"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
|
|
|
|
|
|
See here and here and here and here.
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"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
|
|
|
|
|
Hi
I have a lib Linker problem.
I built "nurbs" dll. This gives me a lib and a dll.
When I tried to link the lib and used " /FORCE:MULTIPLE". . I got a lot of warnings which look like:
warning LNK4006: "void __cdecl PLib::resizeKeepBasic2DArray<struct PLib::HPoint_nD<float,2> >(class PLib::Basic2DArray<struct PLib::HPoint_nD<float,2> > &,int,int)" (??$resizeKeepBasic2DArray@U?$HPoint_nD@M$01@PLib@@@PLib@@YAXAAV?$Basic2DArray@U?$HPoint_nD@M$01@PLib@@@0@HH@Z) already defined in drawtool.obj; second definition ignored.
How can get rid of warning and not using "/FORCE:MULTIPLE".
Best regards,
modified on Thursday, May 14, 2009 12:38 PM
|
|
|
|