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 Mike Lewis 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: *

  1. sebseb12

    ProductionModeEnabled on WLS 6.1

    Hello all, I can't understand why the ProductionModeEnabled doesn't work when I try to turn it to false... The server start well, but I can't load new class version while it is running. Any idea ?
  2. sebseb12

    Looking for advice on when to open and close connections

    Hello, There're two ways : - The first is about money !!! If you pay your database license depending connection, you must open/close each time you need retreive informations. - The second is technical, you should'nt open/close your connection each time, indeed, It's one of the more...
  3. sebseb12

    Ado retreive Zero value to number oracle's field

    Hello, I'm working with VB 6.0, and try to query (through ADO) an ORACLE database (OLE-DB for ODBC) all works fine except Number fields. Indeed they're always retreived with a Zero value. Anybody meet the strange error ?
  4. sebseb12

    Which API to Compress a File

    No, I need to compress many files into a file. Like ZIP do it !!! But I don't want to run Command to run pkzip or things like that, and mainly, I want to retreive success or error code to know if the compression (or decompression) was right.
  5. sebseb12

    Which API to Compress a File

    No, I need to commpress many files into a file. Like ZIP do it !!! But I don't want to run Command to run pkzip or things like that, and mainly, I want to retreive success or error code to know if the compression (or decompression) was right.
  6. sebseb12

    System tray icon

    HOWTO: Use the System Tray Directly from Visual Basic 5.0 Last reviewed: November 3, 1997 Article ID: Q176085 The information in this article applies to: Microsoft Visual Basic Control Creation, Learning, Professional, and Enterprise Editions for Windows, version 5.0 SUMMARY This article...
  7. sebseb12

    Which API to Compress a File

    Anybody allready compress file using an API ? I allready work with lzexpand, but it only uncompress archive, and not compress file.
  8. sebseb12

    Change mousepointer so it looks like a link

    No you don't need to know which directory !!! When you build your application (in VB), you set a cursor (.ico) to the property mouseicon. Then this cursor will be INCLUDE in your EXE application, then you don't need to specify the path of the cursor again, the EXE do it for you, and you don't...
  9. sebseb12

    Change mousepointer so it looks like a link

    If your link is in a Textbox or in a Label you can set the property mouseicon with your hand icon (.ico) and the property mousepointer = 99. Good luck
  10. sebseb12

    HOW TO GET THE DEFAULT PRINTER

    Sorry, it doesn't work vb5prgrmr... Indeed, this hdc property can change during execution so I can't fixe it in a variable to get it after. Any other idea ?
  11. sebseb12

    HOW TO GET THE DEFAULT PRINTER

    How can I get the default printer name or hdc... I need it for All-plateform... Any idea without going in the deep of the API....
  12. sebseb12

    Multiple single quotes problem----Very Urgent !!

    Hi, the easiest way is to replace your field value quote with another character you'll never found.... by exemple : cFilter = REPLACE("MUNGR,B''NORE,I(602)","'","¤") rs.filter="Description = 'BPD LUCKNOW(260)' and REPLACE(TERRITORYNAME,'''','¤') =" &...
  13. sebseb12

    "modified date" of a table?

    Yes you can get it (with ACCESS) dim adoMain as new adodb.recordset set adoMain = conmain.OpenSchema(adSchemaTables) do while not adomain.eof debug.print adoMain("TABLE_NAME") & " - " & adoMain("DATE_MODIFIED") adomain.movenext loop Let try.... SEE you Soon
  14. sebseb12

    DataGrid w/ Combo-Box

    Hi, I already got this problem with some customers, and most of the time I try to 'sold' them another solution which is easier to program. Instead of put the combo in the datagrid, I prefer put a combo at the bottom or the top of the datagrid but fully independant of the datagrid. You link the...
  15. sebseb12

    Activate Caps Lock

    Hi... This is your miracle solution.... (a bit long by efficient....) Add the following code to the General Declarations section of Form1: ' Declare Type for API call: Private Type OSVERSIONINFO dwOSVersionInfoSize As Long dwMajorVersion As Long...
  16. sebseb12

    open project and vb closes

    Hi.. I already got this problem, the only think I remember about it is : UNINSTALL full Visual Studio and REINSTALL it. It has resolve my problem...
  17. sebseb12

    Big problem with textbox and ado !!!

    Hi vryboby, I'm working with VB since 8 year and never seen this problem : When I execute my application (.exe) on a computer (witch is not mine) all the textboxes stay with the text "TEXT1" whereas this textboxes are linked with an adocontrol witch contain data. I'm sure that it...
  18. sebseb12

    Passing Date from ASP to VB to SQL

    Hi, You'd better try to put '#' into your sql-code : dim cSql as string dim cDate as string cDate = "10/10/2002" cSql = "UPDATE table set theDate = '#" & cDate & "#'"

Part and Inventory Search

Back
Top