Results 1 to 40 of 40

Thread: Error IDE Importing vb6 project

  1. #1

    Thread Starter
    New Member
    Join Date
    Apr 2021
    Posts
    12

    Error IDE Importing vb6 project

    Very good days

    When I import Visual Basic projects it gives me this error and it does not indicate the original form and the program dies

    "IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'length'),1.855664, TypeError: Cannot read properties of undefined (reading 'length')

    I don't know if it has happened to anyone else, what could it be?

    Thank you very much and very happy day
    Attached Images Attached Images  

  2. #2
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    7,054

    Re: Error IDE Importing vb6 project

    Are you importing .vbp files from the New Project->Import from VBP? Right now individual forms and projects from the "Add" menu aren't supported; have to import via whole projects from the new project dialog.

    Are you able to attach a sample of a project you're having trouble with, or send it privately to WaynePhillipsEA on here or tB Discord?

    Best would be if you could narrow the issue down further; remove things until it works to identify where exactly the problem is.

  3. #3

    Thread Starter
    New Member
    Join Date
    Apr 2021
    Posts
    12

    Re: Error IDE Importing vb6 project

    First of all, thank you very much for your time and response.

    If it is by importing the vbp file.

    I have some small projects that do not give me an import error, but the main one has more than 800 forms and this is the one that gives me the error and since it does not tell me the file in which the error occurs, I cannot identify it.

    I would have no problem privately sharing the entire source but it is quite large.

    Thank you so much
    Attached Images Attached Images  

  4. #4
    Fanatic Member
    Join Date
    Aug 2011
    Location
    Palm Coast, FL
    Posts
    689

    Re: Error IDE Importing vb6 project

    Yeah I've tried to import two large VB6 projects without success also. Seems that the VB6 Project Import feature still has a way to go. Granted that the projects are not simple - many forms, modules, classes, UDTs, APIs, components, user controls, references, etc... So I didn't expect it to work, to be honest.

  5. #5
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    7,054

    Re: Error IDE Importing vb6 project

    Seems like 'almost there' rather than 'a ways to go' when it's only getting tripped up when there's hundreds of forms. It hasn't been mentioned on VBF directly yet, but to share a fairly important milestone: tB can import and run PhotoDemon now, without modification; true 'Import, save, F5'. There's still bugs and printing is unimplemented, but it largely works; you can open photos, use most to all of the editing tools, and save. PD has 210 forms, 53 UserControls, 135 classes, and 108 modules. We're even working with Tanner on some preliminary steps to update it to 64bit.

    I know it's disappointing when your own projects don't immediately open and run, but in most cases it's just a single or handful of issues, not some big laundry list where it's nowhere close

    The biggest outstanding issue is MDI forms; a lot of these megaprojects use them, and those are known to not be implemented, but that's changing soon now.

    AAraya, if you're able to share your projects, either here or privately with Wayne, it would be helpful to track down these increasingly obscure import bugs. (Unless it's MDI-related, then just sit tight for a bit).

  6. #6
    Fanatic Member
    Join Date
    Aug 2011
    Location
    Palm Coast, FL
    Posts
    689

    Re: Error IDE Importing vb6 project

    Didn't mean to mischaracterize the scope of the import issues. From my perspective, as a user only, it seems like a long list of import issues that were listed. But you're right, maybe this just boils down to one or two issue and tB is just being noisy about it's output and I'm misunderstanding what I'm seeing.

    No MDI in my project.

    How do I share my project with Wayne?
    Last edited by AAraya; May 6th, 2024 at 09:29 AM.

  7. #7
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    7,054

    Re: Error IDE Importing vb6 project

    If there's a parsing error, it could miss an 'End Sub' for example and trigger dozens of syntax errors following it. Or if you make extensive use of unimplemented App object methods like Log stuff those currently read as an error. Give that projects like PD run now it's hard to envision a scenario where there's still widespread, numerous bugs right on import..

    So if you open tB, select 'Import from VBP' in the new project dialog, then select your VBP... where are the errors generated, is this a list of things in IMPORT_LOG.txt or what's showing in the Problems pane? Could you give an example of some of these errors? I'm just curious. For a very large project you can also expect a lot of stuff in the 'Problems' pane that's not a true error but a Warning (yellow); by default tB generates warnings for things like not declaring a variable type or function return type, unimplemented form/UC/control properties/methods/etc, 'possible misuse of hexadecimal literal' where something is resolved to a negative Integer where you probably want a positive Long, and where you've declared something from msvbvm60.dll a warning it will be redirected to an internal implementation. None of those are true errors; tB fully supports implicit typing and acts the same way as VB with the hex stuff, but it does create a noisy problems pane in very large projects. You can use the red/yellow boxes in the pane's titlebar to hide warnings, or adjust what triggers them in project settings.

    You can send the whole project to Wayne via PMs to his username on here, GitHub, or tB Discord: WaynePhillipsEA

    Or info at twinbasic.com is listed as the contact email but I'm not sure if it's checked often so if you need to send it by email I'd just drop him a note by PM that it's there after sending.

  8. #8
    Hyperactive Member
    Join Date
    Dec 2020
    Posts
    285

    Re: Error IDE Importing vb6 project

    Quote Originally Posted by dsginfo View Post
    Very good days

    When I import Visual Basic projects it gives me this error and it does not indicate the original form and the program dies

    "IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'length'),1.855664, TypeError: Cannot read properties of undefined (reading 'length')

    I don't know if it has happened to anyone else, what could it be?

    Thank you very much and very happy day
    Thanks for sending the files to me.

    I am unable to test it properly since I have 14 missing references. However, the primary issue is that opening this project requires a significant amount of memory at the moment. You'll need to enable Large Address Aware in the IDE settings, but even then, just opening the project uses 3.6GB of RAM here (with the missing references causing lots of compilation errors, which could be a factor in the memory usage), so things will be very unstable as you're so close to the 4GB limit of 32-bit processes.

    Due to the excessive memory requirements, I suspect you're not going to be able to compile this mammoth project in tB just yet until we can address these problems.
    Last edited by WaynePhillipsEA; May 7th, 2024 at 07:14 AM.

  9. #9
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    7,054

    Re: Error IDE Importing vb6 project

    Out of curiosity, is there anything tB could do to take advantage of AWE to address more than 4GB? Even if RAM consumption is brought down considerably more (on top of the great work in reducing it already done), might need a ceiling above 4GB for modern IDE features for a project that size or larger.

  10. #10
    Hyperactive Member
    Join Date
    Dec 2020
    Posts
    285

    Re: Error IDE Importing vb6 project

    Quote Originally Posted by fafalone View Post
    Out of curiosity, is there anything tB could do to take advantage of AWE to address more than 4GB? Even if RAM consumption is brought down considerably more (on top of the great work in reducing it already done), might need a ceiling above 4GB for modern IDE features for a project that size or larger.
    Good idea, but TBH I think it would probably be easier to upgrade the x64 compiler to offer cross compilation to x86.

  11. #11
    Hyperactive Member
    Join Date
    Jan 2012
    Location
    Recently moved from Europe to Panama
    Posts
    287

    Re: Error IDE Importing vb6 project

    I have the same problem with a tiny, 1 form project that uses only a few standard VB controls. See the attached file. Attachment 191530
    Attached Files Attached Files

  12. #12
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    7,054

    Re: Error IDE Importing vb6 project

    Can you provide more details about exactly what you're seeing? I have no trouble importing, opening, and starting that project in Beta 532.

    Name:  regutilimp.jpg
Views: 435
Size:  25.6 KB

  13. #13
    Hyperactive Member
    Join Date
    Jan 2012
    Location
    Recently moved from Europe to Panama
    Posts
    287

    Re: Error IDE Importing vb6 project

    The project imports just fine, but when I open the form, loading stops at 89% and the debug console lists the error messages.

    Attachment 191539

  14. #14
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    7,054

    Re: Error IDE Importing vb6 project

    I cant see the attachment; if you want to embed images you have to click 'Go Advanced' and do it there. It's a long-standing forum bug.

  15. #15
    Hyperactive Member
    Join Date
    Jan 2012
    Location
    Recently moved from Europe to Panama
    Posts
    287

    Re: Error IDE Importing vb6 project

    New try:

    Name:  twinBASIC 01.jpg
Views: 403
Size:  25.8 KB

  16. #16
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    7,054

    Re: Error IDE Importing vb6 project

    I can see the picture now but it's too small to be able to read the text... don't need a new image if you could just copy/paste the text of the error messages. That's the same project file you posted? Or the complete version with code?

  17. #17
    Hyperactive Member
    Join Date
    Jan 2012
    Location
    Recently moved from Europe to Panama
    Posts
    287

    Re: Error IDE Importing vb6 project

    It's the same project file that I shared, without any code behind it.

    These are the error messages:

    05:34:16.729 IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    05:34:16.731 IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    05:34:16.901 IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    05:34:16.902 IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    05:34:16.902 IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    05:34:17.087 IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    05:34:17.322 IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')

  18. #18
    Hyperactive Member
    Join Date
    Jan 2012
    Location
    Recently moved from Europe to Panama
    Posts
    287

    Re: Error IDE Importing vb6 project

    Additional info:

    It's a Windows 10 virtual machine that just ran the latest updates. No VB6 or other development tools installed, just twinBASIC.

  19. #19
    Hyperactive Member
    Join Date
    Dec 2020
    Posts
    285

    Re: Error IDE Importing vb6 project

    Quote Originally Posted by Erwin69 View Post
    Additional info:

    It's a Windows 10 virtual machine that just ran the latest updates. No VB6 or other development tools installed, just twinBASIC.
    Weird. The VBP and form opens fine here without any problem also.

  20. #20
    Hyperactive Member
    Join Date
    Jan 2012
    Location
    Recently moved from Europe to Panama
    Posts
    287

    Re: Error IDE Importing vb6 project

    Ah, don't we hate these non-replicable problems?!


    Additional info on environment:

    - English Windows.
    - Dot as Decimal Separator.
    - First time install of twinBASIC.

    See below / as attachments screenshots of system and project settings, and the import log file.

    Let me know if there is other info you want me to share.


    Also, forgive me if it doesn't make any sense, but I remember that for Krool's common controls replacements, I had to copy a specific version of a type lib file. Could this problem be related to that?


    Name:  twinBASIC 02.jpg
Views: 389
Size:  44.0 KB


    Name:  twinBASIC 03.jpg
Views: 373
Size:  47.5 KB


    Name:  twinBASIC 04.jpg
Views: 367
Size:  30.9 KB
    Attached Files Attached Files

  21. #21
    Hyperactive Member
    Join Date
    Dec 2020
    Posts
    285

    Re: Error IDE Importing vb6 project

    Could you save the imported project (as a twinproj file), and upload that here. I just want to check whether it's the import process failing, or just a general problem opening this converted form on your machine.

  22. #22
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    7,054

    Re: Error IDE Importing vb6 project

    The project you shared doesn't have any of Krool's VBCCR controls, not even a reference to them. The only typelib dependence is stdole2.tlb; but I doubt you were messing with a system file like that. I"m also on Win10 EN-US with . but I don't think it's the OS.


    Just one thought; have you been installing new builds of tB over old ones? If so, try a clean extraction to a new folder.

  23. #23
    Hyperactive Member
    Join Date
    Jan 2012
    Location
    Recently moved from Europe to Panama
    Posts
    287

    Re: Error IDE Importing vb6 project

    Could you save the imported project (as a twinproj file), and upload that here.
    See attached.


    The project you shared doesn't have any of Krool's VBCCR controls, not even a reference to them. The only typelib dependence is stdole2.tlb; but I doubt you were messing with a system file like that.
    I'm not limited by a lot of knowledge in that area, so I indeed stay clear of that as much as possible.


    Just one thought; have you been installing new builds of tB over old ones? If so, try a clean extraction to a new folder.
    First time I downloaded twinBASIC, and extracted in a clean folder.
    Attached Files Attached Files

  24. #24
    Hyperactive Member
    Join Date
    Dec 2020
    Posts
    285

    Re: Error IDE Importing vb6 project

    Well, I'm stumped at the moment. The twinproj file opens fine here, including form design.

  25. #25
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    7,054

    Re: Error IDE Importing vb6 project

    Yup tiwinproj opens for me with no problem as well. Tonight I'll start trying in the VMs I have set up.

    In the mean time if you're up for it, maybe we can narrow it down some. Try loading each of the attached projects and let us know which, if any, are successfully loaded. I've removed various controls from each one vs the original.
    Attached Files Attached Files

  26. #26
    Hyperactive Member
    Join Date
    Jan 2012
    Location
    Recently moved from Europe to Panama
    Posts
    287

    Re: Error IDE Importing vb6 project

    Alt1: form loads until 73%, one error

    13:17:11.181IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')


    Alt2: loads form until 86%, multiple errors

    13:19:41.507IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:19:41.508IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:19:41.747IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:19:41.748IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:19:41.750IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:19:41.995IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')


    Alt3: loads form until 85%, multiple errors

    13:20:33.704IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:20:33.706IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:20:33.826IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:20:33.828IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:20:33.835IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:20:34.075IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')


    Alt4: loads form until 74%, multiple errors

    13:21:27.124IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:21:27.126IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:21:27.137IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:21:27.137IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:21:27.138IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:21:27.216IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')


    Alt5: loads form until 74%, multiple errors

    13:22:11.079IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:22:13.767IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:22:13.768IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:22:13.920IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:22:13.925IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')
    13:22:13.928IDE internal error: Uncaught TypeError: Cannot read properties of undefined (reading 'postMessage'), 1, 247885, TypeError: Cannot read properties of undefined (reading 'postMessage')


    Note: I closed twinBASIC each time, so that each project was opened in a "clean" environment.
    Last edited by Erwin69; May 10th, 2024 at 03:37 PM. Reason: Additional info

  27. #27
    Hyperactive Member
    Join Date
    Jan 2012
    Location
    Recently moved from Europe to Panama
    Posts
    287

    Re: Error IDE Importing vb6 project

    OK. I've done some further testing by creating various versions of the forms with only part of the controls. The problem is with the label controls.

    The arrays of labels with the text "-" don't cause a problem, but the single label controls with the texts "Product:", "Edition:", "Serial Number:", etc. are causing the error messages.

  28. #28
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    7,054

    Re: Error IDE Importing vb6 project

    Can you create a form with labels in a new tB project, save, then exit and reopen?

  29. #29
    Hyperactive Member
    Join Date
    Jan 2012
    Location
    Recently moved from Europe to Panama
    Posts
    287

    Re: Error IDE Importing vb6 project

    The error is listed in the Debug Console as soon as I create a label on the form. I also see a limited number of properties:

    Name:  twinBASIC 05.jpg
Views: 316
Size:  27.5 KB


    After saving the project, the same happens as with the other projects: processing the form stops at a certain percentage and the error is displayed in the Debug Console.

  30. #30
    Hyperactive Member
    Join Date
    Jan 2012
    Location
    Recently moved from Europe to Panama
    Posts
    287

    Re: Error IDE Importing vb6 project

    I tested this with all the controls in the toolbox and found that the Line object generated the same error message.

  31. #31
    Hyperactive Member
    Join Date
    Dec 2020
    Posts
    285

    Re: Error IDE Importing vb6 project

    Quote Originally Posted by Erwin69 View Post
    I tested this with all the controls in the toolbox and found that the Line object generated the same error message.
    Thanks for persevering with this. We've not had a bug report like this, and so it would seem important to track down what's going on here.

    Could you enable the trace log by going to project settings, search for 'trace' and enable the trace log options - all of them except the last one (buffering). Leave the file path set to {DEBUG}. Save changes and the compiler will restart. Now add a blank label to a form again, and you should see all sorts of extra information info in the debug console. Please copy the debug console info again and attach for me to review.

  32. #32
    Hyperactive Member
    Join Date
    Jan 2012
    Location
    Recently moved from Europe to Panama
    Posts
    287

    Re: Error IDE Importing vb6 project

    Name:  twinBASIC 06.jpg
Views: 310
Size:  31.0 KB


    This is the debug output after confirming the settings, and saving the project:

    File: Debug Log - Part 1.txt



    This part was added after creating a label on the form:

    File: Debug Log - Part 2.txt
    Attached Files Attached Files

  33. #33
    Hyperactive Member
    Join Date
    Dec 2020
    Posts
    285

    Re: Error IDE Importing vb6 project

    Quote Originally Posted by Erwin69 View Post
    Name:  twinBASIC 06.jpg
Views: 310
Size:  31.0 KB


    This is the debug output after confirming the settings, and saving the project:

    File: Debug Log - Part 1.txt



    This part was added after creating a label on the form:

    File: Debug Log - Part 2.txt
    Thanks a lot. I'm fairly confident this is a bug involving bad JSON being generated from the compiler service. Please try BETA 535 of twinBASIC - it should better detect this problem and provide an opportunity to copy the bad JSON to the clipboard. If you could attach the bad JSON here, we'll hopefully be able to see find out what's going on here.

  34. #34
    Hyperactive Member
    Join Date
    Jan 2012
    Location
    Recently moved from Europe to Panama
    Posts
    287

    Re: Error IDE Importing vb6 project

    Hi Wayne, I just tried with beta 536, and it works fine now!

    I did see a message about JSON in the bottom right corner at some point, but didn't link it to the label problem.

    Good news is that I now can start testing things with some of my projects. If I run into other things, I will report.

  35. #35
    Hyperactive Member
    Join Date
    Dec 2020
    Posts
    285

    Re: Error IDE Importing vb6 project

    Weird... I wasn't expecting it to actually fix the issue! Nice

  36. #36
    Junior Member
    Join Date
    Dec 2023
    Posts
    28

    Re: Error IDE Importing vb6 project

    when an opened file in the project is deleted the ide editor will turn black. of course i can click another file to refresh .

  37. #37
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    7,054

    Re: Error IDE Importing vb6 project

    I've seen this too but I don't think anyone has formally reported it yet, I'll add an issue tracker entry for it.

    Edit: Now tracked as #1852.
    Last edited by fafalone; May 22nd, 2024 at 02:41 AM.

  38. #38
    Junior Member
    Join Date
    Dec 2023
    Posts
    28

    Re: Error IDE Importing vb6 project

    the sample 8:filepropertyviwer doesn't work .

  39. #39
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    7,054

    Re: Error IDE Importing vb6 project

    Custom controls support (which is what Sample 8 demonstrates) was disabled in Beta 424 and has not yet been re-enabled.

    Reminder: 'Custom controls' are a new tB feature made with the idea of future cross-platform support, they're *not* the same thing as regular User Controls/ActiveX controls, which are working great.

  40. #40
    PowerPoster
    Join Date
    Jul 2010
    Location
    NYC
    Posts
    7,054

    Re: Error IDE Importing vb6 project

    Quote Originally Posted by fan2006 View Post
    the sample 8:filepropertyviwer doesn't work .
    Custom controls have been enabled again and Sample 8 is now working again as of Beta 546.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width