Posts
 
Reputation
Joined
Last Seen
Ranked #367
Strength to Increase Rep
+8
Strength to Decrease Rep
-2
100% Quality Score
Upvotes Received
52
Posts with Upvotes
39
Upvoting Members
20
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
12 Commented Posts
1 Endorsement
Ranked #857
Ranked #569
Member Avatar for Paulmescal

I use two - Kroger and Walmart. I want access to the app's features without having to create an account and sign in. I want easy access to the search function with accurate results and convenient options like in stock, out of stock, and sorting. In an app for brick …

Member Avatar for Intellect_1
0
53
Member Avatar for arcon

I don't understand a few things. There are option buttons and there are check boxes. So I don't know what you mean by "option button checkbox." I also don't know what you mean by "record." Do you mean print? Read values from a file? I would suggest instead of checking …

Member Avatar for SCBWV
0
84
Member Avatar for cambalinho

VB6 doesn't support <<. As best I can determine, the C code is shifting bits to the right, then back to the left, effectively clearing the lower 6 bits. In VB6, you can do the same by: Dim py As Long Dim shiftedValue As Long shiftedValue = py / (2 …

Member Avatar for pritaeas
1
76
Member Avatar for SCBWV

In case you're wondering, VB6 programs run on Windows 11. Programs with a manifest have the appropriate Windows 11 appearance. The IDE works as well, although it seems to aggravate the known Windows 11 Taskbar flickering issue, but it settles down quickly. The only issue I have found so far …

Member Avatar for wolfnero
1
1K
Member Avatar for rproffitt

This will be interesting to follow through the appeals. If they allow the AI creator to copyright, couldn't the dataset author(s) also claim a copyright? If the AI works can't be copyrighted, then at least a portion would be derivative work not covered by copyright, which I believe is what …

Member Avatar for Reverend Jim
3
255
Member Avatar for Reverend Jim

Good detective work! I really like Windows 11, but the list settings are becoming quite extensive and almost overwhelming. Some of it' quirks can drive a person nuts. The latest for me is Windows desktop Spotlight has quit working, which seems to have been an issue going back couple years …

Member Avatar for Reverend Jim
3
197
Member Avatar for blud

Oh no! I'm saddened to hear that. I wish you and your husband the best and you a speedy recovery.

Member Avatar for SCBWV
2
157
Member Avatar for SCBWV

After complaining for months to MS to stop Edge from adding websites to my Quick Links bar, it seems to have stopped. Nothing was more frustrating than reading some news pages then having to delete a ton of links from Quick Links. Is this your experience?

Member Avatar for SCBWV
1
79
Member Avatar for Reverend Jim

I had this happen before, but not with VLC. It seemed randomly, Explorer would become the foreground app. It happened so frequently, I thought I had a mouse / driver issue. It hasn't happened again for a few months. Perhaps an update fixed it for me.

Member Avatar for Naini
2
160
Member Avatar for mankind33

I don't believe the control allows you to set volumes. You can use waveOutSetVolume and waveOutGetVolume in MMSYSTEM.DLL. I prefere to use the old MCIWNDX.OCX control which allows adjusting speed and volume.

Member Avatar for frank_49
-1
383
Member Avatar for Joaquim_5

There are color constants in VB6 for the basic colors. Specifying the color with hex or RGB values allows you to select one of 16,777,216, thus there aren't constants for all of them. vbBlack 0x0 vbRed 0xFF vbGreen 0xFF00 vbYellow 0xFFFF vbBlue 0xFF0000 vbMagenta 0xFF00FF vbCyan 0xFFFF00 vbWhite 0xFFFFFF

Member Avatar for Joaquim_5
0
325
Member Avatar for Joaquim_5

I assume you're trying to create a screen compatible DC by passing 0& to CreateCompatibleDC. Perhaps try: Private Declare Function CreateCompatibleBitmap Lib "gdi32" (ByVal hdc As Long, ByVal nWidth As Long, ByVal nHeight As Long) As Long Private Declare Function CreateCompatibleDC Lib "gdi32" (ByVal hdc As Long) As Long Private …

Member Avatar for SCBWV
0
212
Member Avatar for Joaquim_5

It's difficult to determine the cause without seeing the rest of your project. Could it possibly be the DrawMode of the surface on which the line is being drawn?

Member Avatar for AndreRet
1
634
Member Avatar for jenlhandy
Member Avatar for antonio78
1
115
Member Avatar for arcon

I don't know Spanish, so it was difficult for me to follow. As best I can determine, you are trying to use the NAME keyword to rename a file: Name App.Path & "\inventario\inventario.temp" As App.Path & "\inventario\inventario.txt" Name returns the name used in code to identify a form, control, or …

Member Avatar for arcon
0
121
Member Avatar for om_138
Member Avatar for arcon

Well, the immediate problem is you are referencing Text2 in the loop for every record you're trying to save: MyRecord.Name = "MyName" & " " & Text2.Text The other problem I see (or one that will cause you problems later) is you're using a ListBox and combining record properties into …

Member Avatar for SCBWV
0
284
Member Avatar for SCBWV

Happy New Year everyone! Wishing you and yours and happy, prosperous, and healthy new year!

Member Avatar for bravomorris9
1
32
Member Avatar for Dani

What about SMS text verification? Probably more expense, although I'm not sure how much.

Member Avatar for Reverend Jim
1
79
Member Avatar for willianrc

Use a ListView, then add SubItems For example: Set itmx = ListView1.ListItems.Add() itmx.Text = FirstColumnText$ itmx.SubItems(1) = SecondColumnText$ itmx.SubItems(2) = ThirdColumnText$ etc. Be sure to change the View to 3 - lvwReport

Member Avatar for SCBWV
3
1K
Member Avatar for Thao_14
Member Avatar for Dani

Congratulations! Sounds like a great month even if quite busy. Where did you honeymoon?

Member Avatar for Dani
1
53
Member Avatar for kasmar45

I think it's wonderful, at nearly 80, that you decided to continue programming. I admire your ambition. I have written countless programs that no one will ever use except me, and I thoroughly enjoyed writing them. Go you!

Member Avatar for john_111
4
293
Member Avatar for SCBWV

Has anyone experienced the function Windows SystemParametersInfo reporting a different display resolution after returning from sleep mode? My display is 3840X2160, which the SystemParametersInfo reports accurately. However, upon returning from sleep mode, SystemParametersInfo gives a resolution of 2560x1392, which doesn't match any configuration in the Windows Registry under Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers. The …

Member Avatar for rproffitt
2
372
Member Avatar for mayzebra

This may help: [url]http://msdn2.microsoft.com/en-us/library/hfzzah2c(vs.71).aspx[/url]

Member Avatar for nirdeshdabas
0
3K
Member Avatar for prem.teamwork

If you know the PPS file ahead of time, you can embed them in the VB application as an insertable object. However, I don't see where PowerPoint lets you programmatically assign the file in VB. As an alternative, you could shell out to PowerPoint then close it with your program. …

Member Avatar for Denver Museka
0
616
Member Avatar for tgifgemini

If you want to trap the Tab key in the KeyPress event, you have to disable to TabStop property in all other controls on the form, but you will have to handle moving the control focus yourself. Once the TabStop property is set to false, the Tab key will be …

Member Avatar for zebnoon
0
3K
Member Avatar for dilip_singh3

Yes, use twipsperpixel... I recently found this changed on wide-screen flat panels, and if you don't adjust for it, some elements on your forms will look crappy.

Member Avatar for AndreRet
0
4K
Member Avatar for pinus-strobus
Member Avatar for winrawr

Microsoft promised to make VB6 programs "just work" in Vista because there's a TON of classic VB code out there in business and industry - a segment VERY reluctant to upgrade operating systems. Yes, they have a ton of legacy code... and it works for them. And re-writing or converting …

Member Avatar for winrawr
0
235