Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

Roman_wolf

@Roman_wolf
About
Posts
23
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Friday's Philosophical Thought Of The Day
    R Roman_wolf

    Being early is overrated. After all, it's the late mouse that gets the cheese :)

    The Soapbox com tools question

  • iPhone or Windows Phone
    R Roman_wolf

    It 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.

    The Lounge ios design question discussion

  • how to handle ...
    R Roman_wolf

    By any chance, is PHB[^] your manager?

    The Soapbox com tools tutorial question

  • Share your experiences with Nokia Lumia phone...
    R Roman_wolf

    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 :)

    The Lounge performance

  • Gaming Consoles
    R Roman_wolf

    I'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.

    The Lounge question

  • Smartphone recommendation
    R Roman_wolf

    I'd go with either the Lumia 820 or 920. Personally, I have the 920 and I simply love it.

    The Lounge mobile json question

  • VS2010 and TFS
    R Roman_wolf

    I 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.

    The Lounge question asp-net oracle com sysadmin

  • You Keep Using That Word, I Do Not Think It Means What You Think It Means.
    R Roman_wolf

    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...) :)

    The Lounge com question

  • You Keep Using That Word, I Do Not Think It Means What You Think It Means.
    R Roman_wolf

    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:

    The Lounge com question

  • You Keep Using That Word, I Do Not Think It Means What You Think It Means.
    R Roman_wolf

    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". ;)

    The Lounge com question

  • New Look of Code project.
    R Roman_wolf

    I love it. Just replace the orange with blue and it will be brilliant :)

    The Soapbox

  • This is not a question: I think it's rude to play with your phone when you're with somebody
    R Roman_wolf

    Well if Dilbert does it, it has to be ok.

    The Soapbox question

  • HP Pavilion dv6 after Compaq presario c161
    R Roman_wolf

    When 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?

    The Lounge csharp asp-net visual-studio graphics game-dev

  • When is a sport not a sport?
    R Roman_wolf

    You're my new hero :laugh:

    The Lounge html com question career

  • MQOTD
    R Roman_wolf

    I think it's probably Pearl Harbor.

    The Lounge question

  • user should have to enter 4 numbers in textbox after 4 numbers textbox should not take any number
    R Roman_wolf

    In 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"

    JavaScript

  • user should have to enter 4 numbers in textbox after 4 numbers textbox should not take any number
    R Roman_wolf

    Ok I agree on the second part. However, a compare validator can be used to check for data types

    JavaScript

  • user should have to enter 4 numbers in textbox after 4 numbers textbox should not take any number
    R Roman_wolf

    Ok 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.

    JavaScript

  • user should have to enter 4 numbers in textbox after 4 numbers textbox should not take any number
    R Roman_wolf

    The TextBox has a "MaxLength" attribute. It does exactly what you want.

    JavaScript

  • SQL with variable amounts of fields
    R Roman_wolf

    You 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

    Database help database game-dev xml
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups