Being early is overrated. After all, it's the late mouse that gets the cheese :)
Roman_wolf
Posts
-
Friday's Philosophical Thought Of The Day -
iPhone or Windows PhoneIt all boils down to your ecosystem of choice. Both are great phones and are pretty much on par with their features (give or take a few on each side). In my case, I'm heavily invested in the Microsoft stack(Windows 8, Windows Phone [Nokia Lumia 920], Xbox, Bing, Office, OneDrive, ...). Therefore I can confirm that the integration between them is awesome. A bonus point for windows phones is the free navigation and augmented reality apps. I suggest you take a look on the new Nokia Lumia 930. It should be released soon and from what I've read, it looks like a high quality phone.
-
how to handle ... -
Share your experiences with Nokia Lumia phone...I've been using the Lumia 920 for a while. And I pretty much love it. It has everything you can ask from a smartphone. And once you get used to wireless charging, you'll never want to go back :)
-
Gaming ConsolesI'll stick with my current 360 for the moment. The current generation should still give a good year or so. After that, I'll go with the Xbox One.
-
Smartphone recommendationI'd go with either the Lumia 820 or 920. Personally, I have the 920 and I simply love it.
-
VS2010 and TFSI guess you switched to the TFS hosted on Microsoft's servers http://tfs.visualstudio.com/[^] They use TFS 2012 which is not compatible with VS2010 without this update. Another option is using VS2012 which doesn't need such a patch.
-
You Keep Using That Word, I Do Not Think It Means What You Think It Means.That's true, however, in this case, it's meant as religion or faith. http://en.wikipedia.org/wiki/Nur_al-Din_(disambiguation)[^] It's actually a very common practice in Arabic names and surnames (SomeGoodAdjective or Noun - El Din. For example, Ez el Din, Sayf el Din...) :)
-
You Keep Using That Word, I Do Not Think It Means What You Think It Means.In the Arabic language, the words for light and fire are completely seperate. Nur = light Nar = fire In addition the word, Din means Religion. So I'm guessing Wikipedia thought it sounded cooler or something :laugh:
-
You Keep Using That Word, I Do Not Think It Means What You Think It Means.Quote:
An example can be Nur-a-Din which means "The fire of hell" Mad | :mad: (quite a name), he was however an Arab lord, his direct successor was Saladin who humiliated the crusaders in the battle where he took Jerusalem.
Hmm nope. His name actually means "The light of Religion" or "The light of faith". ;)
-
New Look of Code project.I love it. Just replace the orange with blue and it will be brilliant :)
-
This is not a question: I think it's rude to play with your phone when you're with somebody -
HP Pavilion dv6 after Compaq presario c161When you say not working, do you mean it's skipping frames and hence the game is unplayable? Or does it show you some error message that this game doesn't support your card?
-
When is a sport not a sport?You're my new hero :laugh:
-
MQOTDI think it's probably Pearl Harbor.
-
user should have to enter 4 numbers in textbox after 4 numbers textbox should not take any numberIn which I said that you were right. What I was replying to was the first part of your statement "No, a compare validator works by comparing the value of one field to another"
-
user should have to enter 4 numbers in textbox after 4 numbers textbox should not take any numberOk I agree on the second part. However, a compare validator can be used to check for data types
-
user should have to enter 4 numbers in textbox after 4 numbers textbox should not take any numberOk then, I missed the "numbers" part of the question. But then this can easily be taken into account by adding a compare validator that checks for the type.
-
user should have to enter 4 numbers in textbox after 4 numbers textbox should not take any numberThe TextBox has a "MaxLength" attribute. It does exactly what you want.
-
SQL with variable amounts of fieldsYou could try this: Procedure with following params int ID (identity) int AttackerID int DefenderID NVARCHAR AttackerCreatureIDs (this would be comma separated ids) NVARCHAR DefenderCreatureIDs (this would be comma separated ids) then in your proc, split the Ids string the below function could be used
CREATE FUNCTION [dbo].[Split]
(
@List nvarchar(2000),
@SplitOn nvarchar(5)
)
RETURNS @RtnValue table
(Id int identity(1,1), Value nvarchar(100)
)
AS
BEGIN
While (Charindex(@SplitOn,@List)>0)
Begin
Insert Into @RtnValue (value)
Select
Value = ltrim(rtrim(Substring(@List,1,Charindex(@SplitOn,@List)-1)))
Set @List = Substring(@List,Charindex(@SplitOn,@List)+len(@SplitOn),len(@List))
End
Insert Into @RtnValue (Value)
Select Value = ltrim(rtrim(@List))Return
END
GO