40,758
questions
-1
votes
0
answers
31
views
Windows form buttons fail to launch resources [duplicate]
I created a windows form using C#, the form contains buttons and labels and a tab control.
Every button and label has different functionality. For example, some buttons open different browsers, and ...
1
vote
1
answer
40
views
Button is taking focus even when TabStop is set to false
On a Form I have 2 Labels and a Button.
In one of these Labels my game is played, but I am having an issue: the player plays this game using their 'WASD' and arrow keys; when the player uses their ...
0
votes
1
answer
38
views
Can't set button image list
I use MinGW32 with Code::Blocks IDE on Windows 10. I'm trying to assign an image list to a button via a "BUTTON_IMAGELIST", but the "SendMessage" function always fails (returns '0')...
-1
votes
1
answer
37
views
How can I click through a div to open youtube link?
I made a custom play button via PNG that appears when the cursor is hovering over the video thumbnail. But now the video isn't clickable. If I set pointer events to none it won't make the hover event ...
1
vote
0
answers
19
views
How to make a custom cell/row menu clickable (3 dots at top right) in a List with NavigationLink
I am trying to show popover when user click on custom cell/row menu in List. But every time the cell get the action and navigating to inside the details screen. Here is my code snippet. Also attached ...
0
votes
2
answers
42
views
Find Cells with Button in them
In my Excelsheet I have a row (9) which includes drop-down buttons which can select things like sum etc. How can I check if a row contains these buttons using VBA?
I have tried "HasValidation&...
0
votes
2
answers
52
views
CSS Styles Not Applying to Button: How to Remove Blue Highlight on Click?
I am developing a web application via pycharm using html, css, and js. Currently I am having issues with the upload button, which is intended to trigger the upload of source code. I am still learning ...
0
votes
0
answers
32
views
Unable to change the download button sidebar based on the tab chosen using Shiny Python
I would like to change the download buttons that appear based on the tab that is chosen. For example, if the tab is Main Visualization, I would like the following buttons to appear: download_heatmap ...
2
votes
1
answer
53
views
Change position theme switch button in Quarto
When we want to have two different themes in a Quarto HTML document, we can use a button to switch between light and dark mode for example. Standard the button is in the top right corner of the ...
0
votes
0
answers
21
views
Material UI Autocomplete button event listener is always open
I have an MUI V6 autocomplete component like this in my application. I have built it as a reusable component that I use 4 times in the application. The problem I am encountering is that when I click ...
-1
votes
0
answers
54
views
Count Button Not Appearing [closed]
I've been following along with React JS - React Tutorial for Beginners by Programming with Mosh on YouTube; however, I have been having difficulty with importing complex components into a list. The ...
0
votes
1
answer
32
views
HTML img.src and img.style.display not updating when a player clicks in a Tic Tac Toe game
I was making my first HTML/CSS/JS project when i encountered a bug in my code involving re-using functions of player inputs after reseting the game.
const greenO = "https://www.freeiconspng.com/...
0
votes
1
answer
33
views
How do I create a ButtonStyle with a a larger image?
I’m trying to create a ButtonStyle for an application. I can find plenty of examples, but I can’t get much actual detail.
Here is a simple example:
struct SpecialButton: ButtonStyle {
func ...
0
votes
4
answers
50
views
How to add transition effects on Button
I want to add transition effects on buttons. When I will hover over on any button its background color will be transform blue to white and text color white to blue. Background color must be change ...
0
votes
0
answers
24
views
Passing a React Server Function as Props to a Client Component in Next.js - Is This a Valid Approach?
I'm trying to pass a server function (previously called a "server action") to a client component, specifically a <Button /> component in my React app. Here’s my code:
Code Example
...