Re: DateTimePicker UpDown Add Only 30 Minutes Programming Software Development 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 by jgriff31 …. Specifically, I need the OnClick events from Buttons and the UpDown button. Thanks, Jon Re: Compound Control Class Programming Software Development 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 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 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 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 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 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 by Lereyn … panel Contains the Search For Jobs Button and a Numeric UpDown if (((allCheckboxesWidth() / linesContainingCheckboxes) + MeasureStringWidth(chkBox)) >= ((this.Width - this.panel1…