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
M

Michael Mac

@Michael Mac
About
Posts
113
Topics
18
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • printing problems..
    M Michael Mac

    Use JavaScript: window.print(); If you want to print only the grid than place it in iframe window.


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    ASP.NET csharp javascript visual-studio help question

  • HtmlEditor
    M Michael Mac

    I know that there is a special forum for such things. However, I think that the post suits better here. ;) It passed a long time since I've programmed something, which was cool, ect. ( in programming terms ). I don't have any idea and motivation. Because of that I decided to write an article. Some time ago (long time ago) I wrote this piece of code: HtmlEditor[^]. A Asp.Net based HtmlEditor server control. Is anybody interested in reading an article about it? :confused:


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    Web Development csharp asp-net sysadmin question

  • timer in C++
    M Michael Mac

    Ups, I didn't notice.


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    Managed C++/CLI c++ linux question

  • timer in C++
    M Michael Mac

    Try GetTickCount();


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    Managed C++/CLI c++ linux question

  • Page updates only on second click
    M Michael Mac

    laphijia wrote: Why is it so? I can't figure it out and more importantly how to solve this. It's because you change the culture info after the controls have been created. Instead, override the CreateChildControls of the page class and do it there:

    protected override void CreateChildControls()
    {
    // The code goes here
    Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("en-US");
    Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-US");

    // Don't forget to call base.CreateChildControls()
    base.CreateChildControls ();
    

    }


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    ASP.NET tutorial question

  • Threading
    M Michael Mac

    I'm developing a Formatter class which will be used in a Web app. The formatter is responsible for replacing an occurrence of a text with some other text - regular expressions. I've coded a TextReplacement class which holds match and replacement values. Next, I created a collection (TextReplacementCollection) for it. I thought it would be a good idea to allow user to have more than one TextReplacementCollection instance in a Formatter so I've made another collection of key-and-value pairs - TextReplacementCollectionDictionary. For example, one collection could be used for replacing smiles and the other for securing html. Now I'm concern about the multithreading and performance issues. For example, one of the collection is being changed (admin page) and at the same time the formatter is using it for a formatting operation (forum page). What technique should I use to synchronize the collections so that it wouldn't slow the whole site down and wouldn't bring any unpredictable results?


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    ASP.NET html regex performance tutorial question

  • Cycling Speedway
    M Michael Mac

    One hundred metres from my flat there is the Junior World Championship in cycling speedway ( speedway on bikes ). I can see it from my window. The finals are starting right now. :D We've got participants from Poland, USA, UK, Australia. Ryan Sullivan even come to see the event. It's so good that I can't stop watching. I think it's even better than speedway because it's more contact sport :) Have you ever seen this sport?


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    The Lounge question

  • Error 500
    M Michael Mac

    Yesterday I couldn't access CP at all - Error 500. :(


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    The Lounge help question

  • Do you want...
    M Michael Mac

    Ok, I'll start writing it as soon as I buy a new screen.


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    Article Writing csharp asp-net question

  • Do you want...
    M Michael Mac

    ...an article or a series of articles about creating a full-featured site with ASP.Net. I would include:* User login system

    • Skin framework
    • Site Sections
    • Forum
    • Pools/Questions
    • Other helpful controls
      Is anybody interested? :)

    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    Article Writing csharp asp-net question

  • CSharp conversion
    M Michael Mac

    Take a look at Convert class, especially ChangeType method.


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    C# question csharp c++ data-structures

  • 9 PC 13 Monitors
    M Michael Mac

    :cool: :cool: :cool:


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    The Lounge

  • Personal Web Sites
    M Michael Mac

    Here you can find mine www.sztronka.inds.pl[^] :-D Unfortunately, it's in my native language - Polish.


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    The Lounge csharp asp-net xml architecture question

  • Code Project Project (CPP) [UPDATED 5/31]
    M Michael Mac

    I want to join too. :D


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    Collaboration / Beta Testing c++ com beta-testing tools question

  • Pi
    M Michael Mac

    Hmmm... I remember 3.141592653589 :D


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    The Lounge question

  • Happy Mother's Day...
    M Michael Mac

    I wish the mothers all the best too. :rose::rose::rose: However here in Poland, where I live, Mother's Day is celebrated on 26th.


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    The Lounge

  • Request - IOCP
    M Michael Mac

    Does anybody of you guys have already ported IO Completion Port to .Net? :confused: I would be very thankful for sharing it with my.


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    .NET (Core and Framework) csharp question

  • Split Latest Updates List
    M Michael Mac

    Alex Farber wrote: think it may be a good idea to split the Latest 10 Updates and Latest Updates lists to Edited and Unedited. I think it's a very good idea. :) Alex Farber wrote: So, when we enter the CodeProject, the first thing we see is the junk list. Actual CodeProject level is much better than Latest Updates level. I couldn't agree more.


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    Site Bugs / Suggestions

  • embedding HTML and trapping events....
    M Michael Mac

    Take a look at my article MaChat[^]. ;) Unfortunately, it's written in MC++. However, I've got some code in C# which does what you probably need ( WebBrowserEx & DHTMLControl ). If you want it send me your e-mail address. :D


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    C# question csharp html help tutorial

  • Free E-Mail provider
    M Michael Mac

    I use an account on a Polish server - www.wp.pl :) It's great. I've been using this account for about 2 years and I can assure you that will get almost no spam. About 1-3 a month. Account size: 10 MB Max. letter size: 4 MB :D


    43 68 65 65 72 73 2c 4d 69 63 68 61 65 6c

    The Lounge question c++ java com design
  • Login

  • Don't have an account? Register

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