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. 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. 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 …