15,746,302 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 Javascript questions
View C++ questions
View Python questions
View Java 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 raghunath sahoo (Top 8 by date)
raghunath sahoo
16-Apr-15 7:53am
View
I have 24 columns. If I use Print functionality of the data table, then I see 24 columns in the print preview. I do not need 4 columns from end. So once I click on Print i should be able to see 20 columns.
raghunath sahoo
26-Nov-14 7:13am
View
Please can you explain??
raghunath sahoo
14-Nov-14 5:25am
View
Thanks it helped..
raghunath sahoo
30-Oct-14 2:57am
View
function viewHDR(taskId)
{
$.ajax({
type: "POST",
url: "mmtasks_update_task.php",
data: {
task: taskId,
type: "view_hdr_rep"
},
success: function(dataRetrieved) {
alert(dataRetrieved);
//The dataRetrieved is the HTML i am getting back. If I show it in the same page the UI is fine. The CSS and jQuery library gets linked. But I need to show data in a separate new tab. Need jQuery code to show it in new tab and also with the CSS of the parent.
}
});
}
raghunath sahoo
28-Oct-14 10:35am
View
Project:
< exp2://Ticket/18918617>
raghunath sahoo
28-Oct-14 10:35am
View
Project:
<exp2: ticket="" 18918617="">
Here I need to show the Project in the bold. It is not happening?
raghunath sahoo
20-Oct-14 9:04am
View
Ya will provide a dummy code snippet,
function priorityList() {
global $form_priority;
echo "<select name=\"priority_edit\" id=\"priority_edit\" class=\"select-list\">";
if ("1"== $form_priority) {
echo "<option value='1' Selected>1</option>";
echo "<option value='2'>2</option>";
echo "<option value='3'>3</option>";
echo "<option value='4'>4</option>";
echo "<option value='5'>5</option>";
} else if("2"== $form_priority) {
echo "<option value='1'>1</option>";
echo "<option value='2' Selected>2</option>";
echo "<option value='3'>3</option>";
echo "<option value='4'>4</option>";
echo "<option value='5'>5</option>";
} else if("3"== $form_priority) {
echo "<option value='1'>1</option>";
echo "<option value='2'>2</option>";
echo "<option value='3' Selected>3</option>";
echo "<option value='4'>4</option>";
echo "<option value='5'>5</option>";
} else if("4"== $form_priority) {
echo "<option value='1'>1</option>";
echo "<option value='2'>2</option>";
echo "<option value='3'>3</option>";
echo "<option value='4' Selected>4</option>";
echo "<option value='5'>5</option>";
} else{
echo "<option value='1'>1</option>";
echo "<option value='2'>2</option>";
echo "<option value='3'>3</option>";
echo "<option value='4'>4</option>";
echo "<option value='5' Selected>5</option>";
}
echo "</select>";
}
here i get the desired result, but it gets lengthy if the options are large.
raghunath sahoo
3-Apr-13 11:14am
View
tchar* to string^ to be specific.
Lets say TCHAR* name = L"Hello";
So for my CLR implementaion I need it to convert it to String^. I have found a solution to convert from string to String^. If any body can provide me the solution to convert from TCHAR* to std::string atleast?
Show More