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 TouchToneTommy 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: almoes
  • Content: Threads
  • Order by date
  1. almoes

    iexplore control requieres condirmation to close

    Hi, I use the Process class to open a URL. If this new iexplore window is closed by a control of the web page, the Internet explorer opens a dialog box saying 'The web page you are viewing is trying to close the window. Do you want to close this window? YES/NO' I tried to close the process upon...
  2. almoes

    IIS understands manifest files?

    Hi all, I was wondering if the IIS can process manifest files. So if I have my propietary myClasses.jar file (which imports extrnalClasses) placed in the winnt\java\trustlib so that I can call them from asp files, is it possible to add a manifest file defining the path to externalClasses.jar...
  3. almoes

    destroy object

    Hi, Is there a way of totally destroying an object? I mean, if you remove the instance it doesn't really kill it and in my case it's a listener of events so it still reacts upon them. Any ideas? Garbage collector is not fast enough :-( cheers, alej
  4. almoes

    unable to add domain account to local group iin server member

    Hi, I have a win 2003 sever as domain controller in my net. I need to add the domain account to the local group of a win 2k server member of the domain. However if try to add it on the win2k server, under local groups, I can browse through the domain users, and click ok to add it, but then it...
  5. almoes

    java virtual machine

    Hi, i try to clear up some concepts... Is IIS using Microsoft's java virtual machine to run such things as instances to java classes from asp files? If yes (which I think), is there a way to associate another java virtual machine? thanxs! cheers, alej
  6. almoes

    Create class from class name

    Hi, i want to create something like a class wrapper so that if passed as argument the name and parameters of a class, this wrappers gives back and object instance of this class. How can I do this? I was browsing through the Class class docu, but can't make it work... thanxs! cheers, alej
  7. almoes

    MessageFormat java.lang.IllegalArgumentException

    Hi! When creating a new message format I get a java.lang.IllegalArgumentException: argument number too large. I checked and the number of arguments corresponds to the number of 'variables' defined in the string. I was wondering if perhaps there's a limit in the number of arguments. Any ideas...
  8. almoes

    instanciate java class

    Hi, Is it possible to instanciate a java class from c# code? thanxs, alej
  9. almoes

    xsl for-each

    hi, I am manipulating some xml from an asp file using some xsl transformation. I was using the same estructure other times but in this case there's something wrong with the 'for-each' loop because I retrieve nothing. This is the xml data: <return> <row> <NativeName>English, United...
  10. almoes

    2 languages in 1 file

    Hi! is it possible to have an asp file with code both in javascript and vbscript? if yes how is it defined? thanxs! alej
  11. almoes

    sequence attribute

    Hi, Iam using an axml schema and I am wondering whats the connection between the sequence attribute and the choice element...any help? thanxs! alej
  12. almoes

    execute URL

    Hi, I would like to execute a URL from a php file, that is to send an http request and get back the result. Any ideas? thanxs, alej
  13. almoes

    two selects in one query

    Hi all! Is there any way of executing to non dependant select statements in one query, so like the result query contains the fields of two select statements. Something like select...AND select... thanxs! alej
  14. almoes

    error on control source expression

    Hi all, It looks like a have an error on an expression for the property control source of a textbox, but I don't know what fails. The expression is: =IIf(IsNull(DLookUp("[ProductName]";"Menu";"[ProductID] =" & [txt1]));"";DLookUp("[ProductName]";"Menu";"[ProductID] =" & [txt1]) & ", ") &...
  15. almoes

    DoCmd.RunSQL with SELECT

    Hi all! Is it possible at all to Use DoCmd.RunSQL to make a SELECT on a table and retrieve the info? If yes, how? the RunSQL is a Sub so I don't know how to retrieve the data result of the query :-( thanxs! cheers, alej
  16. almoes

    Lock control on form after 'FindRecord' action in macro

    Hi! I have a macro that when double click on a list it opens a form displaying the fields for that record. However I want that some of the controls appear locked so that the user can't change the value. To retrieve the record I use the macro action 'FindRecord' and I was trying to use the...
  17. almoes

    Lookup field without displaying ID

    Hi! I am trying to make a lookup in a db and I want to display on the combo box only the name, but store the ID of it. Can this be achieved with lookup fields? I can only manage to do it displaying aldo the ID. I discovered a workaround, setting the column width of the ID to cero, but don't...
  18. almoes

    query with non-user parameter

    Hi, I have this SQL select: SELECT Menu.ProductName, Menu.ProductID FROM Menu WHERE (((Menu.CategoryID)=x)); Now I would like that x matches a 1 for field1, a 2 for field2 and so on...Is this possible somehow in combination with the 'Criteria' property of the fields? thanxs! alej
  19. almoes

    Exchange access via WebDAV

    Hi! I am not really sure if this forum handles also programming issues of exchange via WebDAV. If yes, I am trying to query the personal contacts by name or telephone. I was able to query for the nodes themself but not by attributes of the node. If some is familiar I can post the code I was...
  20. almoes

    LDAP and exchange server 2000

    Hi all! I am wondering if its possible to perform LDAP queries against the exchange store, so to query the contacts info, for example. If yes, how? thanxs! cheers, alej

Part and Inventory Search

Back
Top