kingsonprisonic 42 Posting Whiz in Training

Please describe clearly....

Where you getting error??

In command prompt??

kingsonprisonic 42 Posting Whiz in Training

This thread is solved....

M.Waqas Aslam commented: there is no reason to say this , this is not your thread ,just posted here to get one more solved thread -1
Naruse commented: . -1
kingsonprisonic 42 Posting Whiz in Training

I think goto Statement will solve your problem..

Like

here:

printf("Enter a number");
scanf("%d",&num);
if (num<10) // Checking whether the input is correct. In this case >=10
{
printf("Sorry Wrong Input\nPress any key to input it again!");
getch();
clrscr();
goto here;
}
deceptikon commented: Faking a loop with goto is very rarely the right thing to do. -1
kingsonprisonic 42 Posting Whiz in Training

Its not depend on any language.

If you want that any file formate like (*.xyz) open with your application. Then you have to create a sub-key on registry....

using Microsoft.Win32;
Registry
    .ClassesRoot
    .CreateSubKey(".xyz")
    .SetValue("", "XYZ", RegistryValueKind.String);
Registry
    .ClassesRoot
    .CreateSubKey("XYZ\shell\open\command")
    .SetValue("", "XYZProcessor \"%1\"", RegistryValueKind.String);
codeorder commented: down voted for not being vb.net code in a vb.net forum. -2
kingsonprisonic 42 Posting Whiz in Training

1+pi=4.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111959092164201989.............


By the way check the new game "Challenge Me"

debasisdas commented: don't raise dead threads +0
kingsonprisonic 42 Posting Whiz in Training
str = "insert into tblEmployee ([Fname], [LName], [Position], [Division], [CostCenter], [Shift], [Workstation]) values (?, ?, ?, ?, ?, ?, ?)"

change it to

str = "insert into tblEmployee ([Fname], [LName], [Position], [Division], [CostCenter], [Shift], [Workstation]) values ('?', '?', '?', '?', '?', '?', '?')"

Assuming all fields as varchar.

If i am wrong let me know.