Click here to Skip to main content
Page 1 of 4
Page Size: 10 · 25 · 50


Author filtered by: rk_prabakar [x]
Answer 14 May 2013   license: CPOL
Hi sai sagar,I would suggest an idea to implement your idea,Declare isError = false variable.Whenever you validate the control, at that time set isError = true even if a single validation is failed.While clicking save button check whether isError , if it is true then it should throw...
Answer 14 May 2013   license: CPOL
Hi nandkishore,Try using distinct keyword to remove duplicates from the table.likeSELECT DISTINCT(Name),ID FROM tablenameI hope this could help you out.Regards,RK
Question 9 May 2013   license: CPOL
Hi Friends, Am trying some basic concepts in OOPS using console application.I have two classes namely program.cs and Abstractsample.cs. Initially Program.cs is having a entry point to the project, that is start up project.Now I want to change the entry point for the project that is...
Answer 9 May 2013   license: CPOL
Hi Code-Hunt,I believe you have selected the text property instead of "Password" propertyTry this linetxtAdminPass.Password = dt.Rows(0)("AdminPass").ToString()txtAdminConfirmPass.Password = dt.Rows(0)("AdminConfirmPass").ToString()It would help you to resolve the...
Answer 9 May 2013   license: CPOL
Hi,You can try google it.I've done and found something for you.I hope it would help you a betterC# code for Website Backlinks[^]Creating a “Backlink Checker”[^]Regards,RK
Forum Message 9 May 2013  
Function xyz() needs to call using object like this in main functionDemo obj1 = new Demo(); obj1.xyz(); Thanks and Regards, RK_PRABAKAR
Re: Programm Issue by rk_prabakar
Forum Message 9 May 2013  
Good finding,if the object is not instantiated it will throw "An object reference is required for the non-static field, method, or property 'InterfaceSample.Demo.xyz()" error.
Forum Message 8 May 2013  
What a way to understand Interface :-D Thanks and Regards, RK_PRABAKAR
My vote of 5 by rk_prabakar
Forum Message 8 May 2013  
Precise with simple programs for intermmediate. My 5!
Answer 3 May 2013   license: CPOL
Hi Ashok,Try this link[^]and this link[^]I hope this would help you out.Regards,RK
How To Clear Text Box by rk_prabakar
Answer 1 May 2013   license: CPOL
Hi ErBhati,I feel that you have enabled Autofill option in your browser. Try disabling that option or try it another browser.If it didnt try removing the cache from your browser.Hope this would help you out.Regards,RK
Answer 1 May 2013   license: CPOL
Hi Rekhash,Try this Link[^]This would give you a solution for your error.Regards,RK
Forum Message 30 Apr 2013  
;P Thanks and Regards, RK_PRABAKAR
Answer 30 Apr 2013   license: CPOL
Hi Sudha,I hope this link[^] would help you a bit. This gives a demo on how to implement booklet to your application.Regards,RK
Answer 30 Apr 2013   license: CPOL
Hi,I hope this link[^] would help you a bitGoogle would suggest you more solutions for your queries. ;-)Regards,RK
Answer 30 Apr 2013   license: CPOL
Hi,You can even extend timeout value for specific function in cs file also.SqlCommandObject.CommandTimeout = 500000;It might work out for you.Regards,RK
Answer 30 Apr 2013   license: CPOL
Hi Swetha,I hope this link would help you a bit.Concatenating two string columns in a DataTableRegards,RK
Answer 29 Apr 2013   license: CPOL
Hi footballpardeep,Why you didnt ask google about it? I hope this link[^] would help you a bit.Regards,RK
Answer 29 Apr 2013   license: CPOL
Hi Asit,I hope this link [^] would help you a bit.Regards,RK
Answer 29 Apr 2013   license: CPOL
Hi Wajid,I worked on the same task earlier and I am pleased you asked this question here....You can refer this Link[^] for sample code.I hope this would help you a bit.
Answer 29 Apr 2013   license: CPOL
Hi saimm,I hope assigning returning object to another object would resolve the issue.Try the below code. Customer c2 = new Customer(); c2= GetCustomer("18-020-00000005");But why in the earth you are passing that string value to GetCustomer() function ;-)Regards,RK
C#
Answer 29 Apr 2013   license: CPOL
Hi saimm,Try to call GetCustomer function using data binding, I mean to say try thisprivate void button1_Click(object sender, EventArgs e){Customer c2= new Customer();c2.GetCustomer("18-020-00000005");textBox1.Text = c.Name;}I hope this would help you a bit.Regards,RK
C#
Answer 29 Apr 2013   license: CPOL
Hi Rajendran,I hope cause validation property in the button control is making this weird things to happen.Try refering this linkLink[^]Once you clicked validation is set to true so it is allowing to work on the second click I believe.Regards,RK
Answer 29 Apr 2013   license: CPOL
Hi Ramu,I am glad that you are trying MVC. I am also like you when I tend to learn MVC at first.Validation in MVC can be done in two ways as I know 1) Using Model class http://msdn.microsoft.com/en-us/library/dd410404(v=vs.90).aspx[^]2) Without using Model classTry this...
Answer 29 Apr 2013   license: CPOL
HiI Hope this might help you a bit.http://www.dynamicdrive.com/forums/showthread.php?15473-How-to-disable-popup-blocker-by-using-javascript[^]Regards,RK
Forum Message 29 Apr 2013  
I'd love to play game. Sometime I admire how these people are making games :omg: Its always lovely job to play game and get paid for it. :laugh: :thumbsup: Game developers:thumbsup:
Answer 23 Apr 2013   license: CPOL
Hi Aravindba,I have implemented the same in my project once, It reminds me once you asked this question,will paste my code for you here so that you can make use of it in your code.container.find("#btn_CollapseAllPennyTests").unbind("click").click(function () { ...
Answer 23 Apr 2013   license: CPOL
Hi Ronnie,I hope this would help you http://networking.ringofsaturn.com/SQL/sql-search-stored-procedures.php[^]http://stackoverflow.com/questions/5079457/how-do-i-find-a-stored-procedure-containing-text[^]
Question 23 Apr 2013   license: CPOL
Hi Friends,I want to ajax poll the call to method to get data.This is the ajax call back, I need to auto poll the call for every 3 secs $.ajax({ type: "POST", url: "Default.aspx/getPak", data: "{}", ...
Answer 19 Apr 2013   license: CPOL
Hi Folks,I tried the same and accomplished the same.For each and every click it should append 3 more chars to the text box only for visual purpose.With thatprivate void textBox1_KeyUp(object sender, KeyEventArgs e) {//Records each and every key stroke and stores in temp...
Great walkthrough. by rk_prabakar
Forum Message 18 Apr 2013  
:thumbsup:Good walkthrough for beginners like me.:thumbsup: Cheers...!!! expecting a lot from you in this COM ATL :rolleyes: Thanks and Regards, RK_PRABAKAR
Question 17 Apr 2013   license: CPOL
Hi Friends,I created a sample application in VC++ with two constructors....class CFirst_ATL{public: //Default constructor CFirst_ATL() { Num1 = 10; Num2 = 5; } //Parameterized constructor CFirst_ATL(int val1,int val2) { Num1 =...
Re: My vote of 4 by rk_prabakar
Forum Message 17 Apr 2013  
Welcome Jayanta :) Thanks and Regards, RK_PRABAKAR
Answer 17 Apr 2013   license: CPOL
Hi Arbaaz,You may use F10 key to skip step into code while debugging.F10 works similar to F11 but it wont step into functions.I hope this might help.With regards,RK
Forum Message 16 Apr 2013  
makecert -pe –n "CN=CertServer" –sr localmachine –ss my –sky exchange -b 01/01/2012 -e 06/06/2012 makecert -pe –n "CN=CertClient" –sr localmachine –ss my –sky excha
Re: My vote of 1 by rk_prabakar
Forum Message 16 Apr 2013  
I could not get your point :wtf: , in my trick I tried to make invisible virus infected files to visible in explorer. I am not even worrying about system files. Thanks and Rega
Question 16 Apr 2013   license: CPOL
Hi friends,I created a sample dll using VC++ and referenced the dll in to my C# application.Application works fine as expected. What i want to know is, I want to debug the referenced dll through my C# application.Is it possible? then how? If it is impossible, please give me the...
Tip/Trick 16 Apr 2013   license: CPOL
Unable to view virus affected folder & files in pen drive[usb]
DOS
Answer 15 Apr 2013   license: CPOL
I think, in onClick event you have called onclick="Button2_Click1"but there is no definition for the same.So by changing the onClick event to onclick="Button2_Click" might work for you.
Question 16 Jan 2013   license: CPOL
Hi all, My friend planned to do a course in Sharepoint, he asked me about it.I dont have any idea about the sharepoint except I used it sometimes.So i suggested not to depend on it, instead do a course in .Net.Then only i thought here is the right place to ask this one, so i came...
Wierd resolution ! ! ! by rk_prabakar
Forum Message 3 Jan 2013  
My resolution for the year 2013 is to never ever take any resolution ;P Thanks and Regards, RK_PRABAKAR
Answer 11 Dec 2012   license: CPOL
Using Javascript I achieved this successfully.I place my code, so that you may alter if u want $(function () { /// var mappedField = $("#__MappedFields"); $("#frmCmpr").dialog({ height: 721, ...
MVC
Answer 11 Dec 2012   license: CPOL
Finally I found something about it. Actually the COBOL program is compiled and then it is binded at last into a single executable file. Object files and libraries are binded into a single executable file is termed as binder in Mainframe it seems.
Question 10 Dec 2012   license: CPOL
Hi Friends, I want to know the concept of Binder or Linkage editor in Maniframe. As I am new to this, I've googled a lot. But I ended up with nothing.Any tips will be greatly appreciated.Thanks in advance.
Answer 4 Dec 2012   license: CPOL
Hi Kirthika,Try using LinqToExcel library. I've tried in MVC, it works fine in MVC. I dont know about PHP. So try this open source library and let me know.You can download the library in here[^]Hope this could help you.
Answer 27 Nov 2012   license: CPOL
Hi Shamina,As I am also using VC++, SQL Server 2005 for my project, I too installed in my Windows 7 ultimate only.I hope there will be no issues installing the applications.So just go ahead and install the softwares.............!!!!Happy installing
Question 27 Nov 2012   license: CPOL
Hi Friends,I am using Flowlayout panel in c# to display list of images dynamically.Images are displaying as well. Images count may vary, which is known only on run time. Here is what I want.....1) Need to know, in Flowlayout panel, which image is clicked by the user?2) Then...
Question 20 Nov 2012   license: CPOL
Hi all,I want to create a folder lock application in C#, i'll give my requirements,please suggest me some idea to develop the application.Requirements:1) Application should lock the folder but should not hide the folder from display.2) Application should run in background, whenever...
Question 19 Nov 2012   license: CPOL
Hi all,I want to create a windows form, which should not have casual rectangular in shape.Instead it should have the Shape[^]I tried to create ellipsis shape for my window and succeeded by using the below code snippetGraphicsPath path = new...
Re: I Hate by rk_prabakar
Forum Message 19 Nov 2012  
:thumbsup:Cheers buddy.....!!! Thanks and Regards, RK_PRABAKAR

Page 1 of 4
1 2 3 4


Advertise | Privacy | Mobile
Web04 | 2.6.130513.1 | Last Updated 15 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid