Click here to Skip to main content
15,886,724 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to read and print *.plt file by C# Pin
Pete O'Hanlon15-Feb-16 22:32
mvePete O'Hanlon15-Feb-16 22:32 
QuestionCopy File From Server With Progress And Completion Pin
Kevin Marois15-Feb-16 18:42
professionalKevin Marois15-Feb-16 18:42 
AnswerRe: Copy File From Server With Progress And Completion Pin
Garth J Lancaster15-Feb-16 19:26
professionalGarth J Lancaster15-Feb-16 19:26 
AnswerRe: Copy File From Server With Progress And Completion Pin
Richard Deeming16-Feb-16 2:06
mveRichard Deeming16-Feb-16 2:06 
GeneralRe: Copy File From Server With Progress And Completion Pin
Kevin Marois16-Feb-16 3:38
professionalKevin Marois16-Feb-16 3:38 
AnswerRe: Copy File From Server With Progress And Completion Pin
Pete O'Hanlon16-Feb-16 2:10
mvePete O'Hanlon16-Feb-16 2:10 
GeneralRe: Copy File From Server With Progress And Completion Pin
Kevin Marois16-Feb-16 3:36
professionalKevin Marois16-Feb-16 3:36 
QuestionIcon on "Dekstop" Pin
Member 1224802815-Feb-16 12:01
Member 1224802815-Feb-16 12:01 
Hi can you please help me, with main problem. I am try create own menu for disabled peoples. Here is code:
PictureBox pb = new PictureBox();
int pbCounter = 0;
int pbWidth = 100;
int pbHeight = 100;


void MainFormLoad(object sender, EventArgs e)
{
DirectoryInfo dir = new DirectoryInfo(@"otherapp\");
foreach (FileInfo f in dir.GetFiles("*.exe"))
{
pbWidth = pbWidth+10;
pbCounter++;
pb.Location = new Point(pbWidth,pbHeight);
pb.Width = 100; pb.Height = 100;
pb.BackColor = Color.AliceBlue;
pb.Name =Convert.ToString(f);
pb.BackgroundImageLayout = ImageLayout.Stretch;
pb.MouseEnter += new System.EventHandler(PicBox);

}
}

void PicBox(object sender, EventArgs e)
{

}
This create last icon for exe files Frown | :( Screenshots:
[img]http:\\88.86.108.112\1.png[/img]
Files is directory
[img]http:\\88.86.108.112\2.png[/img]
Main probem
[img]http:\\88.86.108.112\3.png[/img]
This i want have.

When i have 5 exe files is directory otherapp\ create 5 icon on "dekstop" with names of exec files. And when i am click on icon on "desktop" executet this software.

Thx
QuestionRe: Icon on "Dekstop" Pin
ZurdoDev15-Feb-16 13:55
professionalZurdoDev15-Feb-16 13:55 
AnswerRe: Icon on "Dekstop" Pin
Gerry Schmitz16-Feb-16 6:05
mveGerry Schmitz16-Feb-16 6:05 
Questionsingle submit button with multiple tabs Pin
Sandy Safwat15-Feb-16 7:19
Sandy Safwat15-Feb-16 7:19 
AnswerRe: single submit button with multiple tabs Pin
Richard Deeming15-Feb-16 8:09
mveRichard Deeming15-Feb-16 8:09 
GeneralRe: single submit button with multiple tabs Pin
Sandy Safwat15-Feb-16 9:19
Sandy Safwat15-Feb-16 9:19 
GeneralRe: single submit button with multiple tabs Pin
Richard Deeming15-Feb-16 9:32
mveRichard Deeming15-Feb-16 9:32 
GeneralRe: single submit button with multiple tabs Pin
Sandy Safwat15-Feb-16 10:27
Sandy Safwat15-Feb-16 10:27 
GeneralRe: single submit button with multiple tabs Pin
Richard Deeming15-Feb-16 10:48
mveRichard Deeming15-Feb-16 10:48 
GeneralRe: single submit button with multiple tabs Pin
Mycroft Holmes15-Feb-16 13:39
professionalMycroft Holmes15-Feb-16 13:39 
GeneralRe: single submit button with multiple tabs Pin
Sandy Safwat15-Feb-16 18:38
Sandy Safwat15-Feb-16 18:38 
QuestionGet the name of the machine I'm remoted from... Pin
dandy7215-Feb-16 5:40
dandy7215-Feb-16 5:40 
AnswerRe: Get the name of the machine I'm remoted from... Pin
Gerry Schmitz15-Feb-16 6:28
mveGerry Schmitz15-Feb-16 6:28 
AnswerRe: Get the name of the machine I'm remoted from... Pin
Eddy Vluggen16-Feb-16 11:08
professionalEddy Vluggen16-Feb-16 11:08 
GeneralRe: Get the name of the machine I'm remoted from... Pin
dandy7217-Feb-16 9:47
dandy7217-Feb-16 9:47 
GeneralRe: Get the name of the machine I'm remoted from... Pin
dandy7217-Feb-16 10:12
dandy7217-Feb-16 10:12 
QuestionHow to change glyphicon button on button click of asp.net to show password and when press again to change the icon? Pin
Abbasali Dragon15-Feb-16 3:54
Abbasali Dragon15-Feb-16 3:54 
AnswerRe: How to change glyphicon button on button click of asp.net to show password and when press again to change the icon? Pin
Dave Kreskowiak15-Feb-16 4:36
mveDave Kreskowiak15-Feb-16 4:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.