Search:
Type: Posts; User: Eduardo-
Search:
Search took 0.47 seconds.
-
It is impossible compiled. Because the module's procedure names are not saved.
-
I don't know what is going on with the font properties in Acccess, but I made some modifications to make them appear.
Please test with the attached project.
-
AFAIK procedure names in bas modules don't get compiled. So you can't call them by name.
-
You must be talking about another control.
-
One strength that is has is that it is economic (short sentences, few words). That feature is good for using it as the base for a programming language.
Spanish can express many things with more...
-
In other words: once you learn Klingon, Klingon must be as good as English, but tell me if you would not prefer to have to learn an English dialect instead if you can choose.
{
};
-
Yes, it would work. They will have to find something else to criticize.
There are many people in the middle that follow what others say. If they can't say much, it is a win.
About familiarity...
-
The most clear, obvious and instant advantage is to shut the mouth of all haters that say "VB6 is not OOP because it does not have inheritance" or "it is very limited" or "not for serious projects"....
-
You can try with this one (use the windowed version). Set the Orientation property to the desired direction.
-
Many of us (I guess) run away if they see some texts in Chinese.
-
OK, thank you for the clarifications.
-
Is there somewhere a list of all new features introduced to tB now?
I was about to open an "issue", but didn't want to suggest something already supported.
Also, should they be things only...
-
Ah, OK. I recalled that it mentioned that you can use Basic or JS but not the details.
-
Yes, I know.
I don't want to argue, just wonder for a real case use.
-
Mixing languages might be a good idea, specially if it later comes to support languages like TypeScript, Python.
Not sure if NSB/AppStudio already has something like that.
-
Sorry, but about which one are you talking about?
The one I proposed is like IIF but short-circuited (does not evaluate both as IIF does).
The one that wqweto proposed is to assign a value to...
-
About the ternary that you propose, I can't think where I would need that.
Also, in VB6 it can be done like this:
If condition Then a = 10 Else b = 10
But the other one, could have some...
-
I don't see how that could be of much use.
But instead:
x = If(condition, a, b)
similar to current IIF, but where the False part is not evaluated beforehand.
-
Thanks for responding Wayne,
I don't know why you need multiple components per file, what are these components and why they cannot be written all together, the text part into a text file and if...
-
Hello, congrats for your achievements!
Since it is intended to have backward compatibility with VB6 I want to ask if there is any technical reason for not sticking to the original file format and...
-
It is the caption of the form at design time, and its hWnd.
-
Yep, the caption can be temporarily changed:
Private Function GetDesignerHwnd(nComponent As VBComponent) As Long
Dim w As Window
Dim iCaptionPrev As String
Dim h As Long
...
-
Updated!
Yes, thank you for the suggestions, done.
Thank you.
-
Yes, that is a problem, but I don't know how to solve that.
I could set a shortcut but it doesn't work:
cbMenuCommandBar.ShortcutText = "Ctl+M"
And I'm not going to install a keyboard...
-
Updated the description, for better understanding of what problem it is intended to solve.
-
Private Declare Function SendMessageLong Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long
Private Const LB_GETITEMHEIGHT...
-
Move several controls certain left and/or top at the same time.
Not sure if other add-ins do this (probably), but one feature that the VB6 IDE lacks is the ability to move all the selected...
-
Thank you.
Glad that you could fix the issue.
Your feedback is important (both), it encourages me to keep working on further improvements.
-
IDK.
About the issue, I think that the rendering of the text gets blended with the the background color due to anti-aliasing, and since the transparent color is only one (no shades) then what you...
-
I see perfect red (255-0-0).
180931
-
It is possible with this control instead, but it has only standard (VB6 original) shapes.
Currently not.
Humm, color should be accurate. In any case please post (a minimal) sample test...
-
Here there is code for that.
-
It changes the default font from 'MS Sans Serif' to other font of new Forms, UserControls and PropertyPages that are added to the project.
You can configure the font that you want, the default one...
-
Code can run at design time if you have UserControls or also you can type a procedure name in the immediate window and run that code.
This function takes advantage of an error that is raised only...
-
I added the BackStyle property in the attached project.
Not sure whether to update with this feature in the "official" version.
To set the transparency:
Set VisualStyles property to False.
Set...
-
Hello,
Thank you.
It is the same with any OCX, it needs to be registered.
From many years to date, I use Side-by-side assemblies (SxS). No registration is required, but it is required a...
-
Reinstall VB6.
Some of us have 20H2 and VB6 works fine.
-
You can manifest the program to use Windows themes, also called Visual styles, and the controls that support visual styles will render with the visual style set on Windows (the theme).
But you...
-
From MS Edge FAQ's page:
I think that you should realize that there are some technologies that are obsolete and discontinued and won't work anymore.
They are:
ActiveX for web pages.
-
I guess you could do sub-pixel drawing in an UserControl using antialiased GDI+ based in a calculation of the Top and Left of the Extender.
First computing the real position in pixels and after...
|
Click Here to Expand Forum to Full Width
|