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
I

il_masacratore

@il_masacratore
About
Posts
146
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to write querey return the unique CustomerId with the first CustomerName ?
    I il_masacratore

    Maybe it ins't the best solution but you can use a group by (CustomerId), then you have to choose wich CustomerName is the choosen (min(CustomerName), max(CustomerName...). Sql: >select CustomerId, max(CustomerName) from Customer group by CustomerId.

    Visit my blog at http://dotnetforeveryone.blogspot.com

    Database tutorial question sales

  • datagridview - realtime changes
    I il_masacratore

    I think so DataGridView doesn't have something like this. Maybe you will have to implement it...

    Visit my blog at http://dotnetforeveryone.blogspot.com

    C# database tutorial question

  • C#.NEt windows form table layout panel control
    I il_masacratore

    TableLayout panel must be simetric. You can solve this creating a panel and add inside the tablelayout panel and a panel. Set Dock of panel to bottom, and tlp Dock property to Fill.

    Visit my blog at http://dotnetforeveryone.blogspot.com

    C# csharp question

  • Convert datareader from datatable
    I il_masacratore

    A datareader from a datatable? Are you talking about System.Data.DataTable class?? If its your case I suggest two ways: 1.Make a forecach loop through DataTable.Rows and make anything foreach row. 2.To complement the upper suggestion use DataTable.Select('where clause') and store DataRow[] result in a var and make a foreach loop on this DataRow[].

    Visit my blog at http://dotnetforeveryone.blogspot.com

    C# help

  • Looking for decent free .MSI installation package creator
    I il_masacratore

    Do you know IIS(Inno Setup)? Its free and use extended...

    Visit my blog at http://dotnetforeveryone.blogspot.com

    C# csharp question

  • Search in the DataTable
    I il_masacratore

    Aproximately: ... DataTable dt = ... string sText = txtInput.Text; foreach(datacolumn in dt.columns) { if( typeof(datacolumn) == string ) { DataRow[] oRows = dt.Select(DataColumn.Name + " = " + sText); if( oRows.Count > 0 ) { //Do wat you have to do } } }

    Visit my blog at http://dotnetforeveryone.blogspot.com

    C# question

  • how to display dynamically created controls data in c#
    I il_masacratore

    Maybe because you're starting iteration with i=0? Start with 1.

    Visit my blog at http://dotnetforeveryone.blogspot.com

    C# help csharp tutorial question

  • double precision problem
    I il_masacratore

    double type makes round by defect. If you wan't round you have to use real...

    Visit my blog at http://dotnetforeveryone.blogspot.com

    C# csharp help tutorial question

  • .Net
    I il_masacratore

    ... Why don't you search google??

    Visit my blog at http://dotnetforeveryone.blogspot.com

    Database csharp asp-net

  • asp.net + oracle project architecture
    I il_masacratore

    I supose that your Windows Server has a connection of 64Kb with Oracle server. I supose it will be enough. If in the future your web app works slowly, you know which is your first bottleneck to check.

    Visit my blog at http://dotnetforeveryone.blogspot.com

    Design and Architecture windows-admin question csharp asp-net database

  • Flickering effect
    I il_masacratore

    Disable control painting until you fetch data from ws

    Visit my blog at http://dotnetforeveryone.blogspot.com

    C# winforms help

  • Get the list of Controls in the windows application
    I il_masacratore

    You're using the easy way. If you want to recurse and order it from location you have to check every control position and begin to order it. The order of controls maintains the jerarchy (containers jerarchy) but real order is the order in whic you have inserted controls(see designer file).

    Visit my blog at http://dotnetforeveryone.blogspot.com

    C# help csharp xml

  • asp.net + oracle project architecture
    I il_masacratore

    This 64Kb are client download capacity or server offer 64kb to client?

    Visit my blog at http://dotnetforeveryone.blogspot.com

    Design and Architecture windows-admin question csharp asp-net database

  • How to access methods from other project in solution?
    I il_masacratore

    How have you added the reference? Adding a dll reference(on tab dll reference) or a project reference(on Other projects reference)?

    Visit my blog at http://dotnetforeveryone.blogspot.com

    Visual Studio question visual-studio tutorial

  • How to access methods from other project in solution?
    I il_masacratore

    Have you used "public static.." modifiers in this method declaration?

    Visit my blog at http://dotnetforeveryone.blogspot.com

    Visual Studio question visual-studio tutorial

  • How to develop Instant Messenger in ASP.net 2.0 using C#
    I il_masacratore

    See here>>http://www.west-wind.com/WebLog/posts/5139.aspx

    Visit my blog at http://dotnetforeveryone.blogspot.com

    ASP.NET csharp asp-net tutorial question

  • Can't set focus on some button in my Form [modified]
    I il_masacratore

    I'm not sure what you mean but.. Have you checed taborder? Or have you tried Focus() method?

    Visit my blog at http://dotnetforeveryone.blogspot.com

    C# question

  • Controls Display Delay
    I il_masacratore

    Hi, this.Refresh will try to refresh all form... If you call it only on led containing panel will be less work... Second, you're moving too many controls... Why don't you create a custom control using GDI? Securely if will be more faster!!

    Visit my blog at http://dotnetforeveryone.blogspot.com

    C# performance help

  • cannot connect to server remotely
    I il_masacratore

    Hi, Have you registered ASP.NET on IIS on server? Are you putting ok the correct port?

    Visit my blog at http://dotnetforeveryone.blogspot.com

    ASP.NET help sysadmin windows-admin

  • Reflection
    I il_masacratore

    Hi, Here you have some Reflection Samples

    Visit my blog at http://dotnetforeveryone.blogspot.com

    C# csharp question
  • Login

  • Don't have an account? Register

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