I thnk tat can help me.. thnx for this.. i l try with it. :)
KUNWAR999
Posts
-
connection of mssql 2008 to cloud in windows form application -
connection of mssql 2008 to cloud in windows form applicationHey.. I am developing an windows form application using ms sql server 2008. and i want to connect my sql server to cloud at internet to use it as backup. if there is any changes made bu application in local server then it should be reflected on cloud also. and if there is any loss of data at local server then it should get backup automatically from cloud. Can someone help me in this please.. ??
-
connection of mssql 2008 to cloud in windows form applicationhey sorry.. i think you get me wrong.. i want to connect mssql server 2008 to cloud ,.. not my application to mssql2008.. i have already done that.. now i want to connect local server which is mssql 2008 to cloud database. thanx for your try.. but hope you understand my question now..
-
connection of mssql 2008 to cloud in windows form applicationI have a database on cloud.. as for backup.. i just want to connect my sql server to that database though c # coding.. :( help here pls..
-
connection of mssql 2008 to cloud in windows form applicationHey.. I am developing an windows form application using ms sql server 2008. and i want to connect my sql server to cloud at internet to use it as backup. if there is any changes made bu application in local server then it should be reflected on cloud also. and if there is any loss of data at local server then it should get backup automatically from cloud. Can someone help me in this please.. ??
-
ASP.NET menu 2nd level nodes selected valueHi,I have a asp menu which have dynamic genrated first and second level nodes in it. now if i click on first level node then it shows the 2nd level node. then i select my second level node.. so then how can i acess selectedvalue for 2nd level nodes.?? any solution?? i treid menuitem_click() event but it gives me only firstlevel node selected value.. :(
-
#PRAGMAbut i want to reduce the execution time of a loop by making it parllel... for(int i=0;i<100;i++) { Console.WriteLine(i); } thatwhy i used pragma directive.. # prgma omp parllel for(int i=0;i<100;i++) { Console.WriteLine(i); } but its increse the time instead of reducing.. :( any sol for this??
-
#PRAGMAits taking more execution time than sequential code.. any sol?? :(
-
#PRAGMAhow can we use #pragma omp directive in c# vs 2010??
-
making parllel for loop with uses of all processori hv tried it one more way as using #pragma omp parllel .. but vs2010 saying that its unrecognized concept.. actually i am avoiding using threads because i want to use parllel processing in processor directly.. :(
-
digit roundoffTry this code.. : double g = [any no];//should be of double double L = Math.Floor(g); if (g-L<0.5) { k = (int)(L); } else { k = (int)(L + 1); } now k have ur nearest integer.. :)
-
making parllel for loop with uses of all processorI tried this code.. but i m getting high execution time than its sequential code.. and parllel execution should take less execution time than sequential code.. :(
-
making parllel for loop with uses of all processorhere is my code, word is a string array. i want to convert this code into parllel ,so that i can reduce time and use all processor of my i5 processor system.. for (int i = 0; i < k1; i++) { for (int j = 0; j < k1; j++) { num[j][i] = Convert.ToInt32(words[count]); count++; } } can anyone help me out in this????
-
label problemthnk u.. its working now.. :) :) can u tell me other text exmples which have this mnemonic beneath??
-
label problemsorry, my fault.. actually i have asked wrong question.. i have updated my question.. can u pls answer for it.. ?? thank u
-
label problemsorry, my fault.. actually i have asked wrong question.. i have updated my question.. can u pls answer for it.. ?? thank u
-
label problemhey guys,.. i am doing my mini project in c# windows form application .. in that i used a label l in form.when l.Text= "&"; its not showing anything on form inplace of label. Can anyone knows solution for it??
-
label problem in c#hey guys,.. i am doing my mini project in c# windows form application .. in that i used a label like Label a=new Label(); a.Text="&"; MessageBox.Show();//its showing blank message box Can anyone knows solution for it??