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
F

FlorianS

@FlorianS
About
Posts
38
Topics
19
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • AJAX Tab control
    F FlorianS

    HI, I was wondering what is the best practice when you will use this control 1. to create each page as a control and used the control in ajaxToolkit:TabPanel 2 implement all the pages direct in the ajaxToolkit:TabPanel This is a case when the pages are not simple pages. Thank You Florian

    ASP.NET question discussion

  • Skinnable application framework
    F FlorianS

    Hi I am looking for a skinnable application framework for desktop and mobile windows. Can you recommend something?

    The Lounge question

  • Privacy Statement Generator
    F FlorianS

    What do you recommend if you need a Privacy Statement for a website: use a lawyer or do it by your self with a generator? Can anybody recommend a good Privacy Statement Generator that is compliant with Canadian laws? Thank You FlorianS

    The Lounge question

  • XSD File issue
    F FlorianS

    Hi, I don’t know what happened, but now any time I want to open an XSD file my DevStudio 2005 is crashing. Did anyone had the same problem? Can be fixed ? Thanks, Florian Szoke

    Visual Studio help question

  • Having personal projects.
    F FlorianS

    Hey guys, Do you know any case when the employer got the rights over the personal project by court decision? If yes was the personal project related with the employer’s activity? Thanks, Florian

    The Lounge question

  • Game programming resources...
    F FlorianS

    This can be a good start : http://www.gamedev.net/[^]

    The Lounge game-dev question

  • When you can say a method has too many lines of code?
    F FlorianS

    The author is talking about the method itself not about the test case. Regards, Florian Szoke

    The Lounge question algorithms testing

  • When you can say a method has too many lines of code?
    F FlorianS

    The author was talking about the method itself not about the test case. Regards, Florian Szoke

    The Lounge question algorithms testing

  • When you can say a method has too many lines of code?
    F FlorianS

    The point is not about the efficiency is the code, but when you will start to break a method in smaller methods. Of course if some part of the code can be used in more places you will do it, but if the code it is not shared . The idea is to make smaller method to be easier to be tested using unit testing Regards Florian

    The Lounge question algorithms testing

  • When you can say a method has too many lines of code?
    F FlorianS

    I am reading about Test Driven Development (TDD) and I found this quote: The author is talking about a method that has 6 lines of code. “This is an abnormally large amount of code to write in response to a test in TDD. Typically, steps are much smaller, although they can be this large if you are certain of the algorithm you need to use.” What is your opinion about this?

    The Lounge question algorithms testing

  • TCP/IP and Pipes for and ODBC Connection [modified]
    F FlorianS

    Hi, I have a problem with and app that is connected to an SQL 2000 database The user got a new server dual CPU 3.2 GHz Pentium 4 with 2G memory and the app is slower compare with the old machine a dual CPU 755 MHz Pentium 3 with 512 memory. If you use the TCP/IP connection in ODBC driver, the new machine is very slow. If you use Name Pipe in ODBC, both machine a doing well. The old machine it is working well with both TCP/IP and Pipes. Does anybody have any idea why it is such a big difference between TCP/IP and pipes for the new machine? The different is from 1 minute to 10 minutes for an operation. Any thoughts are welcome Thanks, Florian -- modified at 15:01 Friday 16th June, 2006

    Database database sysadmin performance help question

  • asp:CheckBox two-way binding problem
    F FlorianS

    Hi I have a problem with binding parameters to an update command for an asp:SqlDataSource. The problem is when I am trying to bind a ASP:CheckBox field. I have this definition …………….

    --------- I am getting this error; Cannot insert the value NULL into column 'PrivateLivingArea', table 'RentalProperty.dbo.HomeListing'; column does not allow nulls. UPDATE fails. The statement has been terminated. I know what it means but I can not figure out how to bind this checkbox field to the query parameters

    ASP.NET help database wpf wcf tutorial

  • Inline code
    F FlorianS

    I have a dropdown list defined like this : I would like to use some constants define for the “value” field I have the definition like this : public enum ctBuildingType { None = 1, Apartment = 2, House = 3, Townhouse = 4 } How can I use the inline code to replace the hardcode values with the ctBuildingType ? Can I do something like this: Florian Szoke

    ASP.NET question

  • Data binding question
    F FlorianS

    I found out how to do it, and it is very simple: :) In the declaration of DropDownList we have to declare : SelectedValue='<%# Bind("ProvinceId")'

    ASP.NET question database wpf wcf

  • Data binding question
    F FlorianS

    The DropDownList is populated in the definition. When the page is loaded I want to be selected the proper province in the dropdown list. For example if in the database the the row that I am fetching has providerid = 2 , the drop down list should show "Manitoba" I forget to mention , the SqlDataSource will have just one record to fetch.

    ASP.NET question database wpf wcf

  • Data binding question
    F FlorianS

    Hi I have a question related to data binding. I have a dropdown list defined like this: Ontario Manitoba British Columbia Quebec The SqldataSource object has a query “Select …, ProvinceId,…..” I would like to show all the time the proper Province selected when the page is loaded. It is possible to do an auto binding for this? Thanks, Florian Szoke

    ASP.NET question database wpf wcf

  • Generating random color for Background and foreground
    F FlorianS

    If you have to generate random colors for background and foreground there is any way to check them to be sure that the result will be readable. I would like to eliminate those combinations that are close so the result will be hard to read.. Thanks Florian Szoke

    The Lounge lounge

  • bug in IE &gt;&gt; hope its not a repeat
    F FlorianS

    try this open microsoft word, type: =rand(200,99)

    The Lounge help

  • CreateUserWizard question
    F FlorianS

    Hi, I start playing with ASP.NET 2.0 I am trying to customize the CreateUserWizard. My question is: If you try to add more fields like names, address and others where will be the best place to save them in the database. The control has an event “OnUserCreated” that is called after the control creates the user in the database. Is this the place where I should add the extra information in the database ? Thanks, Florian Szoke

    ASP.NET question csharp asp-net database

  • Home Theater PC
    F FlorianS

    For the OS I will go with Windows XP Media Center.

    The Lounge question discussion
  • Login

  • Don't have an account? Register

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