Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: iza
  • Content: Threads
  • Order by date
  1. iza

    [dojo] dom query question

    hi [bigsmile] I am kind of new to dojo and I have a weird problem using it ... My goal is to show some search results. So I build a store, query it and display the results by adding a new div for each result : var adresseStore; require([ "dojo/dom", "dojo/store/Memory"...
  2. iza

    comparing 2 strings, weird behaviour with NLSSORT

    hi :) I've got this very simple test in a query : select * from ref_table r, loaded_data l where r.c_lon || ' ' || r.tl_lon = l.nom_voie - so far so good. Except that in the reference table, as it's in french, there are some accents. And the loaded data are sometimes uppercase, sometimes not...
  3. iza

    error handling ....

    hi :) if i use this : error_reporting(0); $old_error_handler = set_error_handler("userErrorHandler"); (and i define a userErrorHandler function) this send all errors to my function, and my function deals with it. Fine. but i don't want E_NOTICE (8) errors to be reported - neither...
  4. iza

    netscape - uploaded image width and height ?

    hi :) i haven't found this question answered, and i'm wondering if this is possible i have an <input type=file .....> to upload an image. Before sending it to the server, there is a feature to display it (ok it's window.open ..... with the image as a parameter). I wish the window to have the...
  5. iza

    middleware

    ok, maybe it's unrelated to this forum's topic - but i'm not so sure (and what's even worst : i cross posted this question here and in the &quot;object oriented ...&quot; forum) just wondering : how would you describe middleware ?
  6. iza

    middleware ...

    wondering, how would you describe middleware (object side) ?? (i'm cross posting this here and in the &quot;overcoming obstacles....&quot;)
  7. iza

    file encoding to POST

    hi :) i've got a problem with the encoding of image files : i have a form that posts to one of my php classes i want this class to forward the request to my server (and to parse the answer, which is actually why i designed this class - but to intercept the answer i first have to forward the...
  8. iza

    &quot;blind&quot; module :-/

    say i've got 3 files : launcher.pl TEST/Utils.pl TEST/Subdir/Test.pm in launcher.pl, i call use TEST::Utils; my %params = TEST::Utils::buildQueryParam('test'); and this is fine in Test.pm, i copied/pasted the above, so i call use TEST::Utils; my %params =...
  9. iza

    is this an array or a hash or what ?

    hi :) this is a hash : %hash1=(&quot;key1&quot;=>&quot;value1&quot;,&quot;key2&quot;=>&quot;value2&quot;); this is an array : @a=(1,2,3); but what is THIS ??? ????=[&quot;key1&quot;=>&quot;value1&quot;,&quot;key2&quot;=>&quot;value2&quot;]; ???? and how can i build it, if i have key1...
  10. iza

    HttpServletRequest - not building it from an html form nor from urlcon

    hi :) i know how to call servlets from html forms i also know how to call them from a class using urlconnection - if they are running (= if the server is up) but now, for testing purpose, i NEED to call my servlets from a &quot;normal&quot; class, while the server can be down i just want to...
  11. iza

    testing tools

    hi :) did anyone here already use testing tools for java ? i have to perform static testing, balck box testing, white box testing, and non regression ... for a huge java project ... and i'm looking for as many advices/reference/info i can find ... could you help me to find some ?? the search...
  12. iza

    DMCA

    just tought this article is worth reading - definitly - http://www.infowarrior.org/articles/2001-05.html (in europe, we also have dangerous laws, especially in england (RIP act) and (soon :( ) in france (lsi) - and &quot;they&quot; are planning to make an european-wide new law as well)
  13. iza

    multi select ??

    hi :) how do you do those select boxes that have sub-select boxes in them - just like : option1 option2 option3 option4 and when you click on option3 you get the sub-select appearing : option1 option2 option3 > option3.1 > option3.2 > option3.3 option4 i'm NOT looking for a...
  14. iza

    CSS &amp; radio buttons size ...

    does anybody know how i could change the size of the radio button (not the text around, only the little circle to click in) - i feel there must be a workaround for ie, but i'm looking for a cross browser solution (or easily adaptable) thank you :)
  15. iza

    jndi &amp; tomcat ....

    hi :) if anyone has any idea, i'll be glad to hear them ! i'm stuck !!!! --- on the server side, i start my name server (jndi) and my app, everything is going fine on the client side, i start tomcat, fine ... i have some servlets and ejb, fine ... one of the servlet then tries to access the name...
  16. iza

    bmp &quot;disappearing&quot; ?

    i copy a bmp into memory, then from memory to a window this goes fine almost all the time, but from time to time, under certain platform (win9x - win2000 is always fine), instead of copying the bmp to the window, i get a grey screen - nothing was copied. but no error raises tho ... f someone...
  17. iza

    diff between win200 &amp; win98 on the stretchbitblt function ??

    this is really weird : my code is working fine using windows2000, and when i test under a win98 platform, i get an error. Can someone tell me if this is normal or what can i do in order to make it work ??? the line causing the error is : StretchBlt( dc.m_hDC, // handle to destination DC...
  18. iza

    wininet and cgi ...

    hi :) i'm sure it's an obvious question, and it sure has already been answered but the search feature is disabled ;) so ... i'm using the wininet classes to send a request, and retrieve the result sent by the server. It works fine until i change the server settings to post to a cgi page ... then...
  19. iza

    changing class cursor for a CDialog ??

    i'm sure it's an easy question, but i can't figure how to do it .. in the msdn doc, it is written &quot;If your application must set the cursor while it is in a window, make sure the class cursor for the specified window's class is set to NULL. If the class cursor is not NULL, the system...
  20. iza

    dll ?

    can someone please tell me the differences between : - win32 ddl - mfc dll - atl dll ??? i want to build an app that can be downloaded and run on the client side - no need to call the server - needs to be light which is the best suitable ??

Part and Inventory Search

Back
Top