Hi Fabio,

> - Why under Windows XP, the field remains white even in
> disabled mode (when the date appears)?

Couldn't tell you. I could *guess*, but it wouldn't really do you any good. ;)

You might try adding this to localsearch.css:
.txtfld {background-color: menu; }

...but I offer no guarantees as to merchantability or fitness for any particular use. 
;)


> - How can I create "special" searches like the XE converter
> (how can the XE search parse "125usd>eur")?

Using RegEx to parse it yourself. Look in curr.xml to see how they do it for XE. More 
information below...


> In fact I would like to create a offline converter between
> francs and euros: for instance, when I enter the string
> "125€", I get "819.95F". Currently, I created "ef.xml" (for
> euros>francs) and I have to to enter "ef 125" to convert
> it. It works like this but I would prefer enter it like I
> write it on a paper.

Here's the path of what happens when you press enter, to where you need to edit to 
make this work:

* search.htm
 - has the actual search bar in it, and most of the processing, at least, most of the 
overt processing.

@ function def() (line ~158)
 - this is what is called when you press enter in the box.

// detect special commands (line ~195)
 - this is section of def() where the 'special handling' is done for things like the 
XE converter. To make this work you'd need a function in a similar "autodetect" form 
to scan the input text to see if the last character is a euro symbol or F and if the 
rest is numeric. If so, the autodetect function calls the processing function and the 
line in the def() procedure (calling the autodetect) exits by using return false.

If you need some help just say so.

Regards,

Shawn K. Hall
http://ReliableAnswers.com/

'// ========================================================
So, it is down to you, and it is down to me...
 -- 'Vizzini', The Princess Bride




-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
_______________________________________________
To unsubscribe visit:
https://lists.sourceforge.net/lists/listinfo/dqsd-users
[EMAIL PROTECTED]
http://sourceforge.net/mailarchive/forum.php?forum_id†01

Reply via email to