Great find! I was looking for that on the web but didn't locate it.
Type: Posts; User: dilettante
Great find! I was looking for that on the web but didn't locate it.
As far as I can tell those forums work like this:
You start at the VB 6 Resource Center.
It directs you to those forums.
You get there, post something. Everyone yells at you "These forums...
I suspect this would add so much overhead that it would be far slower.
DAO comes in different versions for different versions of Jet MDBs.
Using ADO/ADOX along with Jet OLEDB Providers gives you more flexibility. The Jet 4.0 Provider should work with any MDB in Jet...
I'm sure this has been covered lots of times already, but here's another take.
The basic idea is to use the Printer object's PaintPicture method to crop and scale a StdPicture as you print it. ...
Not really. See the "drop button" in those screenshots, which are only showing examples in "dropped" state?
That's because "MS Win Common Controls 6.0" (MSCOMCTL.OCX) does not use comctl32.dll but contains its own implementation, thus a manifest can't make a difference.
Glad to hear you are getting some results.
How VB Programs Are Written
Where to begin?
You need to realize that Windows programs' user interface threads are what are called State Machines....
As written it tries to create an unused file name by testing for one that already is in use:
Private Sub cmdSaveCard_Click()
Dim FileTry As Long
Dim FileName As String
...
I found this too, but it is pretty brief:
Basics of an IDL file
This is older but a little longer:
Understanding Interface Definition Language: A Developer's Survival Guide
This is nearly...
Well either way I guess we're still left, hand in hand, waiting while other forum sites have moved ahead.
So the short answer to the question posed is no.
The longer answer is you can use an alternative instead.
No.
The ImageCombo only has one style as far as I can tell.
Each ComboItem within it supports an Indentation property as well. The idea is to have a hierarchical combo-style control, sort of...
Which things are you missing? Which things do you need?
Er, Tapatalk has supported this for a long time, if not from the beginning.
The problem is that you need to know what size the image has to be for your printer. The image size will be in pixels, and your printer might print at different "pixels per inch" (dots per inch),...
As far as I know the ByRef/ByVal concept as such is a VB thing. While there is clearly some way to "decorate" arguments in ODL/IDL to report this (since we see it for COM typelibs) the VB6 compiler...
Let's say the data arrives in BCD format. Odd, but let's assume that. Conversion is extra work but this isn't a big deal unless we're making bad assumptions, but since we have several attempts to...
Goofy questions like:
... don't help to understand what's being asked for either.
What "form" does he think 331 is in? Sure looks like decimal to me.
As far as I can tell Web Folders are not supported "out of the box" after Windows XP. Installing Office 2000 or later may add the feature, but it may still be broken in Windows 7 (there was a fix...
Thanks. That condition should have been trapped. It is now (attachment above reposted with correction).
However it doesn't explain why you can't connect. Maybe you didn't provide a correct...
We don't have an easy bit-shift in VB6 that respects the sign bit, so we have to work around that a little.
Maybe this does what you need:
Function DecodeBCD(ByVal LongBCD As Long) As Long
...
A search of the CodeBank here should turn up several examples.
My own attempts can be seen in Clean Ping in VB6 Code, version 3 there being a little cleaner than version 2 posted there first.
It is hard to say exactly how you want to incorporate those actions. The biggest issue would be designing the user interface. Choose scaling size via Slider? Set cropping margins via some sort of...
Can you post the Declare you are using for it?
You can also have one typelib covering multiple DLLs as far as I know by including multiple "modules" in the ODL/IDL source. Most people won't do...
What you have there is not a mapped drive, but an Explorer "Network Place" or "Web Folder" which is a horse of an entirely different color.
FTP is notorious for being an insecure, stateful, meant...
Maybe. Maybe not. It's a well known issue though and I've seen it myself with API callbacks that run on their own threads time after time.
This isn't just about RtlMoveMemory() calls, it is...
Well you can't say you didn't try hard.
Maybe the problem is related to those cautions about the only calls that are safe from within a waveInProc callback?
Er, I think you mean convert between BCD and binary. VB6 never actually works in decimal at all. Even the Decimal Variant subtype is a binary format.
Can you show samples of the BCD you have...
Got it.
Sure was a pain figuring out where to dig it out from though. The info isn't where they say it is in that quote above.
Even so, it requires Shell 5.00 or later so it probably won't...
Regarding my post #18 above:
Note that results might vary from version to version of Windows. Sometimes the extended properties have different "friendly names" and then you'd want to fetch them...
There is another approach: ask Windows Explorer (a.k.a. Shell32).
This can be quick or a littler slower depending on whether it already has the info cached from a previous viewing. But at worst...
Here's another "scope" that is just plotting a noisy sine wave generated via Timer ticks.
It uses the trick of sliding and swapping two "panel" PictureBox controls within a "viewport" PictureBox...
Yeah, but that site is very old and very stale. Worst part is I'd probably have to request my "lost password" to even update it now!
Keeping a web site up to date is a lot of work. It is hard...
This really isn't a smart idea. You risk your installer colliding with existing SQL Server software and instances just for starters. Even SQL Server Compact can be a problem in this regard though...
What is a "custom software's DLL?" Are you talking about a custom DLL you wrote? If not, what makes a DLL "belong to" some "custom software?"
Setting that aside...
No, there is no magical set...
First thing to be conscious of is the difference between actual VB and the .Net knockoff.
Yes, that ancient MIDL compiler should still work - though it isn't guaranteed to on a post-XP version of Windows (none of VC 6.0 is supported post-XP).
Glad to hear it helps. Good luck.
For the curious I created an Excel Workbook that uses BmpGen.
I agree with Bonnie West's alternative, which is far less trouble and has far less to go wrong.
Your code has a lot of problems as written. Memory leaks, sloppy use of Variant-typed functions,...