Search:
Type: Posts; User: dilettante
Search:
Search took 2.35 seconds.
-
In any case it sounds like a more fundamental problem here. Bad XML syntax is a separate matter.
-
Read the docs.
Those are assembly names and versions you assign, not necessarily the program's. Ideally, combined, they result in a "strong name" that Windows can use to track them in the...
-
Got me. This sounds like the nuttiest thing I've ever heard of.
How does some random manifest predict your program's needs? Not to mention that there are elements there which are supposed to...
-
We can't see your XML so we have to guess.
One guess might be that you failed to pad your raw XML to a DWORD boundary before adding it as a resource. That can result in padding with NUL bytes,...
-
Support for this is limited.
While it might be possible that a supporting property handler gets installed with later versions of MS Access, Windows (Shell32) itself does not seem to consider...
-
Looks like something from ancient times, perhaps DAO diddling with a Jet/ACE engine through its private API?
As far as I can tell neither OLEDB nor ODBC define a table description property, though...
-
I suspect that Currency is used in OLE's "metrics" calculations internally. You can see this abstraction "leak" by examining the data type used for IFont.Size for example.
Single type for many...
-
Decimal is entirely different. VB6 supports Decimal, but only as a Variant subtype.
https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wsp/60a4934f-5d45-4b5c-9c8c-81c1f5c331b2
-
No need to load the same image twice, dump one copy into an extra control, etc.
Just load it once and scale the StdPicture object's Height and Width properties as required.
-
I think you guys have missed the point entirely and run down a rabbit hole. The question doesn't seem to be asking about API calls:
I still think he was grasping for the Variant type.
-
If you like charts, this page is interesting too:
COVID-19 in the U.S.: How do Canada's provinces rank against American states?
Data seems to be retrieved and plotted on the fly, so full...
-
Maybe https://www.aivosto.com/project/project.html
-
We've been seeing a pretty consistent pattern in the U.S. since the winter "heating months" began in the north. For the most part the "northern tier" has been doing relatively well compared to...
-
No, the Currency data type doesn't "contain punctuation." You seem to be confusing it with text representations of such values.
This type is a 64-bit signed integer with implied scaling by 10000...
-
https://docs.microsoft.com/en-us/windows/win32/uxguide/ctrl-list-views#is-this-the-right-control
-
Translation: "Your relevant objective facts destroy my fragile narrative."
-
That makes sense. No matter how you slice it Trump is "over."
-
If you really need buttons to display color swatches you can do that using icons, either created separately as resources or on the fly as done in this example.
That way you don't violate Windows...
-
Meanwhile, in the U.K. they've routinely abused legal immigrants for a very long time.
Abuses against Migrant Domestic Workers in the UK
And then you need to consider who it was that...
-
I'd suggest that it was more than half:
https://www.usatoday.com/story/news/factcheck/2020/08/26/fact-check-obama-administration-built-migrant-cages-meme-true/3413683001/
A big difference...
-
Why wouldn't you use a Command button with graphical style if that's what you want? It sounds like all of your woes stem from a bad decision.
It's an ongoing mystery to me why people try so...
-
Ouch. I hope it doesn't hit you hard.
I've begun wondering if it isn't nearly inevitable for most of us though. I hope the "low viral load = lower impact" theory bears out. It might be the only...
-
Even better, avoid those magic numbers.
We have predefined named constants for a good reason.
-
No, this has been part of Windows for over 20 years.
-
What an orgy of insanity. Seek treatment.
-
If you want something like that there is always the Variant type.
-
Another good reason to mask up, wash your hands, distance, and isolate:
https://www.youtube.com/watch?v=3s5UovlwpcA
-
L.A. Times on Trump Derangement Syndrome in 2016:
Today they'd refuse to even print that op-ed piece.
-
Maybe try:
Option Explicit
'
'Here I want to try to color Label1 as closely as possible to the Form's
'caption/title bar.
'
'I only really care about Windows 10 since everything else is now...
-
Perhaps it's based on reputation, or something more ethereal like karma. ;)
-
This has nothing to do with Windows 10. It's almost certainly a deployment failure.
I suspect some cobbled together "installer" script is being used instead of a proper installation package. If...
-
Const VIETNAMESE_CHARSET = 163
Not sure which standard fonts support it though.
-
I don't think that's clear at all. I'd be amazed.
Of course they will. Trump was not elected "because he was Trump" in the first place. Aside from a small base of crazies most of his votes...
-
As I said, most Americans (3/4?) are not nearly as deeply divided as the media try to portray us.
It's not really all that inventive to suggest that disagreement "harms people" though. We saw the...
-
Er, point being, this needs to be defused before it really gets ugly.
Somehow I doubt that authoritarian austerity is the path forward.
-
It's true. The weight of reality is breaking through the wall of fake news. It is hard to suppress the will of 3/4 of the population. Only a fringe segment was involved the Capitol violence but...
-
Yes, his issue is that he has stored rich text in the database ands wants to print rich text. I suspect that Word is only here as a middleman because he doesn't know how to print from VB6.
-
In general.
It's an obsolete hack nobody should be using. Better to create/alter RTF documents. All of the problems described in that ancient MS KB article apply to desktop application programs...
-
Here's an example of printing an RTF document, in 2 columns spanning multiple pages with page numbering.
A programmer should be able to borrow from this to write a specific program with different...
-
Fairly easy if you can afford to trash the user's clipboard in the process:
Option Explicit
Private Sub Command1_Click()
With RichTextBox1
.SelStart = 0
.SelLength =...
|
Click Here to Expand Forum to Full Width
|