- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
13 Posted Topics
Hi, I am creating a simple game and I my game thread and my player2 thread seem to be executing twice each time the Thread.Sleep() expires. This is the output: Starting game: Player 2 thread Game thread Starting game: Player 2 thread Game thread Player 2 thread This is the …
Hi, I am creating an app using PhoneGap and I'm having trouble getting the selected id of a listview item when it is long pressed. I have tried using the JQUeryMobile TapHold event which works but only gets the ID of the listview, not the individual items. $('#listview').bind('taphold', '> li', …
Its slightly hard to understand what you want but I have answered the best I can. You have a **}** after ("<script>alert('Age valid')</script>"); which means that it will ALWAYS run the code below. Label1.Visible = true; Label1.Text = " Why are you runnning in button click if not valid age …
As far as i know...Visual studio comes with a compact version of SQL server which lets you do database management from within code. If you want the management studio you need to get the whole SQL Server package. It shouldn't matter which one you install first,
Here is a brief example of what he wants: 1. Start a new project 2. Create 2 classes , one named ProcessData and one called ProcessAll 3. In the ProcessData class you need to have the following: ProcessData Class //private class variables - All the variables which are used in …
I don't think anybody is going to write your application for you, you're asking for LOTS of code. Below are a few pointers in the right direction. 1. Do you have a database set up in SQL Server or other? 2. You need a way of accessing the data. Your …
Hi, I am getting the following error and I cannot understand why. SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM. Before i try and insert the data into the database I print it out and this is what i get: **09/04/2012 00:00:00** The code below is …
Hi, I am trying to define a 'null' LINQ Table as a global variable and then use a switch statement to deturmine what the Table should be. I am having problems defining the datatype and also assigning values to it. Hopefully the code below will explain better. [CODE] System.Data.Linq.Table table; …
Hi, I am trying to add buttons to a Panel which is located on JFrame after the JFrame has been set to visible. My aim is to be able to click "File --> Load" then have it loop through a folder of images, creating buttons which have the images on …
Hi, could someone explain to me how I can convert decimal to 5 bit 2s complement in assmbly please? Thanks.
Hi, Could someone explain to me how to create, store and manipulate variables please? At the moment i have this but I get errors: [code] BUTTONPRESSED DEFINE 0x000000 LDR r4, =BUTTONPRESSED ;Seems to be ok ADD r4, r4, #1 ;Seems to be ok MOV BUTTONPRESSED, r4 ;'Operand Syntax Error'[/code] All …
Hi, I'm making a tv guide program and I'm letting the user select a start date and an end date and I need to output all the programmes which fall between those times. I'm using linq like this to filter the data [code]var result = from p in programmes where …
Hi, I have a few questions which I need answering please. I have a ListView and I need to get the text in the cell which is clicked. At the moment i have this but it only works for the first cell which is clicked and throws an ArgumentOutOfRangeException if …
The End.
Skeldave