|
Please don't crosspost without providing more information. Can you send us a short code sample or at least tell us how you are sending data (which protocoll, which port number).
|
|
|
|
|
I have a small device to take thumb impression...
I like to store & retrive impression from database...
give me an Example Code...
|
|
|
|
|
You have not provided any question other than please give me code. Please read the FAQs as you have broken at least two of the guidelines there.
|
|
|
|
|
Hi Manisha..,
Can you provide the Manufacturer details of the Sensor.., so that i can help you.., I worked on Venus & Mercury..
Rajesh B --> A Poor Workman Blames His Tools <--
|
|
|
|
|
AA503 is the model Number of the device, thx...
|
|
|
|
|
hi, I can access my WCF sevice on the same machine by this code: net.tcp://localhost:8888/evalservice and tried to access the service from a client with this code(server name is:server2): net.tcp://server2:8888/evalservice but not successful. Can you please tell me what to do? And are there any other configuration settings that needs to be done?
Thanks,
|
|
|
|
|
Are the firewalls configured correctly?
|
|
|
|
|
Do you get any error message on why you can't connect?
|
|
|
|
|
Here is the error message:
A remote side security requirement was not fulfilled during authentication. Try increasing the Protection Level and/ or Impersonation Level
And firewall is off on both client and server
|
|
|
|
|
So on your proxy object - what kind of settings do you use on your binding?
|
|
|
|
|
Hi Calla, I solved the issue. Thanks for your interest
|
|
|
|
|
Great! 
|
|
|
|
|
Hi,
i am trying to implement cache managing using Microsft enterprise library.
I want to fetch the physical path of my file saved in cache.
i tried with reflection like this
Stream dcmStream = (IsolatedStorageFileStream)cache["key"];
string fullPath = dcmStream.GetType().GetField("m_FullPath",
BindingFlags.NonPublic | BindingFlags.Instance).GetValue(dcmStream).ToString();
It is not working. Could you help me?
My small attempt...
|
|
|
|
|
"It is not working" does not tell what the problem is.
What is it doing wrong? Is there an error message, and what is it?
|
|
|
|
|
Why are you caching a stream rather than the file itself? Why do you need the physical path of something in Isolated Storage? Sounds like you are using the wrong tools for what you are trying to accomplish.
|
|
|
|
|
Hi.
I have a User Control and i added it to my Tool Box.When you add this control to your form, user control shows a form with 1 button.
I want to click the button and one Text Box be added on the Main Form(Form1).
How can get the form in that time(from my User Control)??
This is Design time!!
Thank you.
CanI
|
|
|
|
|
Repost!
Don't post in more than one place - all you do is duplicate work and annoy people. Either post in the forums, or in Q&A. But not both.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.
|
|
|
|
|
Sorry,My connection broke and i thought it wasn't saved.
CanI
|
|
|
|
|
Fair enough - I've upvoted your question to counter the one vote.
However, you can do away with the flowers in your question (if possible) though.
The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it.
My latest tip/trick
Visit the Hindi forum here.
|
|
|
|
|
i can not understand your question .
plz provide more details
|
|
|
|
|
Hi.
Let me tell you again.
I create a UserControl .OK!.
In Load event i write this:
<pre>
private void UserControl1_Load(object sender, EventArgs e)
{
//Add Form1 to your UserControl with one Button on(button 1) it.Think we did design it.
Form1 f1=new Form1();
f1.Show Dialog();
}
</pre>
And now in that button(f1.button1) write this:
<pre>
private void button1_Click(object sender, EventArgs e)
{
TextBox textBox= new TextBox();
textBox.Text="Name";
//And now work start.
//Now i want to get the Form that you add the<b> UserControl</b> on it,Got it??The Main Form that Contain the UserControl.
//Form1 or any other name
Form1 f1=new Form1();
f1.Controls.Add(textBox);
//
}
</pre>
The question is How to get that form and throw(Add) the textBox on it!!We don't have it now!!??What a code should we write?
I hope you understand what i am telling you.
Thank you.
CanI
|
|
|
|
|
i need few demos of get post methods that will logs into any website and retrieves data from there.
|
|
|
|
|
For one sample, see here[^].
The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it.
My latest tip/trick
Visit the Hindi forum here.
|
|
|
|
|
Sonu J wrote: i need few demos of get post methods that will logs into any website and retrieves data from there.
..and what's your question?
You can find demo's both on this site and Google. I'd suggest using a WebBrowser component, since that would simplify cookie-handling.
I are Troll
|
|
|
|
|
There are several examples of this to be found in articles at CodeProject, including this[^] framework to scrape data off a website using GET or POST .
/ravi
|
|
|
|