Search:

Type: Posts; User: gibra

Page 1 of 10 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    125

    Re: Auto run .exe after installation

    You can't.
    P&DW is too old, obsolete.
    Use the free InnoSetup, instead (www.innosetup.org)
  2. Replies
    1
    Views
    140

    Re: Datarepeater in vb6

    You must create your ActiveX User control.
    See
    http://msdn.microsoft.com/en-us/library/aa231248(v=vs.60).aspx

    You can find sample project here:
    Datarepeater Control in VB 6...
  3. Re: simular control like listview WITH multiline text and object support of each subi

    http://www.codejock.com/products/reportcontrol/?2yn6s14z=p1z

    https://www.componentone.com/SuperProducts/TrueDBGridPro/
  4. Replies
    82
    Views
    19,996

    Re: VB6 and Windows 8

    No problems. :)
    Use my tool VS6 Installer to install VS6.0 or VB6.0 on Vista, Window 7 / 8 (32 or 64 it).
    See the link on my sign.

    The only thing you need to do is check what controls you used...
  5. Replies
    7
    Views
    440

    Re: CDO.Message not working in 64bit

    I suggest to use MAPI library (MAPI32.DLL), no problems on Windows7 64-bit.

    http://www.thescarms.com/VBasic/MapiEmail.aspx
  6. Re: colour coding or grouping records in Hierarchical Data Grid

    I agree 100%.

    I Add: use with caution, because if you use formula to calculate something (totals, averages, ...) on LeaveCell/EnterCell events, then each time you change Row/Col events will be...
  7. Re: colour coding or grouping records in Hierarchical Data Grid

    So, you had moved from DataGrid to MSHFlexGrid ?
  8. Re: colour coding or grouping records in Hierarchical Data Grid

    Due to doesn't exists a Hierarchical Data Grid control,
    please specific correctly the control you use.
  9. Replies
    13
    Views
    506

    Re: DataGrid update DB not working as it should

    My experience is:

    1 - I don't use any flex grid (MsFlexGrid, MsHFlexGrid, VSFlexGrid, ...). I use ComponentOne TrueDBGrid. If I had not the TrueDBGrid I would use the DataGrid.
    I used the...
  10. Replies
    5
    Views
    320

    Re: Click on a textbox and clear it's contents.

    On LostFocus if prefer to use Trim() instead of LenB() because if use press spacebar textbox seems empty, but don't.
    Also, if there are many textbox which we use a 'default' text, then I suggest to...
  11. Replies
    13
    Views
    506

    Re: DataGrid update DB not working as it should

    You don't use the Click event, which is fired for DataGrid control only, not for records collection.
    As already sayed, use After* and Before* events, their allows you to stop/cancel/modify values...
  12. Replies
    5
    Views
    320

    Re: Click on a textbox and clear it's contents.

    I suggest to use the GotFocus event, instead, because if user navigate to TextBox using the TAB key then the MouseDown event will not fire.
  13. Replies
    13
    Views
    506

    Re: DataGrid update DB not working as it should

    1) In you SQL statement you must add ALL columns you need to update, eventually hide columns that user doesn't to access it.
    2) you must use appropriate DataGrid events named After* and Before* to...
  14. Re: [RESOLVED] .frx/.frm to .bmp - urgent and stuck!

    Caution, FRX can contains many image formats
    - with no transparency (BMP and JPG)
    - with transaprency (GIF and ICO)
    - metafile (WMF, EMF)
    therefore save a image always as bitmap maybe not...
  15. Replies
    1
    Views
    237

    Re: how to detect and eject removable device

    See this project:

    95673
    USB Notify & Removing

    http://nuke.vbcorner.net/Progetti/VB60/Progettivari/tabid/79/language/it-IT/Default.aspx
  16. Re: How do I clear a textbox by just clicking on it? Also, a database(?) related ques

    First question:
    Text1.Text = vbNullString

    Second question:
    open a new thread with specific info.
  17. Re: Going through a listbox and removing all items that are the same.

    Instead of



    StudentList.RemoveItem lIndex

    removing should start by last to first item, not tested but should work:
  18. Replies
    3
    Views
    295

    Re: msflexgrid problem in quantity column

    Create a procedure that allows the user to correct the value.

    It seems obvious that the writing of the data in the database should only occur when the user presses a button like 'SAVE'.
  19. Re: Windows 7, 32 bit - MSCOMCTL.OCX "could not be loaded"

    Have you tried my tool VS6 Installer?
  20. Re: Windows 7, 32 bit - MSCOMCTL.OCX "could not be loaded"

    I installed VS6 with my VS6 Installer tool and this does not happen.
    In fact I have no problems of any kind, nor with Windows 7 or Windows 8.

    I have 6.1.97.82 version.
  21. Replies
    82
    Views
    19,996

    Re: [RESOLVED] VB6 and Windows 8

    Ever heard of maintenance programs?
    Maybe you're not a professional programmer ...
  22. Replies
    15
    Views
    1,115

    Re: VB6 with Access in Local Network (LAN)

    I have made programs VB6.0 + Access (database) that run for years in multi-user (LAN and Terminal Server) without any problem. Some even with 15 concurrent users.
    My suggestions here:

    1)
    This...
  23. Replies
    8
    Views
    370

    Re: VB6.0 HELP!!! can' register a new username

    password may be a reserved word (dipend of database in use).
    i.e. if you use Access then you must use [password]
  24. Re: Windows 7, 32 bit - MSCOMCTL.OCX "could not be loaded"

    Perhaps, the problems arise because you have installed VS6.0 EE in an inappropriate way.
    With my VS6 Installer tool I have installed on Windows 7 32/64 bit in the Home Premium, Professional and...
  25. Thread: SSTab

    by gibra
    Replies
    7
    Views
    435

    Re: SSTab

    What? :eek:
    TabCtl32.ocx is already installed... :bigyello:
  26. Replies
    11
    Views
    604

    Re: list database and related table in Teradata

    This is depend by how database are stored.
    Teradata is probably different from SQL Server, Oracle, and so on...
    Therefore, you have to get this information on Teradata web site and/or related...
  27. Re: Program doesn't really exit after unload process

    The End statement should never be used, except for reasons really serious.

    If your application stay in memory means that not all component are been properly released.
    Paradoxically End may be the...
  28. Replies
    82
    Views
    19,996

    Re: VB6 and Windows 8

    1st problem:
    My VS6 Installer install VS6.0 (Enterprise or Pro) and VB6.0 (Pro only, NOT Enteprise).
    Now I have add VB6.0 Enteprise (thank you for filelist)
    So, I send to you the updated version....
  29. Replies
    82
    Views
    19,996

    Re: VB6 and Windows 8

    I developed VS6 Installer using Visual Studio 6.8 Enteprise 'retail' version (5 CD), therefore I don't know the contents of MSDN Subscription CDs.

    I can try to discover the differences.
    Should...
  30. Replies
    4
    Views
    1,743

    Re: How to install Visual Studio 6 in Windows 8 ?

    You can use my VS6 Installer.;)

    See link and video on my sign.
  31. Re: Trying to convert a sql server query to an Access 2007 query

    Sorry, but the Access database:

    1. doesn't support CASE WHEN ...
    So you replace CASE WHEN using Iif/Then ...


    2. some internal Access functions not works in each scenario.
    i.e. You own...
  32. Re: CommonControlsEx (Replacement of the MS common controls)

    Good Work! :)
  33. Re: VB6 Legacy app - Cannot install on Windows 7 64-bit PC

    You can use my tool VS Installer, see my sign.
  34. Replies
    5
    Views
    1,068

    Re: MSCOMCTL.OCX registration problem

    If the problem started after you installed the latest version of SP6, then the problem may be in how you installed SP6.
    How did you installed SP6?

    If the problem existed before then, probably,...
  35. Replies
    82
    Views
    19,996

    Re: VB6 and Windows 8

    This doesn't depend of my VSInstaller tool :D
    The problem is that the DataEnvironment ISN'T supported.

    Always keep in mind this:
    Support Statement for Visual Basic 6.0 on Windows Vista, Windows...
  36. Re: Adding records to mdb database then reloading the combobox doesn't work correctly

    After INSERT or UPDATE need to refresh the cache:
    http://www.xtremevbtalk.com/showthread.php?t=102739#5
  37. Replies
    8
    Views
    512

    Re: Help reading a PDF

    You need to download SDK, will found a lot of sample for many languages:
    http://livedocs.adobe.com/acrobat_sdk/10/Acrobat10_HTMLHelp/wwhelp/wwhimpl/js/html/wwhelp.htm?&accessible=true
  38. Re: [VB6] Detection the word under cursor (with UI Automation)

    A lot fo things are missing, I get too many errors.
  39. Replies
    8
    Views
    512

    Re: Help reading a PDF

    Then you should use the Acrobat and PDF Library
    http://livedocs.adobe.com/acrobat_sdk/10/Acrobat10_HTMLHelp/API_References/Acrobat_API_Reference/index.html
  40. Replies
    17
    Views
    862

    Re: VB Keeps Loosing the Bluetooth Port

    and not is Spanish, is Italian, then???
    Do you expect the whole world to speak English? :D

    However, I written:
Results 1 to 40 of 394
Page 1 of 10 1 2 3 4