Re: What is best method for link building nowadays? Digital Media Digital Marketing Search Engine Strategies by KomalBhatt Use keywords in anchor text. Commit to regular link building. Build links from relevant websites. Create infographics and other visual assets. 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. 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 … ChatGPT ‘Lobotomized’? Performance Crash Sees Users Leaving in Droves Community Center by Johannes C. … who believe in Santa Claus. Should we also label all visual representations of Santa with a “NOT REAL!” disclaimer? I’d… Re: Which social sites is best for SEO? Digital Media Digital Marketing by jofrachalya142 … good for quick updates and links. Instagram is awesome for visual content, and LinkedIn works well for professional connections. Pinterest is… cool for sharing visual ideas. If you use these sites smartly, they can help… Re: What is most effective social media platform for paid campaign? Digital Media Digital Marketing by Deftsoft …, which is owned by Facebook, offers similar targeting capabilities and visual appeal, making it a strong contender for paid campaigns, especially… for brands with highly engaging visual content. Ultimately, the effectiveness of a social media platform for… Re: What is most effective social media platform for paid campaign? Digital Media Digital Marketing by bessieexum … brand visibility; LinkedIn excels with B2B marketing; Pinterest excels with visual discovery for predominantly female audiences while Snapchat specifically targets younger… Re: What is most effective social media platform for paid campaign? Digital Media Digital Marketing by simhakidsden … younger audience and is suitable for brands with a strong visual presence. You can create Instagram ads from Facebook Ads Manager… Re: What is most effective social media platform for paid campaign? Digital Media Digital Marketing by trueframe …. Instagram: Target group: Visually oriented young viewers. Strengths: A highly visual platform that is effective for brand awareness and engagement. Twitter… Re: Which social sites is best for SEO? Digital Media Digital Marketing by bessieexum … social media sites for SEO purposes, followed by Instagram for visual storytelling, LinkedIn for B2B marketing, TikTok as a short-form… Re: What is most effective social media platform for paid campaign? Digital Media Digital Marketing by cat_127 Instagram: Pros: Instagram is highly visual, making it perfect for brands with visually appealing products and … Re: How do you use LLM AI tools in your daily programming workflow ? Community Center by rproffitt … tools like this. That said, I just moved up to Visual Studio 2022 and AI tools/assistants are baked in now… Re: A reliable way of detecting AI content? Hardware and Software Cloud-based Apps by Dani … deploy mechanisms that enable users to understand if audio or visual content is AI-generated. 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/).