C# :: Make A Button Transparent?

Apr 22, 2014

How can I make a button transparent? I know i can select color Transparent, but that takes the background color, and i want to be transparent all because i have a video behind it. What can i do? :o3

I have a video and there is some buttons which should be pressed. I could insert the buttons but they are semi-transparent...

View 11 Replies


ADVERTISEMENT

C++ :: Make Colors Transparent Using 3rd Party Library

Jan 19, 2014

I'm trying to make colors transparent in c++ using a 3rd party library. I've successful made my background transparent but I feel I'm cheating by not understanding how I entered the value.

"0xff, 0xff, 0xff" is the color white but i'm not sure how it's the color white like with RGB values.

View 5 Replies View Related

C++ :: QT Make Button Unclickable?

Nov 26, 2013

I am new to qt. I want to make it so a button is only clickable if they check a radio box. otherwise it wont do anything. how would i write that?

View 3 Replies View Related

C# :: Calculator - How To Make Backspace Button

Jul 21, 2010

I'm making a calculator project but i can't find a solution for backspace button ,, i used these code -->

TxtNumber.Text.Remove(0,1);

But it removed the first number i wrote in the TxtNumber(TextBox) not the last one !!!!

View 6 Replies View Related

C :: Implementing Simple Transparent Proxy With Filtering

Feb 9, 2014

My question is mainly about networks. I wan to implement a simple transparent proxy in C, which will filter the browsed sites according to URL blacklist (check before sending the HTTP request) and keywords in content (check the <meta> in the HTML that was responded).

How can I do this? Listen in a local socket (ex. 8080), set the proxy in my browser and according to the requests that the browser sends to me open a socket with the server, forward the browser's request to the server and forward the server's response to the browser? (Of course by applying filters in the stages where needed.

View 7 Replies View Related

C Sharp :: Loop In A Button / Runs Endless When Pressing The Button And Not Only Once

Jun 10, 2014

I have an code that makes form window + button bet bigger when pressed each time, but it runs endless till out of screen,

code:
{
int S1 = 300;
int S2 = 0;

[Code]...

make it so it runs only each time i press the button?

View 2 Replies View Related

C++ :: Callback For A Button?

Apr 25, 2013

I have made a calendar that looks similar to Outlook, and I have the next/previous buttons, but they don't do anything when you click them. how to create the callback so that when I click next it goes to the next month?

View 4 Replies View Related

C# :: How To Add A Button To A Groupbox

Jun 25, 2014

I have a winform that I added a button to at design time.

Then I decided to add a groupbox to the form because I want to add a few more components to the gbox.

I notice if I add a gbox at design time and add components onto the gbox at design time, then the components show up when I run my app.

However, if I add a gbox after my form already has compoents on it, I can't see some of my components.

How do I move an existing button onto a new gbox so it shows?

I thought this would work but it doesn't:

gboxSettings.Controls.Add(btnChecklistFonts);

View 14 Replies View Related

C++ :: Push Button On A Website?

Nov 25, 2013

I was wondering if it's possible to push a button on a website programatically. Unfortunately the button link is invisible, otherwise I could simply use the URL it links to. So is there a way to do it in c++ and if so, how?

View 4 Replies View Related

C++ :: Check If A Button Has Been Pressed?

Jul 7, 2014

I know how to check if a particular button has been pressed but I basically want to disable the delete button when ever the listbox has lost focus. I am having issues with the fact the button gets disabled before it receives the message. Is their a way around this that is non hacky?

BOOL CALLBACK DlgMain(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch(uMsg)
{

[Code]....

View 1 Replies View Related

C# :: Custom Button Shape (WPF)

Nov 30, 2014

I have begun switching from WinForms to WPF and I'm having a hard time understanding the new concepts. In WinForms, I had a few User Controls, custom drawn using shapes (rectangles, ellipses, etc). They had some unique properties, like "Flashing" (setting this property to True and setting the "Flash Interval" property to 500 would have resulted in the control changing its background color to white and back again, every 0.5 seconds), "Beeping", etc.

I have tried to replicate these controls in WPF/XAML and so far managed to draw the shape. However, when it came to implementing a custom property that would redraw the background color of the rectangle every interval set by user in another property, i got stuck. The property is being set, but it doesn't change the background color. Alternatively, i have tried this method, with the same results (i got it to show in the "Properties" window in Visual Studio, i can set it, it is being stored in XAML, but it doesn't affect the background.

C# code behind:
public struct LCARSColors
{
public static Brush DarkBlue = (Brush)(new BrushConverter().ConvertFrom("#FF3366CC"));
public static Brush LightBlue = (Brush)(new BrushConverter().ConvertFrom("#FF99CCFF"));
public static Brush Pink = (Brush)(new BrushConverter().ConvertFrom("#FFCC99CC"));

[Code] ....

If i use this line (commented in this code sample):

<!--<SolidColorBrush x:Name="MySolidColorBrush" Color="{DynamicResource DarkBlue}" />-->

The background is colored in DarkBlue (as defined). But if i use this line:

<SolidColorBrush x:Name="MySolidColorBrush" Color="{Binding BackgroundColor, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}" />

Nothing happens, the rectangle disappears entirely. If i add this to the above line:

FallbackValue=LightYellow

The rectangle is colored in LightYellow, meaning that the property is not accepted and the fallback value is used. Why?

View 9 Replies View Related

C# :: Button Taking To Another Page

Nov 12, 2014

I decided to code my own GUI menu. getting to another page from a button click. I have added the event handler I think (click="Button_click") then in the event handler I have added this:

private void Button_Click(object sender, System.EventArgs e);
}
Response.Redirect("Login.xaml");
}

After researching it says either to use
Response.Redirect("Login.xaml");
OR
Server.Transfer("Login.xaml");
Neither of these work, underlining "Response" and "Server" as an error saying "A namespace cannot directly contain members such as fields or methods."

NOTE: MY MAIN GUI PAGE IS CALLED "mainpage.xaml" THE CODE ABOVE IS STORED IN THE "mainpage.xaml.cs" THIS MIGHT BE RIGHT OR WRONG BUT I'M NOT SURE SO I AM LEAVING SOME EXTRA INFO!

View 1 Replies View Related

C# :: Sharepoint Radio Button Value

Oct 28, 2014

I am working on a website so you can order online for a restaurant. I currently figured out how to get values of all checkboxes and dropdownlists but i still cannot seem to figure out radio buttons.

Right now i am just making a super string with all of the selected values but eventually i am going to want to make a receipt with a checkout page.

//this seems to work alright
XPathNodeIterator toppingIterator = myNavigator.Select("//my:ToppersGroup", NamespaceManager);
s +=+ "";
while (toppingIterator.MoveNext()) {
XPathNavigator node = toppingIterator.Current;
XPathNodeIterator children = node.SelectChildren(XPathNodeType.All);
while (children.MoveNext())

[Code] .....

View 5 Replies View Related

C# :: WPF Window Close Button

Dec 10, 2014

I've been doing some looking and this example seems like the common way to remove the close button on a wpf window. Other than catching the on_click event or using that example, is there no better way to disable/remove that button?

View 2 Replies View Related

C++ :: Moving A Button And Image With Each Other?

Jan 12, 2015

The question says:

Place an Image on top of a Button. Move both when the Button is pushed.

It's here [URL] exercise no.3

look at this code:

#include <GUI.h>
using namespace Graph_lib;
//------------------------------------------------
class rotation : public Window {
public:
rotation(Point xy, int w, int h, const string& title):

[code]....

The problem is that, it is not possible to define an Image in public/private part of the class rotation. Image needs all arguments to be supplied even when declaring one. (Image is here [URL] And if I define that Image in the body of main() function, so how to provide access for void rotate() to change its position with the position of button simultaneously.

View 8 Replies View Related

C/C++ :: MFC - Button With Right Click Events?

May 23, 2012

How to use button with right click events in mfc?

View 1 Replies View Related

C++ :: Writing A Forward / Back Button

Apr 16, 2013

I am making a calendar to look similar to Outlook, but it is in c++ and I am starting from scratch. I have broken it into parts, and the part I am struggling with is making the next/previous month button to add to the calendar. I have a basic code, but I don't know exactly what I need to change or add to it. The code is,

#include "std_facilities_lib_3.h"
#include <iostream>
#include <sstream>
#include "Graph.h" // get access to our graphics library facilities
#include "GUI.h"
#include "Window.h"

[Code] .....

View 2 Replies View Related

C# :: Adding Value To ComboBox After Button Is Pressed

Mar 10, 2014

I have been learning C# so I've been dragging and dropping. I have a "First Name" and "Last Name" text field. I want to add this to a combo box called something like "User List", which will list the last named then the first names. However I figure I can work with something that can get me to store the names in the combo box.

So. I have two things I need to know:

What do I have to do to have when the button is pressed, add to the combo box?

Is there a way to retain all the entries I have entered? Or no?

View 8 Replies View Related

C# :: Clicking A Button In WebBrowser Control?

Jul 8, 2014

I'm getting this strange problem with the webBrowser control that google can't find an answer for. When I click a button I get redirected to a page with just the letters 'e4' makes no sense to me?? is this a site problem or something to do with the webBrowser control?

View 9 Replies View Related

C# :: Update Changes In Datagridview With Save Button

Mar 24, 2014

I have the following code. I am able to call data from my database and print the result onto datagridview. However, if I happen to edit some data through datagridview, I would like it to save the changes by clicking a save button. I do not know how to connect callDBButton_Click and saveButton_Click...I know how to update the changes if I just put adapter.Update(dataTable); at the end of the callDBButton_Click method...but I want to it only save changes when I CLICK the "Save" Button.

private void callDBButton_Click(object sender, EventArgs e) {
string stockName;
stockName = stockNameTextBox.Text;
OleDbConnection Connect = new OleDbConnection(OleDbConnectionString);

[Code] .....

View 4 Replies View Related

C# :: Selected Radio Button With Database In It?

Feb 24, 2014

I am developing a project that generates questions from a database, the questions are generated with multiple choice answers. On this form I have got a textbox that reds the question from the database and 4 radio buttons that reads the possible answers from the database. The radio buttons text names are updated with records from a database table each time the "next button" is clicked.

What I want this program to do is that when the user selects one of the radio buttons, I want the system to check if the selected radio button textname equals the right answer in the database table. for example in the table there are 5 columns namely: option1, option2, option3, option4 and rightAnswer. So whenever a user selects a radio button, I would like the system to check if the selected radio button's textname equals the record in the "RightAnswer" column and if so I would a messagebox to show "correct" and if not the messgaebox to show "wrong"

This is the the way I am updating the radio button text names from the database This method is called when the form is loaded

void LoadingPossibleAnswers() {
Query = "SELECT * FROM AnswersTbl";
theReader = conn.ExecuteStatement(Query);
while (theReader.Read()) {
radioButton1.Text = theReader["Option1"].ToString();

[code]....

This method is called when the button is clicked

void CorrectAnswer( RadioButton rdb) {
string correct = rdb.Text;
Query = "SELECT * FROM FROM AnswersTbl;"
theReader = conn.ExecuteStatement(Query);
while (theReader.Read())

[code]....

When ever I run my code above, else condition executes even if the correct radio button is selected.

View 3 Replies View Related

C# :: Add A Column Dynamically On Button Click?

Apr 30, 2014

i am using c# asp.net'

var db = Simple.Data.Database.OpenNamedConnection("sqlConn");
DataTable dt = gridRatingEventHistory.DataSource as DataTable;
string dateString = DateTime.Now.ToShortDateString();
dt.Columns.Add(dateString);
gridRatingEventHistory.Columns.Add(new GridBoundColumn {

[Code] .....

if you look at 1st image 1 you can see what it looks like -- when i hit the button i just want a blank column to show next to the last column however i get image 2 results how can i fix this.

View 3 Replies View Related

C# :: Multiple Pages On WPF Button Click

Oct 24, 2014

For now the app creates a new DateTime property which is binded to a label and shows the user the current time. Eventually I want to have the ability to select the timezone you are in, change font/background colors/etc etc... But that is all in time. My current step that I am trying to implement is having a button click (Binded to an event method) change screens. I find it hard to explain in words, but I would like the same Window to be used, just have different functions on the other when the button is clicked. So for example...

The only way I have found to do this so far is to create a whole new form or create tabs. While those are all good and have their place. I know that I need to start breaking up my code into classes, I am developing a bad habit throwing everything into the MainWindow Class...

Here is the code if needed:

XAML:

<Window x:Class="ClockApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Name="MyWindow"
Title="Alarm Clock App" Height="180" Width="360" Visibility="Visible" ResizeMode="NoResize" WindowStyle="ToolWindow">

[Code] ....

View 6 Replies View Related

C# :: Create A Button For Each Item In A List

Jan 26, 2014

Basically, the program is just sort of a soundboard. The way it is now, it just reads all the names of the files in a particular folder (all .wav files), and then adds an entry to a listBox for each file found. What I would like to do, is instead of a listBox, have buttons for each one. Is there any way to iterate through a list of items and create a button for each one? The main problem I see is placing the buttons. It would have to have some sort of grid to place them in I would imagine...

View 3 Replies View Related

C# :: How To Show MessageBox In 2 Radio Button

Oct 21, 2014

I'm trying to do this :

when user chick first radio button a message1 will show with OK button
when user chick second radio button an another message2 will show with OK button

But its didn't work like this. its work like:

1- user chick first radio button
2- message1 will show with OK button
3- user click OK
4- user chick second radio button
5- message1 will show again with OK button
6- user click OK
7- then message2 will show again with OK button

so when user click in second time its show the 2 message the message1 then the message2

this is my code

private void radioButton2_CheckedChanged(object sender, EventArgs e) {
MessageBox.Show("Amount is ... " + money, "Amount" , MessageBoxButtons.OK , MessageBoxIcon.Information);
}
private void radioButton1_CheckedChanged(object sender, EventArgs e) {
MessageBox.Show("Item name : " + arr[0].name ,
"Availability", MessageBoxButtons.OK, MessageBoxIcon.Information);
}

View 3 Replies View Related

C/C++ :: Winform - Button Does Not Show At Runtime

Jun 18, 2014

I made a winForm with a button on it in the Designer (VS 2010 C++).

But when I run my app, the button does not show on the form.

The button visible property is set to true.

View 8 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved