Crosshair has a vertical and horizontal line to view the value of the axis. Programming Software Development by PM312 i want to add Crosshair , a vertical and horizontal line to view the value of the axis is this available for charts in vb.net 2017. ![chart_2.png](https://static.daniweb.com/attachments/2/0ec00ac4dbe56443fdf35cb9868981b5.png) Re: Crosshair has a vertical and horizontal line to view the value of the axis. Programming Software Development by rproffitt Given the **antipathy** towards AI here, all I can share is if you put "i want to add Crosshair , a vertical and horizontal line to view the value of the axis is this available for charts in vb.net 2017." into a chatgpt session, you'll find a solution in about 20 seconds. Re: Crosshair has a vertical and horizontal line to view the value of the axis. Programming Software Development by rproffitt Sorry but I only have VS2008 and VS2022 now. But for a real-time crosshair that moves with the mouse, showing its position along the X and Y axis I asked ChatGPT and it appears to only need less than 20 lines of code that respond to Chart1_MouseMove(). Re: Crosshair has a vertical and horizontal line to view the value of the axis. Programming Software Development by Dani The trick with AI is to give it very short bits of code to write at a time. If you ask it to write an entire mini-program that does X, it inevitably gets quite a few bits wrong, left out, etc. But if you ask it to write pseudocode first, and then for each individual method/function call, you carefully explain what you want it to do, what parameters… How do I make my code jump back to a previous line? Programming by trueriver I'm just coding something for fun right now and I'm stuck on looping. I'm using a while loop that only runs if my variable is 0. Right now, I set the variable to 0 but the code was after the loop. How do I fix this? import time import sys #Global Variables firstTime = True loggedIn = False incorrectLogin = … Re: How do I make my code jump back to a previous line? Programming by trueriver updated my code... everything is fixed :) i made functions import time import sys #Global Variables firstTime = True loggedIn = False incorrectLogin = True admin = False n = 0 n1 = 0 i = 0 #Create login if firstTime is True if firstTime is True: print("… Re: How do I make my code jump back to a previous line? Programming by woooee if sysInfo.lower() in ["exit", "Exit", "EXIT"]: since sysinfo is now lower(), it will never be equal to "Exit" or "EXIT" Re: How do I make my code jump back to a previous line? Programming by Dani Organizing code into functions is always important for readability and also to be able to reuse parts of your code as your app gets bigger. Thank you for posting your updated code to share with others :) Re: Error LNK1104 when debugging Programming Software Development by toneewa … errors like these occur. Check for a syntax error on line 2 in starter.h starter.h(2): warning C4067: unexpected… Re: Error LNK1104 when debugging Programming Software Development by Mr.M … will debug and if it does I will uncomment one line of code at a time and see if I will… Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel? Digital Media Digital Marketing by graceweb This was a fascinating read, Victor! The way you applied psychological principles like authority bias and loss aversion really shows how impactful small tweaks can be. I especially appreciated the emphasis on emotional storytelling, it’s often overlooked but clearly powerful. Thanks for sharing such actionable insights! Differential Directory, indexing method Programming Software Development by xrjf … hand and using quotation marks (“) to indicate repetition from the line above —for example: John Miles “ Smith DiDi applies a similar… Remove Qemu/kvm snashots Hardware and Software Linux and Unix by Gabriel9999 How can i list snashot information and delete snapshot from command line or bash in elegant way? Thanks. Re: Buggy career talk :-P Programming by Reverend Jim …I decided to improve the readability of the following line by inserting a space. In today's code … terminals and sequence numbers no longer made sense. The offending line was of the form: CALL MYFUNC(parm, parm, ... … where the rightmost comma was in column 72. The next line continued the previous statement. By pushing the comma into the… Re: Cannot run exe from asp.net Programming Web Development by lennyli … call last): File "C:\Users\maxwi\client.py", line 18, in <module> main() ~~~~^^ File "C:\Users…\maxwi\client.py", line 6, in main client_socket.connect(('192.168.0.2', 9999… Re: What are the key components of an effective email marketing campaign? Digital Media Digital Marketing by Advertising13 … the message resonates personally with each recipient. Compelling Subject Line: The subject line is your first impression. It should be catchy, concise… Re: Buggy career talk :-P Programming by pritaeas … correctly, was a software change to a gold-plating assembly line for computer chips. A mishap would have caused thousands of… Re: Upgrade to Fiber internet Hardware and Software Networking by Reverend Jim … to fix a problem with major static on my phone line. Instead I switched to Shaw for internet, TV and phone… Re: The Impact of User Research on UX Design Digital Media UI / UX Design by john_111 … paid good money for to put an art museum on line so visitors could view the museum contents. It was a… Re: Is linux your daily driver? Hardware and Software Linux and Unix by Ulfson … the hardware Apple makes. And macOS has a Unix command line, which I rely on heavily - getting the best of both… Re: My php is showing wrong results of time difference Programming Web Development by Dani … where I am showing you what $diff looks like on line 15? You should be able to do something like this… Re: Hello and welcome! Community Center Say Hello! by Reverend Jim That's supposed to be my line 😁 Hello and welcome to Daniweb. Re: Hello and welcome! Community Center Say Hello! by ericjohnson01 > That's supposed to be my line 😁 Hello and welcome to Daniweb. helow Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel? Digital Media Digital Marketing by graceweb It’s amazing how just a few strategic changes can turn a struggling funnel into a success story. The emphasis on trust signals and emotional storytelling really resonates—those elements create a connection that can be the deciding factor for prospects. Thanks for highlighting those key takeaways! It’s a good reminder that sometimes it’s not … Re: Differential Directory, indexing method Programming Software Development by rproffitt DiDi appears to be some China based UBER service but then again I can't find a question or much else to discuss here. Re: Differential Directory, indexing method Programming Software Development by xrjf About DiDi DiDi (Differential Directory) was originally developed as part of my thesis project in the early 1990s. The name bears no relation to the more recent Chinese ride-sharing company. At the time, DiDi was a novel approach within its academic context, but a change in legislation unfortunately led to the closure of the school and the … Re: Differential Directory, indexing method Programming Software Development by xrjf For example, as Donald Knuth points out in The Art of Computer Programming, the theoretical lower bound for comparison-based sorting algorithms is K × log₂(N). I developed a very simple method that matches this performance. However, DiDi goes far beyond: its performance is proportional to K × (maximum key length), regardless of the number of … Re: Differential Directory, indexing method Programming Software Development by xrjf As an illustration, consider the theoretical lower bound for comparison-based sorting, as stated by Donald Knuth in The Art of Computer Programming: K × log₂(N). I developed a simple method that matches this limit. For example, to sort the list {2, 5, 7, 1, 4, 3, 8, 6}: Sort pairs: (2, 5) → [1] (1, 7) → [2] (3, 4) → [3] (6, 8) → [4] Merge… Re: Differential Directory, indexing method Programming Software Development by xrjf "Just to clarify a previous mistake: the efficiency should be K × N × log₂(N), not K × log₂(N) as I initially wrote." Re: Differential Directory, indexing method Programming Software Development by xrjf I've just made an update because some records weren't being added properly. The issue was that the form didn't take into account that the register field (in the call to DiDi) is passed by reference.