Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 93 results for
updown
- Page 1
Re: DateTimePicker UpDown Add Only 30 Minutes
Programming
Software Development
15 Years Ago
by yorro
…] ^ On the right side of the DateTimePicker is a
updown
button called
UpDown
(labeled on the properties). I want my program to… add or subtract 30 minutes every click on the
UpDown
(if the minute is selected beforehand). The default is 1min…
DateTimePicker UpDown Add Only 30 Minutes
Programming
Software Development
15 Years Ago
by yorro
Does anyone have any idea how to set the DateTimePicker's
UpDown
buttons to add/minus 30mins only instead of 1min?
visual c++ numeric updown help
Programming
Software Development
14 Years Ago
by dude1
i have a numeric
updown
that goes from 0-99 and it works but i want to make it continuous so if i hit the down when its at 0 it goes to 99 and when its on 99 and i hit up it goes to zero anyone know the code id add to make that happen?
Re: visual c++ numeric updown help
Programming
Software Development
14 Years Ago
by mrnutty
[QUOTE=dude1;1117241]i have a numeric
updown
that goes from 0-99 and it works but i …
Re: DateTimePicker UpDown Add Only 30 Minutes
Programming
Software Development
15 Years Ago
by kvprajapati
Use methods of [b]DateTime[/b] type. [code] val=DateTime.Now.AddMinutes(30) [/code]
Re: visual c++ numeric updown help
Programming
Software Development
14 Years Ago
by WaltP
For UP, if number is MIN, set number to MAX. For DOWN, if number is MAX, set number to MIN.
Re: visual c++ numeric updown help
Programming
Software Development
14 Years Ago
by jonsca
NumericUpDown is a Winforms control in .NET. @OP- I tried a couple of times to get WaltP's idea (and using [URL="http://social.msdn.microsoft.com/forums/en-US/vbgeneral/thread/def03dac-1602-4c46-8c76-d508150f6b46"]this[/URL] article for VB) to work but for some reason when I would try to wrap around I would get a StackOverflowException.…
Re: DateTimePicker UpDown Add Only 30 Minutes
Programming
Software Development
11 Years Ago
by odinsonnah
Here's how I did this, only difference is I was going by 15 minute increments rather than 30. Private Sub DateTimePicker1_ValueChanged(sender As Object, e As System.EventArgs) Handles DateTimePicker1.ValueChanged Select Case DateTimePicker1.Value.Minute Case 1, 16, 31, 46 DateTimePicker1.Value = …
Re: DateTimePicker UpDown Add Only 30 Minutes
Programming
Software Development
11 Years Ago
by Luc001
Hi, You can try this: Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load DateTimePicker1.Format = DateTimePickerFormat.Time End Sub Private Sub DateTimePicker1_KeyDown(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles DateTimePicker1.KeyDown…
Menu Navigation and Collision Errors? NEED HELP!!!!
Programming
Software Development
13 Years Ago
by lxXTaCoXxl
…if (GamePad.GetState(PlayerIndex.One).DPad.Up == ButtonState.Pressed) {
upDown
--; if (
upDown
<= 0) {
upDown
= 0; difficultyRotation(0); } else if…
I feel out of place...but I need help
Programming
Software Development
15 Years Ago
by dragonboy269
…,button ldrb r4,[r4] cmp r1,#1 beq
updown
cmp r1,#64 beq
updown
mov r5,#0x10 tst r4,r5 beq right… mov r5,#0x20 tst r4,r5 beq left
updown
: cmp r0,#1 beq exit cmp r0,#64 beq exit… down b exit right: add r1,#1 b
updown
left: sub r1,#1 b
updown
up: sub r0,#1 b exit down…
code will not subtract negative number in mysql field? :( pls help!
Programming
Web Development
15 Years Ago
by justted
… or down IF ($value[current] >=0.1) { $
updown
==1; } else { $
updown
==0; } IF ($
updown
==1) { mysql_query("UPDATE places SET totaling=totaling…+ $units WHERE area='1'"); } IF ($
updown
==0) { mysql_query("UPDATE places SET totaling=totaling- $units WHERE…
white line
Digital Media
UI / UX Design
14 Years Ago
by prachipote
…','0','customformat','dd-MMM-yyyy','dateisnull','0','format','662831107','
updown
','0','currentdate','39154','maxdate','2958465','mindate','-109205' ); //…value="662831107" /> <param name="
UpDown
" value="0" /> <param name…
Re: code will not subtract negative number in mysql field? :( pls help!
Programming
Web Development
15 Years Ago
by martin5211
I don't undertand the meaning of your question... Why not to use an incrementing/decrementing operators (e.g. $
updown
--) or assignment operator. The values inside the braces doesn't contain an assignment operator, so doesn't change their value when the condition is true.
Re: Struggiling with a Maze code
Programming
Software Development
13 Years Ago
by SQLpower
… super confusing after [CODE] void Map::movePlayer(int leftright, int
updown
) [/CODE] I mean the fire method should be the same… the moving process [CODE] void Map::movePlayer(int leftright, int
updown
) { switch(
updown
) { case -1: if(getTile((pX - 1), pY) != 'X' &…
TUpDown on TStringGrid in c++ builder?
Programming
Software Development
17 Years Ago
by tone_crafter
… within a column. My problem is that I want each
UpDown
arrow to have the same event handler. I can set… when I make the string grid the parent of the
UpDown
arrows the event handler won't go off when I…
Struggiling with a Maze code
Programming
Software Development
13 Years Ago
by SQLpower
…[abc][xyz]; return tile; } void Map::movePlayer(int leftright, int
updown
) { switch(
updown
) { case -1: if(getTile((pX - 1), pY) != 'X' &…
Already upload in the folder but why the file did not store in database
Programming
Databases
10 Years Ago
by Nazirah_1
…file_upload']['tmp_name'], $target)) { $query = "INSERT INTO
updown
(nama_file,tkh_muatnaik) VALUES ('$photoname','$date')"; mysql_query($query); $sql… = "SELECT MAX(id_gambar) FROM
updown
"; $max = mysql_query($sql); $row = mysql_fetch_array($max…
Textbox with time
Programming
Software Development
10 Years Ago
by Bishal_1
I want to enter the time in the textbox with
updown
counter in it. So that i can enter the time in it. how can i do it?? A textbox with
updown
counter and time in it??
Re: Textbox with time
Programming
Software Development
10 Years Ago
by ddanbe
Probably, you need to use two numeric
updown
controls (look in the toolbox) You can set their Minimum and Maximum properties in function of hours and minutes. Look [here](https://www.youtube.com/watch?v=hrWbqJKRMS4) for a tutorial.
Lost my Explorer.exe from System32 file
Hardware and Software
Microsoft Windows
19 Years Ago
by Chuck521
…-bar volume control indicator that used to work with the
updown
volume buttons on my keyboard. My question is, how difficult…
Re: Lost my Explorer.exe from System32 file
Hardware and Software
Microsoft Windows
19 Years Ago
by gonehere
…-bar volume control indicator that used to work with the
updown
volume buttons on my keyboard. My question is, how difficult…
Compound Control Class
Programming
Software Development
18 Years Ago
by jgriff31
…. Specifically, I need the OnClick events from Buttons and the
UpDown
button. Thanks, Jon
Re: Compound Control Class
Programming
Software Development
18 Years Ago
by Micheus
…. Specifically, I need the OnClick events from Buttons and the
UpDown
button. Thanks, Jon[/quote] Just a sample. I hoppe help…
Re: Compound Control Class
Programming
Software Development
18 Years Ago
by jgriff31
…'ve been unable to compile the event procedures for the
UpDown
button. They require a parameter for the button -- up or…
Re: Compound Control Class
Programming
Software Development
18 Years Ago
by Micheus
…'ve been unable to compile the event procedures for the
UpDown
button. They require a parameter for the button -- up or…
A star pathfinding help
Programming
Software Development
13 Years Ago
by Thundermunch
…)) int costinc = 10; // set cost at 10 for sideways and
updown
movements //int heuristic = 10 *((abs(ISTART-IGOAL)/GSIZE) + (abs(JSTART…
loop thru dynamicly created txtbox
Programming
Software Development
13 Years Ago
by Hellborg
… understandw what is causing it. so i have a numeric
updown
and based on the value, it loops and creates as…
Re: loop thru dynamicly created txtbox
Programming
Software Development
13 Years Ago
by pitic
… is causing it. > > so i have a numeric
updown
and based on the value, it loops and creates as…
UserControls and events
Programming
Software Development
13 Years Ago
by Lereyn
… panel Contains the Search For Jobs Button and a Numeric
UpDown
if (((allCheckboxesWidth() / linesContainingCheckboxes) + MeasureStringWidth(chkBox)) >= ((this.Width - this.panel1…
1
2
3
Next
Last
Search
Search
Forum Categories
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Forums
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2024 DaniWeb® LLC