Click here to Skip to main content
15,899,314 members
Home / Discussions / C#
   

C#

 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Keshav Shivhare7-Dec-14 7:47
Keshav Shivhare7-Dec-14 7:47 
AnswerRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
syed shanu7-Dec-14 13:08
professionalsyed shanu7-Dec-14 13:08 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Keshav Shivhare8-Dec-14 3:12
Keshav Shivhare8-Dec-14 3:12 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
syed shanu8-Dec-14 13:11
professionalsyed shanu8-Dec-14 13:11 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
syed shanu8-Dec-14 13:16
professionalsyed shanu8-Dec-14 13:16 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Richard Deeming9-Dec-14 1:51
mveRichard Deeming9-Dec-14 1:51 
AnswerRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
aartimishra9-Dec-14 23:30
aartimishra9-Dec-14 23:30 
QuestionHow can I Create windows signup form application from html codes ? Pin
madleet6-Dec-14 16:51
madleet6-Dec-14 16:51 
Hello, guys

i want to create windows signup appliaction in c#.

i have a Html code of signup page.


from that code i want to create
signup app.

it must be include

3 textboxes:
1. username, 2. password, 3.captcha text

1 picrureBox for load captcha
1 refresh captcha button
1 submit button


i have this html code :

[code]



<title>MAD











USERNAME



PASSWORD





CAPTCHA










var dids = ["MIDP","ANDROID","WINDOWS","BlackBerry","SYMBIAN","MAC","WP","LINUX","IPHONE","WM"];
var curdid = 0;

function createCaptcha()
{
var chars ="0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZ"
+ "abcdefghiklmnopqrstuvwxyz";
var str = "";
for (var i=0; i<10; i++)
{
str += chars[ Math.floor( Math.random() * chars.length ) ];
}
var form = document.getElementById("cI");
form.s.value = str;
document.getElementById("CAPTCHA").src =
'http://register.nimbuzz.com/init?w=120&h=40&f=png&s=' + str;

form.did.value = dids[curdid];
curdid = ( curdid + 1 ) % dids.length;
}

// generate initial CAPTCHA strings:
createCaptcha( );

document.getElementById("regen").onclick = createCaptcha;




[/code]
QuestionRe: How can I Create windows signup form application from html codes ? Pin
Richard MacCutchan6-Dec-14 21:23
mveRichard MacCutchan6-Dec-14 21:23 
AnswerRe: How can I Create windows signup form application from html codes ? Pin
BillWoodruff7-Dec-14 2:37
professionalBillWoodruff7-Dec-14 2:37 
QuestionIndividual SubItem Double-click in Detail ListView Pin
Simmerliner6-Dec-14 7:17
Simmerliner6-Dec-14 7:17 
AnswerRe: Individual SubItem Double-click in Detail ListView Pin
Ravi Bhavnani6-Dec-14 11:51
professionalRavi Bhavnani6-Dec-14 11:51 
GeneralRe: Individual SubItem Double-click in Detail ListView Pin
Simmerliner6-Dec-14 13:34
Simmerliner6-Dec-14 13:34 
Questionwindows store app streaming webcam Pin
blqck6-Dec-14 4:28
blqck6-Dec-14 4:28 
GeneralMessage Closed Pin
5-Dec-14 8:02
ItsElio5-Dec-14 8:02 
GeneralRe: Community Project Pin
OriginalGriff5-Dec-14 8:12
mveOriginalGriff5-Dec-14 8:12 
QuestionProblems adding an .NET 3.5 dll to a .NET 2.0 application Pin
Stephen Holdorf5-Dec-14 7:20
Stephen Holdorf5-Dec-14 7:20 
AnswerRe: Problems adding an .NET 3.5 dll to a .NET 2.0 application Pin
OriginalGriff5-Dec-14 8:09
mveOriginalGriff5-Dec-14 8:09 
GeneralRe: Problems adding an .NET 3.5 dll to a .NET 2.0 application Pin
Stephen Holdorf5-Dec-14 9:13
Stephen Holdorf5-Dec-14 9:13 
GeneralRe: Problems adding an .NET 3.5 dll to a .NET 2.0 application Pin
OriginalGriff5-Dec-14 21:39
mveOriginalGriff5-Dec-14 21:39 
QuestionWindows Service Interface Pin
milo-xml5-Dec-14 3:45
professionalmilo-xml5-Dec-14 3:45 
GeneralRe: Windows Service Interface Pin
PIEBALDconsult5-Dec-14 3:54
mvePIEBALDconsult5-Dec-14 3:54 
GeneralRe: Windows Service Interface Pin
milo-xml8-Dec-14 2:12
professionalmilo-xml8-Dec-14 2:12 
Questiongeneral query related to C# Pin
Member 112872604-Dec-14 13:33
Member 112872604-Dec-14 13:33 
AnswerRe: general query related to C# Pin
syed shanu4-Dec-14 14:14
professionalsyed shanu4-Dec-14 14:14 

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.