|
Does the PDF viewer in the web application, not have a save or save as option?
Henry Minute
Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”
|
|
|
|
|
Hi all!
I am running one exe, and this is shown in the task manager
I dont wanat to kill that process anymore, so i would like to attach that exe process
with any one of the existing process !
pls some one can.... help me !
thanks .
Regards
Jack
|
|
|
|
|
Your query makes no sense. Also, which part of this question has anything to do with C#? Are you wanting to inject your code into another PE file? Are you wanting to create a thread in the context of a different process? You want to terminate an application? JUST WTF?!
Read the guidelines[^]
It is a crappy thing, but it's life -^ Carlo Pallini
|
|
|
|
|
Can u describe it what is your problem.
If you can think then I Can.
|
|
|
|
|
I have created a watchdog in C#, which monitors a particular agent
When the user try to kill the agent from the task manager then the Watchdog starts the agent once again
problem:
How to disable or not allow the user to kill that watchdog ?
so i thought of attaching the watchdog with existing process so that the user can not find out, because watch dog does not run with seperate process name.
Example:
When we install Nokia PCSuite 6.84.10.3, it does not run with sperate process rather runs with explorer.
so can we also attach the watchdog with any one of the existing Process.
OR is there any other way to protect killing the watchdog from task manager!
thanks ...
Regards
.....Jack
|
|
|
|
|
|
Please tell me how to store datareader values in a array in windows application.
|
|
|
|
|
Try doing some research[^] before asking a question
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
load()
function load()
{
window.open('http://www.baziran.com')
}
ffdsf
load() <script type="text/javascript">
function load()
{
window.open('http://www.baziran.com')
}
</script>
<b>ffsdfsdfsdfds</b>
|
|
|
|
|
load()
function load()
{
window.open('http://www.baziran.com')
}
ffdsf
load() <script type="text/javascript">
function load()
{
window.open('http://www.baziran.com')
}
</script>
<b
|
|
|
|
|
load()
function load()
{
window.open('http://www.baziran.com')
}
ffdsf
load() <script type="text/javascript">
function load()
{
window.open('http://www.baziran.com')
}
</script>
|
|
|
|
|
load()
function load()
{
window.open('http://www.baziran.com')
}
ffdsf
|
|
|
|
|
What is this? what u want to ask?
Put up your question in proper manner.
ok
If you can think then I Can.
|
|
|
|
|
Hey. Here's not a place to advertise your website. People learn things here. Stop spamming.
"I hope you live a life you're proud of. If you find that you're not, I hope you have the strength to start all over again." - I wish I knew who is this quote from
|
|
|
|
|
Hi hamed.
Are you OK ?
What would you want to ask ?
|
|
|
|
|
load()
function load()
{
window.open('http://www.baziran.com')
}
|
|
|
|
|
Hello,
i have a little decision-problem
I create a new server-application which works together with client-applications. The Server-Application must manage the users, which are signed in and are online. So... how should i save this informations? Is it better to store it in the RAM (i make a List<onlineusers> where the Classes with the UserInformations are in there), or should i better save them in a DB, where i have the passwords and so on too? My Problem is, i don't know how many users will use this client-application! There could be 100 users or 10 000 users!
But this wouldn't be the problem, the big problem is, that this server only exchange user-informations, and so if i have maybe 10 000 users and a lot of users asking for informations about other users i could get in trouble if i have the data in the RAM (maybe not enough RAM?) and if i have it in a DB i have a very big HardDisk IO! The TCP-Connections at last i MUST store in the RAM of course, so anytime i need informations in the RAM about my Users...
So, has somebody any idea which technique i should use to get the best performance out of it?
Many Thanks
|
|
|
|
|
softwarejaeger wrote: There could be 100 users or 10 000 users!
Well, first you need decide or collect information about the scope of your application.
Every application is designed according to certain breakpoints keeping in mind.
softwarejaeger wrote: So, has somebody any idea which technique i should use to get the best performance out of it?
In any case, SQL Server is quite fast and if you say that your user base can grow upto 10000, it would be wise to use the standard approach and let SQL Server do what it does the best.
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
|
|
|
|
|
hi,
i want to receive all emails from my account.
just like i Retrieve From,To,Subject,Body in DataTable
Is it Possible ? in Codes.
|
|
|
|
|
|
Where do you get these things?
Category: Standards Track May 1996
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
HI
In my windows application i am creating a registration form..
after registration i want to display the register number in Label Cntrl from database(MSSQL2005)...
i tried this but not working
SqlConnection con = new SqlConnection("server=AAB;database=ab;uid=sa;pwd=pass");
con.Open();
SqlCommand cmd = new SqlCommand("insert into myTable values ('"+textBox1.Text+"') ", con);
SqlDataReader dr = cmd.ExecuteReader();
while (dr.Read())
{
label1.Text= dr["id"].ToString();
}
dr.Close();
Thankx in advance
|
|
|
|
|
Problem I traced is
1) The SQL Command is "INSERT" instead of select command. Insert Command insert data into tables and return the number of records inserted.
2) DataReader returns object. You have to convert the same into the data type you want eg. code
{
object obj = dr.read();
Convert.ToString(obj);
}
SO YOUR REQUIRED CODE SHALL BE LIKE FOLLOWS
----
SqlConnection con = new SqlConnection("server=AAB;database=ab;uid=sa;pwd=pass");
con.Open();
SqlCommand cmd = new SqlCommand("SELECT * FROM myTable", con);
SqlDataReader dr = cmd.ExecuteReader();
while (!dr.IsDbNull())
{
Object obj = dr.Read();
label1.Text= obj.ToSring();
}
dr.Close();
---
try and reply.
modified on Saturday, May 30, 2009 4:09 AM
|
|
|
|
|
Thank you Prasanth it works
|
|
|
|
|
hi i want to code a project that can view all available printers (physical or not) or network printers and can show all print jobs and any information that can be show like number of copies users name printer name and .. i search for it but some cases the program info wrong information please help me any information can be helpful thanks a lot HN
|
|
|
|