sequential file save read option button Programming Software Development by arcon I think I can record but I can't read with the option button checkbox I don't know if I do the recording procedure correctly Re: sequential file save read option button Programming Software Development by rproffitt 1. With so few having VB6 now, you need to move to a current release. Help will be hard to find. 2. I can't load up your project. Few others can so by not posting the relevant code in the clear with your assessment, you see the issue? 3. VB6, while I coded very large projects long ago, "It's Dead Jim." That is, you're on a deserted … Re: sequential file save read option button Programming Software Development by arcon Sorry but you have not given a solution to the issue, because I see that here in this forum people continue to ask about vb6.0 Re: sequential file save read option button Programming Software Development by Reverend Jim Yes. People continue to ask about VB6. They shouldn't. And you likely won't see anyone answering questions about, for example, COBOL or QuickBASIC, except in a historical context. The only VB6 question that should be asked is "why are you still using it?" Re: sequential file save read option button Programming Software Development by rproffitt I noted the issues with your post and the problems with what is a dead system. While I do have one last VB6 dev laptop in storage I only pull it out for paid work. And at 250USD a hour the only company that pays is very careful about their requests. You ignored how such problems are presented. ZIP file? Too dangerous today. You could have … Re: sequential file save read option button Programming Software Development by arcon because it still works and there are many people who use it, thank you Re: sequential file save read option button Programming Software Development by arcon because it still works and there are many people who use it, thank you Re: sequential file save read option button Programming Software Development by arcon thanks for everything Re: sequential file save read option button Programming Software Development by SCBWV 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 for "1" that you use "If chkExtra(0).Value … Re: preschool management system Programming Software Development by simhakidsden A preschool management system is a tool or software used to organize and manage activities, records, and communication within a preschool. It helps streamline tasks like enrollment, attendance tracking, scheduling, and parent communication for efficient operation. ChatGPT ‘Lobotomized’? Performance Crash Sees Users Leaving in Droves Community Center by Johannes C. … for the following behavior: * inability to follow basic instructions * increasing forgetfulness * refusal to do basic research or share links * refusal to write… who believe in Santa Claus. Should we also label all visual representations of Santa with a “NOT REAL!” disclaimer? I’d… Re: Getting Started With C# - The List Programming Software Development by Shahzad111 C-Sharp Tutorial is for student and prefessional who want to learn C# programming from basic to advance. We have discussed every topic of C# alonge with examples in this tutorial guide. https://c-sharptutorial.com/ Re: VB6 and Windows 11 Programming by wolfnero How you fix the taskbar flickering? VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho heres my RayCasting function: Private Sub DrawRays2() Dim AY As Double Dim AX As Double Dim StepX As Double Dim StepY As Double Dim VertX As Double Dim VertY As Double Dim HorizX As Double Dim HorizY As Double Dim MapX As Long Dim MapY As Long… Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by rproffitt For VertDist I would set a break on line 104 so I could examine the values in line 103. Also, could be a localization issue that the comma is used for the decimal point and the integer of the results might be 35 and 4548. Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho finally i found the problem is on these line: HorizDist = Sqr(((HorizX - Player.PosX) * (HorizX - Player.PosX)) + ((HorizY - Player.PosY) * (HorizY - Player.PosY))) 'works fine VertDist = Sqr(((VertX - Player.PosX)) * ((VertX - Player.PosX))) + (((VertY - Player.PosY)) * ((VertY - Player.PosY)))'calculation incorrect like … Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho not so easy :( WallDistance = WallDistance * Cos(Abs(RayRadians - Player.Radians)) 'avoiding the Fish Effect RayHeight = (ObjectSize / WallDistance) * 200 '320 is the width screen If (RayHeight > 200) Then RayHeight = 200 A.ForeColor vbBlue A.DrawLine 475 + 50 + RayCounts, 200 / 2 - … Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho actual code: Private Sub DrawRays2() Dim AY As Double Dim AX As Double Dim StepX As Double Dim StepY As Double Dim VertX As Double Dim VertY As Double Dim HorizX As Double Dim HorizY As Double Dim MapX As Long Dim MapY As Long Dim HorizDist … Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho i fix 1 error: ElseIf (KeyCode = vbKeyUp) Then If (LevelMap0(Fix((Player.PosY + Player.MoveY * Speed) / ObjectSize), Fix((Player.PosX + Player.MoveX * Speed) / ObjectSize)) <> vbBlue) Then 'and: ElseIf (KeyCode = vbKeyDown) Then If (LevelMap0(Fix((Player.PosY - Player.MoveY * Speed) / … Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho after several tests i fix it: Do While RayCounts < RayCount If (RayRadians > (2 * PI)) Then RayRadians = 0.001 i have more to update: 1 - win more performance\FPS; 2 - and trying avoid the 'on error resume next'(it's about the array dimensions): Private Sub DrawRays2() Dim AY As Double… how convert cur images to image? Programming Software Development by cambalinho how can i convert cursor files to image? i need see the cur\ani on picturebox?(just for learning) Private Sub btnChooseImage_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnChooseImage.Click If (ofdChooseFile.ShowDialog = Windows.Forms.DialogResult.OK) Then If (ofdChooseFile.… Re: how convert cur images to image? Programming Software Development by pritaeas Not easy, but [here](https://github.com/thetrik/VbPng)'s a lot of information. Basically, it's an [ICO file](https://docs.fileformat.com/image/cur/). Re: how convert cur images to image? Programming Software Development by cambalinho damn i can't edit.. it's VB2010 and not VB6... but the tags is vb.net... i'm sorry Re: how convert cur images to image? Programming Software Development by Reverend Jim Why not just load it into paint.exe then save as whatever format you want? Or you could download [ffmpeg](https://ffmpeg.org/) (free) and do ffmpeg -i myfile.ico myfile.jpg (or whatever format you want) ffmpeg can also be used to convert video between any formats. Also subtitle files. ffmpeg is a portable app (no installation required)… Re: how convert cur images to image? Programming Software Development by cambalinho like i said: is for learning... we can use that images in several places ;) how converte C to VB6? Programming Software Development by cambalinho how can i convert these C line: (py>>6)<<6) to VB6? Re: how converte C to VB6? Programming Software Development by Reverend Jim Remove the trailing `)` and it should work. Re: how converte C to VB6? Programming Software Development by SCBWV 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 ^ 6) ' Shift right by 6 positions shiftedValue = shiftedValue * (2 ^ 6)… Re: how converte C to VB6? Programming Software Development by Reverend Jim Glad you were able to work it out. Why are you still using VB6? Re: how converte C to VB6? Programming Software Development by Reverend Jim I always recommend ditching VB6. It is super old technology. If you were using Python 2.x I would also advise moving to Python 3.x for the same reason. If you stick with the old you will be left behind. If I were a potential employer I would not hire anyone who only worked in old tech except for the very rare case when it is required to maintain …