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
N

Not Active

@Not Active
About
Posts
9.1k
Topics
448
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Add values to a list contains a Lookup Field
    N Not Active

    Format your code snippets when posting don't post to multiple forums. You have already asked in Q&A


    Failure is not an option; it's the default selection.

    SharePoint sharepoint database help announcement

  • Downvoting and deleting
    N Not Active

    This is not your issue and was not addressed to you. Stay out of it.


    Failure is not an option; it's the default selection.

    Spam and Abuse Watch database com tools question

  • 999 mpg
    N Not Active

    I believe they are picking up but I am ahead of the curve


    Failure is not an option; it's the default selection.

    The Lounge com performance learning

  • 999 mpg
    N Not Active

    Electricity is free, its the service you pay for :laugh: My bill is less then $100/month for the entire house full of modern electronic goodies so the vehicle charging will be a drop in the bucket and certainly less that fuel.


    Failure is not an option; it's the default selection.

    The Lounge com performance learning

  • 999 mpg
    N Not Active

    Yes, the Model X with the wing doors is certainly intriguing.


    Failure is not an option; it's the default selection.

    The Lounge com performance learning

  • 999 mpg
    N Not Active

    Deyan Georgiev wrote:

    not so fuel efficient “as advertised” . They are efficient in a very specific conditions.

    This is my second hybrid and the first lived up to its billing and the second has exceeded expectations so far. Yes, the battery capacity did degrade slightly in winter, but not significant enough for me trade $50/month for $50/week in fuel cost.


    Failure is not an option; it's the default selection.

    The Lounge com performance learning

  • 999 mpg
    N Not Active

    Like these? http://www.teslamotors.com/[^]


    Failure is not an option; it's the default selection.

    The Lounge com performance learning

  • 999 mpg
    N Not Active

    I picked up a new car a few days ago. http://www.toyota.com/prius-plug-in/[^] A few short trips around town gave me a reported 999 mpg. Without the engine ever starting. Out of EV mode it reports an average of 160 mpg so far. And no it isn't some slow speed snail. EV mode can get to 100kph and I can accelerate from a stop about the same as my Highlander. Of course the engine does kick on if I stump on the accelerator.


    Failure is not an option; it's the default selection.

    The Lounge com performance learning

  • Absotively MARVELous
    N Not Active

    They're getting all sensitive now Marvel Comics invites you to a Super Marriage[^]


    Failure is not an option; it's the default selection.

    The Lounge question

  • Downvoting and deleting
    N Not Active

    Not a spree, just this one. Every time I posted it it was down voted. The first was deleted. Perhaps I'm being a bit over sensitive with his continued remarks also.


    Failure is not an option; it's the default selection.

    Spam and Abuse Watch database com tools question

  • a C# version of c++ can be created?
    N Not Active

    Just seemed like a rant to me. It is the end of the day, or is it the beginning? I'm so confused. :)


    Failure is not an option; it's the default selection.

    The Lounge csharp c++ question announcement

  • a C# version of c++ can be created?
    N Not Active

    And your point is?


    Failure is not an option; it's the default selection.

    The Lounge csharp c++ question announcement

  • Illiterate Users
    N Not Active

    At least you got exercise :-D


    Failure is not an option; it's the default selection.

    The Lounge help learning

  • Downvoting and deleting
    N Not Active

    http://www.codeproject.com/script/Membership/View.aspx?mid=7542362[^] This user has continued to down vote each solution and possible delete one out of what appears to be sheer pettiness Delete All Record From Database[^]


    Failure is not an option; it's the default selection.

    Spam and Abuse Watch database com tools question

  • ALF making a come back...
    N Not Active

    And who said creativity was dead in Hollywood :rolleyes:


    Failure is not an option; it's the default selection.

    The Lounge com question announcement

  • Greatest Geek that ever lived
    N Not Active

    He also invented the automobile[^] :-D


    Failure is not an option; it's the default selection.

    The Lounge php com question

  • Error When use of crystal report (sap crystal 13) and .netframework 4 in my application(c#-VS2010)
    N Not Active

    A completely useless and uninformative answer


    Failure is not an option; it's the default selection.

    ASP.NET csharp dotnet help

  • Don’t Export Persian fields finely from ASP.NET to Excel (VS2010 – C#)
    N Not Active

    A completely useless and uninformative answer


    Failure is not an option; it's the default selection.

    ASP.NET csharp question css asp-net

  • Don’t Export Persian fields finely from ASP.NET to Excel (VS2010 – C#)
    N Not Active

    You don't export the GridView, you export the DataSource of the GridView. Assuming you are using a DataTable as the DatSource

    StringBuilder sb = new StringBuilder();
    List rows = new List();
    foreach(DataColumn col in DataSource.Columns)
    {
    rows.Add(col.ColumnName);
    }

    sb.AppendLine(string.Join(",", rows.ToArray()));
    rows.Clear();
    foreach(DataRow row in DataSource.Rows)
    {
    foreach(object item in row.ItemArray)
    {
    rows.Add(item.ToString());
    }
    sb.AppendLine(string.Join(",", rows.ToArray()));
    rows.Clear();
    }

    Response.ContentType = "Application/x-msexcel";
    Response.AddHeader("content-disposition", "attachment;filename=export.csv");
    Response.Clear();
    using(StreamWriter writer = new StreamWriter(Response.OutputStream, Encoding.UTF8))
    {
    writer.Write(sb.ToString());
    }
    Response.End();


    Failure is not an option; it's the default selection.

    ASP.NET csharp question css asp-net

  • web site development
    N Not Active

    What?


    Failure is not an option; it's the default selection.

    ASP.NET
  • Login

  • Don't have an account? Register

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