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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
P

pcaeiro

@pcaeiro
About
Posts
18
Topics
8
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Change text of messageBox buttons
    P pcaeiro

    good example. thanks for the help. :-D PC

    C# help question

  • Change text of messageBox buttons
    P pcaeiro

    I need to change te text of some messageBox buttons... Can anyone help me on that? PC

    C# help question

  • Close MessageBox automaticly
    P pcaeiro

    I have already solved that problem, just like you sugest... Thank you :-D PC

    C# help question

  • How to encode an existing txt file?
    P pcaeiro

    Yes, i already have solved that question... Do you need anything? PC

    C# help tutorial question

  • Close MessageBox automaticly
    P pcaeiro

    thanks for the tip, that code seems very helpfull and its a better solution that the messageBox. Many thanks PC

    C# help question

  • Close MessageBox automaticly
    P pcaeiro

    Yes, you are rigth i'm following your advice, but it still not perfect because if the thread that runs in background ends, and the user dont press OK before, i will have the messageBox in the screen but the program its already in another fase (since its a caind of Wizard). But i think i must live with that because i don´t find a better answer. Perhaps i should follow your 1st advice and built my one class for the messageBox. Thanks for the help :) PC

    C# help question

  • Close MessageBox automaticly
    P pcaeiro

    Let me try to explain the my problem with my bad english... I have an aplication that runs a process in background and i was forced to stop the execution of the aplication until this process is complete, but this process could long for large seconds. So i must have a way to warn the user to wait, i thougt in a messageBox , and i do it, but than this messageBox stays until the user clicks ok, not until the end of the process. I have tried with a form but it does not work to well. The form stays full of holes (the places where it should load the labels). Could you sugest me other solution or a way to solve the problem with the form? thanks for your help. :confused: PC

    C# help question

  • Close MessageBox automaticly
    P pcaeiro

    Hello, Is it possible to close a messageBox automaticly after few seconds? Any one can help me? :doh: Thanks PC

    C# help question

  • How to encode an existing txt file?
    P pcaeiro

    Hi to all, I have a program that recieve a txt file and work the text in it. The problem its that wend i take the text from the file to a string hi have unrecognized characteres in the positions where i should have accent letters like á or ö for instance. So i tink that the better way is to encode the txt file in utf8. Is there any way to do it in the code lines? Paulo Caeiro

    C# help tutorial question

  • Problems with regular expressions
    P pcaeiro

    tanks for the help but i have already solve my problem. :-D

    C# regex help com

  • Problems with regular expressions
    P pcaeiro

    tanks for the help. The exception works just fine. I think i must work harder... :-O

    C# regex help com

  • Problems with regular expressions
    P pcaeiro

    Hello to all, First, sorry for my english. :) I have an aplication where the user should write in a textbox a regular expression, then all the words that matches in an listBox should be selected, and it works fine, but if the user intruduces a bad regular expression (like *a instead of a*) it blows the all thing. How could i fix it. here is part of the code: //////////////////////////////////////////////////////////////////// string exp = textBox1_Tab3_Create6.Text; Regex rexp = new Regex(exp); //compara a substring de cada item com a introduzida e //selecciona se for igual for (int i = 0; i < listBox1_Tab3_Create6.Items.Count; i++) { string word = listBox1_Tab3_Create6.Items[i].ToString(); if (rexp.IsMatch(word)) listBox1_Tab3_Create6.SetSelected(i, true); } /////////////////////////////////////////////////////////////////// Thanks for any help

    C# regex help com

  • How can i delay a set of instructions
    P pcaeiro

    I´m working with a process, but the set of instructions i need to delay are not part of the process, so i tinck that i can do it with a thread. Tanck you for your help the link was very helpfull. :)

    C# question csharp help

  • How can i delay a set of instructions
    P pcaeiro

    Hello, I´m writing a program that runs some gwak scripts. The problem is that before this process ends, the aplication continues to execute others C# instructions, and obviously it blows the all thing. My question is how can i delay the execution of the instructions until the process of runing the scripts ends?

    C# question csharp help

  • How to execute a gawk script in a c# aplication
    P pcaeiro

    Hello, I have some gawk scripts that i want to run in C# code. Is it possible?

    C# csharp tools tutorial question

  • add listBox selected items to a string array
    P pcaeiro

    I need to put some listbox selected items in to a string array. My code: string [] deleted_dictionarys; for (int i = 0; i < this.listBox_Delete1.SelectedItems.Count; i++) { this.deleted_dictionarys[i] = this.listBox_Delete1.SelectedItems[i].ToString(); } I don't have sintax errors but i'm getting a NullReferenceException. How can i resolve it. :doh:

    C# data-structures question

  • Constructing an wizard aplication...
    P pcaeiro

    tank you mi friend, it was very helpfull.... :-D

    C# csharp visual-studio

  • Constructing an wizard aplication...
    P pcaeiro

    I´m starting to build a windows wizard program using visual studio 2005. And I would like to know what’s the best way to do it. I’m trying to use a different usercontrol for each scenario but I don’t know if it’s the better solution..

    C# csharp visual-studio
  • Login

  • Don't have an account? Register

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