Search:
Type: Posts; User: fafalone
Search:
Search took 0.58 seconds.
-
I was working on a project, doing absolutely nothing related to the PictureBox controls, then all of a sudden that error pops up on load "Problems loading ctl see ctl.log for details" for a couple...
-
So my theory about IFileOperation working seems to be incorrect... kept saying "name invalid or too long" (which wasnt true)
But dragdrop absolutely works, check this out:
Public Sub...
-
Technically, Windows Explorer supports FTP objects.
If you create a shell item with an FTP url, you can drop files on it to upload. This is why my shell browser control can navigate FTP sites and...
-
The question is 'Are the legitimate uses of this exceptionally unlikely, or is this commonly used for legitimate purposes.'
There's many reasons why you'd access the class objects of another exe,...
-
In an actual gray area sure. But this isn't asking about how to execute arbitrary code using a buffer overflow, or silently escalate privileges above the current user... what a 'gray area' is should...
-
Now I'm curious about doing this too because I'd like to dig into some of the ListView and shell objects in Explorer to try to figure out some of the undocumented stuff I can't quite get to work in...
-
Just FYI, if you ever wanted to include sample songs, there's https://freemusicarchive.org which offers music under the Creative Commons license, where it's free to share with attribution.
-
ah good call, I'd tend to fix it at the source, GetComboText was adding a 1 to the length even if it was 0. Can't recall if the extra 1 is needed for anything or not, but in case:
Private Function...
-
Definitely possible, just a few small changes. Not sure when I'll be ready with a new version, but the way you'd go about it is to add an lParam: Add the bolded code in the functions below:
...
-
Be aware: A while back VBForums upgraded the forum software here, and this new version has a feature that randomly picks old posts, replaces imgur embeds with what appears to be an attempt to host...
-
Task Scheduler 2.0 is still the current version, so it should work on Windows 10 without issue.
My type library has all of the Task Scheduler interfaces defined, so you could more easily modify...
-
I noticed the behavior in my shell browser control.
Then verified it's not just my problem, as it appears in the other API-based ListView controls as well.
I've since written code that solves...
-
So I hadn't noticed this in other programs, and figured it might be something with my code, but apparently it's just the item names...
When I put it into Group View and Small Icon view, some items...
-
Ah well I think I tried a few different things and after an example from MSDN didn't work either I just said screw it, I'll do it manually :ehh:
-
**New update again on Feb. 11**
Project Updated to v9.2 R3
Quick fix: When Group View was enabled and the current View Mode was something besides Medium/Large/XL Icons, or Thumbnails, if you then...
-
Project Update: Version 9.2 (February 9th, 2021)
Severe bug: I'm very sorry for a bug in the previous version that showed an incorrect menu when right clicking a file (the shell background menu...
-
Where's the preliminary data coming from?
You have to remember that the 95% numbers only apply after the full course... at least a few days after the second shot, for the full immune response to...
-
If you're talking about the 3rd party thing I mentioned, ffprobe isn't a shell extension you need something like the AJD FLAC Property Handler
-
If the DeleteFile API is failing too it definitely seems like a permissions issue, it's supposed to specify the error for GetLastError but that might be broken, I couldn't get error codes for...
-
The shell extendedproperty method likely wouldn't work on XP. Only Windows 10 has a built in FLAC property handler; even Windows 7 doesn't.
You can install a 3rd party one and then the shell can...
-
It seems that error can be related to access issues, and I'd tend to agree since you said this exact code used to work? Was it working on the same drive, or locally? Because I was just playing with...
-
So I've been using the same code to switch views for a long time, and this is a new issue that's occurred on unmodified code. The project, when run from the IDE, freezes and has to be killed from a...
-
Was it a Windows update that broke it? Could be you need to run as admin now.
But what specific line is causing the issue?
-
You can remove the column header from Details view and only have one column if you want to maintain the same appearance.
Dim dwStyle As Long
dwStyle = GetWindowLong(ListView1.hWnd, GWL_STYLE)...
-
I'd try making sure the LabelWrap style is turned off, and expanding the 1st column length just in case. I've not seen it truncate text like that, but it definitely controls item widths even in List...
-
Are you sure the strings are variable length and ended... it's 'Compare Two Stores' and not
'Compare Two Stores '?
-
That some companies want to pretend there shouldn't be a difference between words used to describe something that runs over the open internet and words used to describe something running on the local...
-
"web" implies "world wide web"
If it wasn't going over the internet I'd expect it to be referred to as a network system, LAN system, or even server system, rather than "web" system.
-
Do you just mean when you open a project, or when you actually go to run it?
When you first open a project it cycles through all the windows you had opened when you last closed it... Form UI, Form...
-
The biggest disappointment of the decade in the programming world was when that massive source code dump of Windows didn't include the source of msvbvm60.dll... we really could have used that...
-
Unless there's a really good reason it must be a web system...
Making something a web system and thus requiring an always-active internet connection, and introducing security vulnerabilities that...
-
My job has nothing to do with VB6, everything I do here is just for fun in my free time outside of work :D
But I understand some people have what's called a "life" that limits their time outside...
-
Indeed it's not that I couldn't create the array, it's manually writing out each and every number. The perl script attached implements the naming rules themselves, so has no upper limit, while my...
-
The main advantage is if you wanted to add customizations to the dialog; it's much easier to add additional controls with IFileDialog.
Also really helpful the event callback class makes handling...
-
The 65k total physical limit is for the module.
Yep you could store a few MB if really determined to do it that way, but I like the bitmaps for more than a few kb.
-
Your Num2Str function would seem to only support (1 trillion - 1)?
I have a function someone wrote that supports no maximum whatsoever, but it's written in perl that was hosted on a website, and I...
-
You can't exceed 65k physical lines.
So theoretically you can store (65k - actual code lines) * 1,024 bytes in blocks of strings up to 15kb each (it says 24 concatenations per line, but using a...
-
There's limits on that:
Plus, when it's more than a very small amount of data, having thousands or tens of thousands of lines of binary data is not ideal for editing.
-
The important part is not having any additional dependencies; just the object that uses the data having it within its own file.
Your method or something like dilettante suggested is definitely the...
-
The FileStorage control is saving the file in Form1.frx, making it persist with the project. And then the data is associated with the control, so it can't be removed, adding several more files as...
|
Click Here to Expand Forum to Full Width
|