Displaying 4 results from an estimated 4 matches for "createform".
Did you mean:
createfoo
2008 Jul 19
0
Winelib: How can I compile a Borland C++ Builder application on Linux using winelib?
...Form);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->Title = "EASy68K";
Application->CreateForm(__classid(TMain), &Main);
Application->CreateForm(__classid(TAboutBox), &AboutBox);
Application->CreateForm(__classid(TAssemblerBox),
&AssemblerBox);
Application->CreateForm(__classid(TChkSave), &ChkSave);...
2005 Oct 25
24
InPlaceEditor scrolls to top in Firefox?
When I click an InPlaceEditor field in Firefox 1.0.7, the page scrolls
up to the top. That''s disconcerting, and often ends up with the
editable field out of the viewable pane. I can duplicate this on both
Mac and PC. Is there a way to prevent this? Even the demo at
http://wiki.script.aculo.us/scriptaculous/show/Ajax.InPlaceEditor does
this.
Jay Levitt
2005 Jul 18
13
in place text edit
I''ve written a pretty nice Flickr style in place text edit JavaScript
control based on the Script.aculo.us library.
API is like this:
<span id="editme">Edit me!</span>
<script>
new InPlaceEditor($(''editme''), ''url/to/action'');
</script>
Background changes to gray as mouse hovers over the text (like flickr)
and the
2005 Sep 21
2
Result Documents XML or JSON?
My Java servlets can generate both JavaScript objects, like
JSON, and XML. I can generate both pretty easily.
What''s best practice for AJAX responses? Return scripts to be
evaled by the Ajax control, or return XML documents and iterate
them using XML DOM?
Thanks.
--
Alan Gutierrez - alan@engrm.com
- http://engrm.com/blogometer/index.html
-