16,020,103 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 Visual Basic questions
View Javascript 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 rajeeshsays (Top 15 by date)
rajeeshsays
31-Jul-14 8:56am
View
Which data type is suitable to show the second part also.Please update me
rajeeshsays
11-Jun-14 12:36pm
View
My heartfull thanks for this replay.My prayers
rajeeshsays
11-Jun-14 12:08pm
View
I have tried with the code suggested by you,it dialog box doesnt open when the page is loaded that was my first problem it solved thanks for that ,but when the button is clicked dialog box is opened and suddenly closed,it is closed automatically I need it be stayed open until I close it
rajeeshsays
17-Mar-14 10:57am
View
here the commented line of code is the actual way of passing parameters to sp in our project ,
here database variable and connection ,transaction are made of DataBaseFactory .pls resolve this problem
rajeeshsays
17-Mar-14 10:54am
View
public void UpdateTollTransaction(Database db, DbTransaction transaction,DataTable dtFleetRegOwnRequest)
{
Utilities.InfoLog.Debug("Entry");
SqlCommand com=new SqlCommand("HTA.up_UpdateTollTransaction");
com.CommandType = CommandType.StoredProcedure;
//com = db..GetStoredProcCommand("HTA.up_UpdateTollTransaction");
//var command = db.GetStoredProcCommand("HTA.up_UpdateTollTransaction");
var DailyTollParam = com.Parameters.AddWithValue("@DailyToll", dtFleetRegOwnRequest);
DailyTollParam.SqlDbType = SqlDbType.Structured;
var HtaParam = com.Parameters.AddWithValue("@HtaFileId", FileId);
HtaParam.SqlDbType=SqlDbType.Int;
//db.AddInParameter(command, "@HtaFileId", DbType.Int32, FileId);
//db.AddInParameter(command, "@TollFlag", DbType.Boolean, TollFlag);
//db.AddInParameter(command, "@TollTransactionId", DbType.Int32, TollTransactionId);
//db.AddInParameter(command, "@DailyToll",SqlDbType.Structured, dtFleetRegOwnRequest);
com.CommandTimeout = Utilities.TimeOut;
Utilities.InfoLog.Debug("Executing StoredProcedure " + com.CommandText);
if (transaction != null)
{
db.ExecuteNonQuery(com, transaction);
}
else
{
db.ExecuteNonQuery(com);
}
Utilities.InfoLog.Debug("Exit...");
}
rajeeshsays
11-Mar-14 8:29am
View
Hearty thanks for your responsible replay
rajeeshsays
11-Mar-14 8:12am
View
var tollList = objReqTollTrans.GetTollTransaction(db, null);//here the temperoy table is created,when we press the F10,it goes to the below line ,and as soon as it reaches the below line,it temperory table is lost
var fleetList = new FleetInfo().GetFleetInformation(db, null);
rajeeshsays
24-Jul-13 5:31am
View
Thank Mr.Kim Togo
rajeeshsays
24-Jul-13 5:30am
View
Solution 1 is good. I could run my program properly by add this line of code
rajeeshsays
12-Jul-13 7:46am
View
this is my code
can you please tell what is wrong with it?
rajeeshsays
12-Jul-13 7:45am
View
private void AddValue()
{
this.Invoke(new Action(() => comboBox1.Items.Add("Hello from Thread")));
//comboBox1.Items.Add("hai");
}
private void Form1_Load(object sender, EventArgs e)
{
MessageBox.Show("Current Thread" + Thread.CurrentThread.Priority);
}
private void button1_Click(object sender, EventArgs e)
{
Second = new Thread(new ThreadStart(this.Invoke(new Action(() => comboBox1.Items.Add("Hello from Thread"))););
Second.Start();
}
rajeeshsays
26-Jun-13 3:13am
View
Thank you for help ,But I have a restriction that I cannot add a parent group for that purpose
.But I found the solution
rajeeshsays
10-Sep-12 22:50pm
View
Dear Sandeep Mewara,first of all thank u for your help till now.I am freelance programmer i have no one to get a help,I have opened the crystal report using this process.start but ,it gets opened in MS word and in encrypted form too.this is the only problem to finish my project,could you please help me totally
rajeeshsays
10-Sep-12 22:43pm
View
Dear Sandeep Mewara,first of all thank u for your help till now.I am freelance programmer i have no one to get a help,I have opened the crystal report using this process.start but ,it gets opened in MS word and in encrypted form too.this is the only problem to finish my project,could you please help me totally
rajeeshsays
9-Sep-12 19:11pm
View
can you please tell me how to code it? I didn'nt come across process.start
Show More