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: 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: 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: 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 - why i get the error 8 on CreateDIBSection()? Programming Software Development by rproffitt … current. Just 2 days ago I nabbed two copies of Visual Studio Pro for 50USD each. Why 2? Office needed more… Track Faces from Videos with Margins Using Deep Learning in Python Programming Computer Science by usmanmalik57 … Python methods. You learned how to improve the accuracy and visual quality of face tracking, overcoming the limitations of DeepFace's… 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: How can I make my website easier to use? Programming Web Development by clickempire … information about how to resolve errors or contact support. **Visual Hierarchy:** Use visual hierarchy to highlight important content and guide users through… the page. Use headings, subheadings, and visual cues for effective organization. **Browser Compatibility:** Make sure the website… 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: how to convert from vb.net to C# ? Programming Software Development by Alilou_2 The tool is paid, but you can get its free demo license on our website https://www.ispirer.com/application-conversion/visual-basic-to-cs-migration 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 … VB6 how send parameters on CreateThread()? Programming Software Development by cambalinho how send parameters on CreateThread()? on a class: Option Explicit Private Declare Function CreateThread Lib "kernel32" (lpThreadAttributes As Any, ByVal dwStackSize As Long, ByVal lpStartAddress As Long, lpParameter As Any, ByVal dwCreationFlags As Long, lpThreadID As Long) As Long Private Declare Function … Re: VB6 how send parameters on CreateThread()? Programming Software Development by rproffitt While I see the discussion at https://www.vbforums.com/showthread.php?902072-how-use-CreateThread()-with-parameters appears to have solved this I will share an old workaround I used decades ago. It was decades ago and the API was limited so I put the parameters into a file that the new thread would read and act on. It worked and as such never… VB6 - why i get the error 8 on CreateDIBSection()? Programming Software Development by cambalinho i'm using CreateDIBSection(): Public Function NewImage(ByVal ImageWidth As Long, ByVal ImageHeight As Long, Optional color As ColorConstants = vbBlack) As Long If (Width > 0 Or Height > 0 Or hBitmap > 0 Or PointerPixelData > 0) Then DeleteImage Width = ImageWidth Height = ImageHeight '… 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)…