Search:
Type: Posts; User: dilettante
Search:
Search took 2.17 seconds.
-
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 =...
-
Doesn't work. "f" will be Nothing.
-
My guess is that somebody used MS Access to create the database.
Now we have some program that wants to intuit intent by examining the DataFormat. But the Provider does not return the information...
-
Field.DataFormat is effectively an expando property. Few if any OLEDB Providers persist it, and probably no ODBC Drivers do.
MS Access stores that sort of thing in private structures it writes to...
-
The scoops are coming!
https://www.youtube.com/watch?v=ABBQw6Ffbb8
-
Oops, found a bug in post #10:
'Move Ace to 0 since spritesheet has it after King:
If CardX = 14 Then CardX = 0
Should be:
-
Why would you need any "exit" button?
A normal Form already has a "close" button, and there is also the control menu as well as Alt-F4.
-
As it turns out none of it matters anyway.
https://www.youtube.com/watch?v=SapB7mjL_sg
Yes, globalist neoliberalism is collapsing due to natural causes.
So the crazies at both ends of the...
-
Note that TOM is documented in the MSDN CD docs that came with VB6, at least the later editions such as October 2001. That was the final free update for VS/VB 6.0 customers and the one you really...
-
Well, there is always TOM for this stuff:
Option Explicit
'Reference to "tom" type library in RICHED20.DLL.
Private Const RTF_FILE As String = "test.rtf"
Private Const CP_ACP As Long =...
|
Click Here to Expand Forum to Full Width
|