Will
Will
CC#
Created by Edwin D. Nuñez on 10/21/2023 in #help
❔ Form Problem
the standard naming convention for private field names usually are camelCase and start with an underscore
24 replies
CC#
Created by Edwin D. Nuñez on 10/21/2023 in #help
❔ Form Problem
you have a field named Subtotal, as well as a label named Subtotal, which creates a field in the designer code. you're accessing the same class because of the partial keyword
24 replies
CC#
Created by Edwin D. Nuñez on 10/21/2023 in #help
❔ Form Problem
you have conflicting variable names
24 replies
CC#
Created by Mamad on 10/19/2023 in #help
some problems with async await
is your base64 string actually a valid image? try pasting it in here https://base64.guru/converter/decode/image
63 replies
CC#
Created by Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa on 10/19/2023 in #help
❔ how do i convert a char to an int
you either need to assign it a default value, or make it a field which will give it a default value automatically
128 replies
CC#
Created by Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa on 10/19/2023 in #help
❔ how do i convert a char to an int
i don't even think this will compile, PlayerChoiceInt is being compared to something when it can be potentially unassigned
128 replies
CC#
Created by AJ on 10/13/2023 in #help
❔ System.ArgumentOutOfRangeException: Index and length must refer to a location within the string.
70 replies
CC#
Created by Yazed0071 on 10/12/2023 in #help
❔ How to make a GUI in VSC ?
^Rider is free if you use the nightly builds
15 replies
CC#
Created by Shinigami on 10/11/2023 in #help
❔ WinForms Topmost property not working as intended.
not sure, you might have to do something hack-y involving windows apis, eg a timer checking what GetActiveWindow() is and if it's not your app then setting your app to the foreground
10 replies
CC#
Created by Shinigami on 10/11/2023 in #help
❔ WinForms Topmost property not working as intended.
what are the applications that let you alt tab in to them? some of them could have things like dialogs open etc that windows might deem more important than your app though i've also noticed that setting an application to be always on top can be janky, one app i use won't permanently stay on top until i minimize&maximize it
10 replies
CC#
Created by MasterAirscrach on 10/8/2023 in #help
❔ Global Listener for the media key (play/pause)
there are a few popular libraries which are easy to use that do this too https://github.com/thomaslevesque/NHotkey https://github.com/TolikPylypchuk/SharpHook
47 replies
CC#
Created by 𝚂𝚝𝚊𝚙𝚕𝚎𝚜 on 10/10/2023 in #help
❔ ComboBox event help
the simplest solution is to subscribe to the SelectedIndexChanged event on your number of candidates combobox, then depending on the selection index, if it's too low then set cboxCandidate2/3/4/5's text to N/A and set their Enabled property to false. if it's within range then set to true and reset the text. that's the jist of it, if you want to write a clean solution to this, think about how a helper function could help here! :)
13 replies
CC#
Created by BOB on 10/8/2023 in #help
❔ EXE application
i remember Malwarebytes really hated/hates simple c# applications there was a complaint made about it and the devs basically said nuh-uh
29 replies
CC#
Created by monkey on 10/6/2023 in #help
Referencing Things
he's making a csgo cheat from what i can see
47 replies
CC#
Created by monkey on 10/6/2023 in #help
Referencing Things
yeah that doesn't look right, try restarting/repairing/reinstalling VS
47 replies
CC#
Created by Imagine Wagons on 10/4/2023 in #help
❔ Im a beginner doing a graphical assignment in windows forms
you could make that with a for loop and the DrawEllipse function, with each iteration move the origin of the ellipse to the left and increase its width
16 replies
CC#
Created by Sound on 10/4/2023 in #help
❔ [WINFORMS] Make textbox scale vertically according to its content.
11 replies
CC#
Created by Sound on 10/4/2023 in #help
❔ [WINFORMS] Make textbox scale vertically according to its content.
Multiline = true as well?
11 replies
CC#
Created by AnInternetTroll on 10/3/2023 in #help
❔ Patch an external dependency
what kind of patching? reflection can get you pretty far, and Harmony can get you further (https://github.com/pardeike/Harmony)
7 replies
CC#
Created by Kai on 10/2/2023 in #help
✅ X within ellipse
there are also fonts like webdings and wingdings that have X icons
5 replies