15,997,491 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Kethu Sasikanth (Top 27 by date)
Kethu Sasikanth
2-Feb-12 14:37pm
View
Rewriting is the best option. But, another option is convert your exe to an ActiveX control. The web browser can consume ActiveX, if your client does not have issue with that!
Kethu Sasikanth
2-Feb-12 13:33pm
View
without looking into the converted .net dll it is hard to guess where could the performance be improved. Using Reflector and debug to see which chunk of code is taking so long to execute.
Kethu Sasikanth
1-Feb-12 21:58pm
View
The sql seem confusing to me. First comment out the whole sql then try just hardcoded sql. ex: UPDATE users SET Id='xx', User='yyy' where id=... If this executes correctlty then problem is in below lines otherwise the problem is in sql construction.
Kethu Sasikanth
1-Feb-12 20:38pm
View
May be the HTTP Response is complete, done its job, before thread(update label one) is finished?
Kethu Sasikanth
22-Jan-12 7:09am
View
To better understand the problem i would like to see the img tag and how you are calling showanswer.
Kethu Sasikanth
21-Jan-12 17:21pm
View
Char. is alphabet or numeric, string ex:"ABCD" or "1203"? What DB - Orcle(pl/sql) or SQL Server(t-sql)?
Kethu Sasikanth
20-Jan-12 12:15pm
View
Is PDB - Parallel Database Cluster or a simple PDB file(Program Data Base) that is created by Visual Studio?
Kethu Sasikanth
19-Jan-12 15:31pm
View
Let me understand the question - You have created a C# user control that launches the Webbrowser. Now you are trying to use the user control inside the Powerbuilder project. The PB proj has container control, OleControl, to display the C# user control. Now the Clipboard functions are not working inside the OleControl when PB proj. ran?
Kethu Sasikanth
19-Jan-12 9:52am
View
Do you have #ifdef preprocessors one for debug and another for release? If so check what is it inside.
Kethu Sasikanth
19-Jan-12 9:41am
View
Do a quick test, like i did. Comment out all other routes except the above route. Make sure UserProfileController.cs is in Controllers folder. You have not talked about the View(cshmtl) so I assume it is in proper place. Put a break point in ShowProfile method, hit-f5 and try!
If you still see a problem, let me know what exact problem is - page error, control is not going to the method or customuserName is null.
Kethu Sasikanth
13-Jan-12 14:02pm
View
It is hard to tell where the problem is. I donot think "div" is problem, script was failing somewhere in the middle. But my suggestion is while testing on FirFox, comment out lines from - "var link=.." to "}}" before newdiv.appendChild(select). Run the app and see for the results. If it is successful then uncomment one line or multiple related lines at a time then run and see which line is giving the problem.
Kethu Sasikanth
13-Jan-12 10:16am
View
You want something like : http://soraco.co/QuickLicenseManager.aspx
Kethu Sasikanth
12-Jan-12 13:29pm
View
Try unsafe in c#. I have seen samples getting data pointers using unsafe, but i think it's possible to get a function pointer too.
Kethu Sasikanth
12-Jan-12 13:10pm
View
i'm sorry not being clear on my answer, cd->ks1 =ks1; you cannot do this because it is going to cross into another boundary (may be a thread or process) so better new(create in heap) it or do = operator overload to assign the values.
Kethu Sasikanth
12-Jan-12 11:40am
View
Use IsPostBack and handle the postbacks appropriately.
Kethu Sasikanth
12-Jan-12 11:37am
View
You can also try at http://forums.infragistics.com/ to get quicker answer
Kethu Sasikanth
11-Jan-12 21:45pm
View
It is good run the MS Visual Studio XX ASP.NET/C# samples and see how the data is presented before coding the real project. This teaches control behavior, and appropriate place to place code - client side (javascript) or server side (C#).
Kethu Sasikanth
11-Jan-12 15:22pm
View
Do you want to control the scrolling of 2 list boxes using one scroll bar? What about the "differences" you are talking about, what do you mean by that?
Kethu Sasikanth
10-Jan-12 20:21pm
View
If the Dispose() call is mandatory then the class documentation should indicate that. The Dispose() is not language feature but the garbage collection is. But I have seen some people coding [myObj.Dispose(); myObj=null;] for any object instance. I donot admire or criticize or comment but I check whether coding of the task is complete or not.
Kethu Sasikanth
10-Jan-12 14:53pm
View
1) in first readInput() you read data into "data" vector but it was not cleared for next use by readInput("1.csv")
2) close the file stream using fclose() before it is used again.
Try these two. All the best.
Kethu Sasikanth
9-Jan-12 21:53pm
View
You would like to use word at client side and server side also (to save word doc). I'm not 100% sure about the solution. But you can try Open XML format for this. Also placing data items at bookmark location was done using a mailmerge feature in the past.
Kethu Sasikanth
7-Jan-12 21:56pm
View
method signature tells it is non-static. But in above it is a static call, idUserInterface::FindGui(). I just skimmed the code in UserInterface.cpp
class name: idUserInterfaceManagerLocal.
you may have to do something like
idUserInterfaceManagerLocal obj = new idUserInterfaceManagerLocal();
obj->FingGui(..). The idUserInterfaceManager is an abstract base class to idUserInterfaceManagerLocal.
Also, I could not locate idUserInterfaceManagerLocal() default constructor. It is possible that the idUserInterfaceManager* pointer is returned by some extern C method.
Kethu Sasikanth
7-Jan-12 17:40pm
View
$('btnSend').. selector has a problem. It should have been $('.btnSend') if btnSend is class OR $('#btnSend') if btnSend is ctrl id.
Kethu Sasikanth
7-Jan-12 9:08am
View
check if txt_prodname_TextChanged event is causing the problem
Kethu Sasikanth
6-Jan-12 18:05pm
View
Deleted
I'm trying to show how to set up an initial value to a DropDownList control in MVC with a simplest example. I have no where, above, talked about the architecture or the best practices.
Kethu Sasikanth
5-Jan-12 22:15pm
View
check the validation javascript function() return value if it is populating the textbox.
Kethu Sasikanth
5-Jan-12 21:18pm
View
In ASP.NET web app., you can use Graphics class to generate the image in runtime.
Show More