|
How one can achieve late binding in C language ?
Started by cppdev on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
How one can achieve late binding in C language ?
The closest would be through dynamic loading about deferred binding but instead polymorphism, you can achieve that effect with function pointers.
|
|
I wish to use Java2D drawString to achieve the following looks.
However, I have 0 idea how I an achieve the following text alignment?
As we can see, "Date:", "Open:", ... are all being aligned to left.
And "30-Nov-09", '1262.000", ... are all being aligned...
Started by Yan Cheng CHEOK on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Eg:
g.drawString(s, rightEdge - fontMetrics.stringWidth(s), y);
Not specific to drawString , but in general if you want... .
To right-align text you can figure out the width of the text you're rendering, and then subtract that width from the x-coordinate .
|
|
Scheduling is so difficult. Don't you agree?
Which are your best tricks to achieve your scheduling target?
Started by FerranB on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
By doing realistic estimation, which....
Agile methods do this.
Since you can't make the schedule, you have to deliver value quickly and responsibly .
Either (1) you're omniscient and can foresee all possible futures, or (2) you miss the schedule .
Agility.
|
Ask your Facebook Friends
|
I need to write blocks of data (characters) and I don't care about the sequence of those blocks. I wonder what kind of OutputStream I should use to achieve high performance?
Started by Roman Kagan on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
For example:
class MyZip extends java.util.zip.ZipOutputStream { synchronized public void write(byte[] b, int off, int len) throws IOException... .
Extend ZipOutputStream and make methods synchronized by overriding them.
You can make a wrapper class - i.e.
|
|
Hi, I'm trying to achieve the layout shown here
Each of the panels should be linked to a backing bean from which I will later add differrent components according to context.
I tried using panelgrid but could not achieve this look. I would prefer to use...
Started by Ben on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
( see here )....
Using <div> tags.
<table> <tr>..</tr> <tr>..</tr> </table>
However, the table-less layouts are preferred - i.e .
You can use the HTML code with which you have achieved the above layout.
|
|
I'd like to know how to achieve web site customization like iGoogle (in particular I'd like to know how to drag/drop parts of web page (a.k.a. "prtlets") to different corners) ?
Started by Roman Kagan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
But they all for how to achieve same level of customization
See this question how-to-use-draggable-sections-like.
Library/e0s9t4ck.aspx
You can achieve this in different ways in different platforms ...
|
|
Duplicate: Is it possible to achieve the “Aero Glass” look on XP?
If I use Winforms and I write a win32 application with it, I can see the Aero glass effects in Vista but not in XP.
How could I achieve the same look across different platforms? I am using...
Started by Joan Venge on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you're simply looking for window transparency,....
What "Aero effect" are you referring to? If you're talking about the window glass, then I'm afraid you're out of luck, as the glass effect is made possible only through Vista's Desktop Window Manager .
|
|
What are the best ways to achieve extremely loosely coupling?
If you want to modularize your Software to such an extreme extent that no parts are relying upon any other parts in your system, but they would still be able to communicate, which means would...
Started by Thomas Hansen on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Set them ....
Let different teams develop different modules without letting them talk to each other or coordinate their efforts .
Use some domain-detached data format to enable communication or exchange information between modules, like XML, RPC, HTTP etc .
|
|
Hi, I'm aware of several flash-based commercial implementation like flashpageflip. But I'm wondering if it possible to achieve without using flash?
Any help will be much appreciated. Thank you.
Agung Indrawan.
Started by Agung Indrawan on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
If you could cut his source code up and modify the events, you'd be able to achieve the effect.
|
|
Can we achieve 100% decoupling between components of a system or different systems that communicate with each other? I don't think its possible. If two systems communicate with each other then there should be some degree of coupling between them. Am I...
Started by Daud on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
All a component needs to know is the interface of its input (in a system which lasts a little longer)
However... .
One of concerns can achieve this.
Think of two components that communicate with each other through network .
You can achieve that.
|