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 SkipVought 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: szmgg
  • Order by date
  1. szmgg

    Webservice - compley type and array

    I'm trying to make a webservice that returns an array of objects, which contains another array of objects. Everything works fine, when I hack the wsdl manually. How can I make it work automatically? I'm using Eclipse 3.4 for Java EE, Axis 1.4, Glassfish v2 UR2, and Eclipse's Web Services...
  2. szmgg

    Tooltip show on command, not on mouse event

    Hi! I'd like to display all tooltips on my form at the same moment, but I can't even display 1! I'm looking for a method, that shows the tooltip (defined in a ToolTip object) Thanks in advance, Máté
  3. szmgg

    How I detect fast if an MSSQL server is running?

    Thanks! I use SQL 2000, so I write the final solution to this: First add reference "SQLDMO" (it's a COM) Then: Dim s As New SQLDMO.SQLServerClass s.Name = "blabla" 'SQLServer host running = (s.Status=SQLDMO.SQLDMO_SVCSTATUS_TYPE.SQLDMOSvc_Running) Thanks again Máté
  4. szmgg

    How I detect fast if an MSSQL server is running?

    How I detect fast if an MSSQL server is running? My present solution is this: dim conn as New SQLClient.SQLConnection("blabla;Connect Timeout=2;blabla2") dim running as boolean try conn.open running = True catch ex as Exception running = False end try ... But it's slow. (Slower then...
  5. szmgg

    'CDO.Message' error thrown only for one row rest of them its sending

    Hi ICTECH Maybe it helps http://www.systemwebmail.com/faq/3.8.aspx
  6. szmgg

    Postfix maxuser

    Hello! Do you know how many users can be added to a Postfix server? It's on a P4. Thanks in advance, Mate
  7. szmgg

    INSERT with return value

    Hello! I've done it this way: select nexval('public.partners_id_seq'::text) as blabla (blabla will never be same) Then: insert into partners (id, name) values (blabla, 'Minta Béla') I don't know how to use variables in pgsql, so blabla is only a something.
  8. szmgg

    Unicode compliant?

    Use Forms2.0 (Project/Components (CTRL-T)). It may help you.

Part and Inventory Search

Back
Top