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

NET4Ever

@NET4Ever
About
Posts
21
Topics
10
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • .NET 4.7 Desktop Form combox coloring within datagridview
    N NET4Ever

    This worked. Thank you!

    C# csharp

  • .NET 4.7 Desktop Form combox coloring within datagridview
    N NET4Ever

    I can't find the setting(s) to change the color of a combobox within a datagridview. I tried this code below. I get a dark line around the datagridview cell and a white background. I see the colors I set below when I view the list within the combobox. combo.DisplayStyle = DataGridViewComboBoxDisplayStyle.ComboBox; combo.CellTemplate.Style.BackColor = Color.LightSalmon; combo.CellTemplate.Style.ForeColor = Color.Black; combo.CellTemplate.Style.SelectionBackColor = Color.LightSalmon; combo.CellTemplate.Style.SelectionForeColor = Color.Black;

    C# csharp

  • ASP.NET MVC
    N NET4Ever

    Can someone from CodeProject add a message board for ASP.NET MVC? I think it has gained enough ground to get its own message board.

    Site Bugs / Suggestions asp-net csharp architecture question

  • ReportViewer 2005 C# Printing issue [modified]
    N NET4Ever

    Issue: Two users both print to a printer. It works well for one user. The other user it doesn't. The one that doesn't work has to click on the print button twice in the print dialogue. Has anyone heard of this type of issue? If you have, I can provide more details. printer details: Canon PS 3 Emulation Printer Driver version 4.37 Canon iR C4080/ C4580 PS 3 Updated: I see there is a hotfix:KB916812. Where can I find it? I searched for it. Looks like it has to come from Microsoft support. Looks like that is a 100 bucks.

    modified on Wednesday, December 9, 2009 2:20 PM

    C# csharp help question announcement

  • log4net and QueryHelper in .NET 1.1 stopped returing results
    N NET4Ever

    Hi, This question is for anyone familiar with log4net and QueryHelper in .NET 1.1. I am working with a web app using these technologies. When you open the app, you are presented with a search menu. You type in a search criteria. Then you see displayed results in an old DataGrid. The problem: At any time during the day, the app doesn't return results. It returns no errors. There is nothing in the log folder because log4net never logs in the first place. A peer thinks it is something with log4net erroring out, but what does logging have to do with returning results? I think its QueryHelper missing a parameter, but can't recreate this issue. Has anyone seen this before? Thanks

    C# help question csharp

  • .NET Oracle Connections
    N NET4Ever

    No, looks good thanks.

    Web Development csharp database oracle question

  • Oracle/ .NET connection
    N NET4Ever

    These are great. Thanks!

    C# csharp database oracle question

  • Open source and >net
    N NET4Ever

    Check out Hewitt Packer (HP). They are leading the pack. They just passed Dell and IBM. Who is next on their list? Don't trust me. Research it.

    Web Development csharp java lamp

  • SharePoint Help
    N NET4Ever

    WebParts are in Visual Studio 2005 toolbox.

    Web Development csharp sharepoint dotnet visual-studio tools

  • Oracle/ .NET connection
    N NET4Ever

    Has anybody worked with .NET and connecting to Oracle? I am attempting to connect to Oracle using .NET 2.0. I used the Data Source=Oracle db, name and password connection string. What are the other connection strings? I seen Integrated used as part of the connection string. There isn't much out there on Oracle and .NET. Thanks

    C# csharp database oracle question

  • Photo Album
    N NET4Ever

    I used SQL Server 2000. Retrieving images from a db seems slow. What is Directory?

    Web Development database sql-server sysadmin

  • .NET Oracle Connections
    N NET4Ever

    Has anybody worked with .NET and connecting to Oracle? I am attempting to connect to Oracle using .NET 2.0. I used the Data Source=Oracle db, name and password connection string. What are the other connection strings? I seen Integrated used as part of the connection string. There isn't much out there on Oracle and .NET. Thanks

    Web Development csharp database oracle question

  • ASP.NET 1.1 C# DataGrid
    N NET4Ever

    It uses an xml file for its sql quiries and log4net for logging. I am thinking the datagrid can't handle so many records on a postback. Maybe, if I were to provide paging to the datagrid. It may not even be the datagrid.

    ASP.NET csharp asp-net question

  • ASP.NET 1.1 C# DataGrid
    N NET4Ever

    I tried debugging the code in the code behind. It never breaks. There is no error message besides going to page cannot be displayed.

    ASP.NET csharp asp-net question

  • ASP.NET 1.1 C# DataGrid
    N NET4Ever

    I am working on a search page. It uses a datagrid. I search for a state. I get back 6700 rows. Then I search for city and state. I get page cannot be displayed. I search for a city. I get back 295 rows. Then I search for city and state. It works fine. Has anyone seen this behavior before?

    ASP.NET csharp asp-net question

  • ASP checkbox within a checkbox
    N NET4Ever

    How do you create a checkbox like below in ASP? Please excuse my graphics. O Check this to get an expansion below (ListItems) O 1st item O 2nd item O 3rd item I was able to get the above. However, I want to hide the items until I check the ListItems checkbox (the circle). Then unchecking the ListItems checkbox, the listed items disappear.

    Web Development graphics question

  • DataGrid in .NET 1.1 C#
    N NET4Ever

    Thanks. However, please bare with me. The headers sorting uses the SortCommand which has a different set of arguments, so I can't use the same itemcommand event handler. ex) ItemCommand Arguments (object source, System.Web.UI.WebControls.DataGridCommandEventArgs e) SortCommand Arguments (object source, System.Web.UI.WebControls.DataGridSortCommandEventArgs e) If I were to use ItemCommands arugments to do the if check, I would not have the correct SortCommand arguments to do a sort. If the sortcommand used the same parameters as the itemcommand, I could do the if statement because the sorted headers and buttons would all go to the same event handler.

    ASP.NET csharp css algorithms help question

  • DataGrid in .NET 1.1 C#
    N NET4Ever

    I have a datagrid with with a button column and a few databound columns. The button column when clicked shows more details for a given row. ex) 123 ABC Company View Records 123 being a unique ID. ABC Company being a description. View Records is the button. When I added sorting to the headers, the application would direct me to the View Records code when clicking on the header to sort. I just wanted to sort. I found the reason. The InitializeComponent() was using an ItemCommand for the View Records button which is executed when any button on the grid is clicked. The headers for sorting were using the SortCommand for a datagrid. When I allowed sorting of the headers, I suspect .NET turned those headers into buttons. Is there anyway around this? I would like to keep my View Records button within the datagrid. I tried changing the View Records button into a hyperlink, but then I got an error for not having a correct datasource for the datagrid. I don't want to mess with the datasource select that is too much change.

    ASP.NET csharp css algorithms help question

  • Message Boards
    N NET4Ever

    Thanks. I looked through them. I see you can purchase or get free message boards. Now, I am wondering if .NET comes with an API for making message boards, so I can customize on my own.

    Web Development csharp question

  • Message Boards
    N NET4Ever

    I did. Free usually means unsecure. .NET should come with a message board API.

    Web Development 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