Click here to Skip to main content
15,888,330 members
Home / Discussions / C#
   

C#

 
AnswerRe: inherit a observablecollection Pin
BillWoodruff27-Oct-14 1:50
professionalBillWoodruff27-Oct-14 1:50 
QuestionExtraction of data from excel to databae Pin
Member 1118244626-Oct-14 21:38
Member 1118244626-Oct-14 21:38 
AnswerRe: Extraction of data from excel to databae Pin
Pete O'Hanlon26-Oct-14 21:41
mvePete O'Hanlon26-Oct-14 21:41 
GeneralRe: Extraction of data from excel to databae Pin
Member 1118244626-Oct-14 21:58
Member 1118244626-Oct-14 21:58 
Questionsimple code for game Pin
cicill26-Oct-14 15:23
cicill26-Oct-14 15:23 
AnswerRe: simple code for game Pin
BillWoodruff26-Oct-14 16:32
professionalBillWoodruff26-Oct-14 16:32 
AnswerRe: simple code for game Pin
Mycroft Holmes26-Oct-14 19:20
professionalMycroft Holmes26-Oct-14 19:20 
AnswerRe: simple code for game Pin
Pete O'Hanlon26-Oct-14 21:38
mvePete O'Hanlon26-Oct-14 21:38 
When you think about it what you're trying to create is, effectively, just some minor manipulation inside a grid. Now, what you want to consider is how could you represent a grid? Perhaps with a 2-D array. Then, you need to think about what the rules are. What you're trying to do is move tiles vertically or horizontally each time - that simplifies the code you have to write because you know that each operation affects only the rows or the columns.

So, you have rows and columns being manipulated. Let's consider the case where the user has swiped down so you're moving the rows down. Starting at the top row, when you move down this is always the way you'll work, start at the first element of that line of the array, and see if the first element of the line of the array below is the same number - if it is, you can increment it and blank out the current cell. You'll have to mark the cell that you just incremented so that you don't try to use it again - it's one increment per turn.

There, you have all the logic you need to get started. You should be able to extend this for swipe up and swipe left/right.
GeneralRe: simple code for game Pin
harold aptroot27-Oct-14 4:29
harold aptroot27-Oct-14 4:29 
QuestionData binding in wpf Pin
rajeevanagaraj25-Oct-14 2:16
rajeevanagaraj25-Oct-14 2:16 
AnswerRe: Data binding in wpf Pin
Mycroft Holmes25-Oct-14 13:32
professionalMycroft Holmes25-Oct-14 13:32 
QuestionUpload and Save Image Using Webservice Pin
ASPnoob24-Oct-14 23:59
ASPnoob24-Oct-14 23:59 
AnswerRe: Upload and Save Image Using Webservice Pin
CAReed25-Oct-14 4:25
professionalCAReed25-Oct-14 4:25 
GeneralRe: Upload and Save Image Using Webservice Pin
ASPnoob25-Oct-14 7:05
ASPnoob25-Oct-14 7:05 
AnswerRe: Upload and Save Image Using Webservice Pin
Nathan Minier27-Oct-14 1:53
professionalNathan Minier27-Oct-14 1:53 
QuestionApplication could not start error 0xC0000006 starting C# .NET 2.0 program Pin
eljainc24-Oct-14 9:12
eljainc24-Oct-14 9:12 
AnswerRe: Application could not start error 0xC0000006 starting C# .NET 2.0 program Pin
Dave Kreskowiak24-Oct-14 10:26
mveDave Kreskowiak24-Oct-14 10:26 
GeneralRe: Application could not start error 0xC0000006 starting C# .NET 2.0 program Pin
eljainc24-Oct-14 10:39
eljainc24-Oct-14 10:39 
GeneralRe: Application could not start error 0xC0000006 starting C# .NET 2.0 program Pin
Garth J Lancaster24-Oct-14 11:55
professionalGarth J Lancaster24-Oct-14 11:55 
GeneralRe: Application could not start error 0xC0000006 starting C# .NET 2.0 program Pin
eljainc26-Oct-14 1:50
eljainc26-Oct-14 1:50 
GeneralRe: Application could not start error 0xC0000006 starting C# .NET 2.0 program Pin
Dave Kreskowiak26-Oct-14 5:17
mveDave Kreskowiak26-Oct-14 5:17 
QuestionApplication has stopped responding Pin
eljainc24-Oct-14 7:31
eljainc24-Oct-14 7:31 
AnswerRe: Application has stopped responding Pin
Richard Andrew x6425-Oct-14 9:34
professionalRichard Andrew x6425-Oct-14 9:34 
QuestionC sharp and CRC's and polynomials Pin
turbosupramk324-Oct-14 3:13
turbosupramk324-Oct-14 3:13 
AnswerRe: C sharp and CRC's and polynomials Pin
BillWoodruff24-Oct-14 3:42
professionalBillWoodruff24-Oct-14 3:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.