Hi I've to transmit live video 4m Server to multiClients and I m working in C#,using UDP and capturing video from webcam in .avi format.Some1 suggested me to...
Hello everybody, Can anyone help me in displaying a Balloon ToolTip for my application,is it possible to customize position of Balloon, i also need the Balloon...
Hi, I wanted to write a web service that will monitor whether the database is up(running) or down in different servers located at different machines. Im new to...
Hi everybody, DataAdapter class in .NET 2003 only have provisions for INSERT, SELECT ,UPDATE and DELETE commands through its InsertCommand, SelectCommand,...
Hi everybody, OleDbDataAdapter class in .NET 2003 only have provisions for INSERT, SELECT ,UPDATE and DELETE commands through its InsertCommand, SelectCommand,...
I'm looking for a solution for the following: I have a SQL server database with a table, containing fields itemID, Colour, shape, weight, quantity. Colour and...
I am trying to invoke a vpn connection using code, I found an article that is using the following code Process.Start(VPNPROCESS," -d " + _VPNConnectionName) ...
Hi All, The below sample code is working fine in web application. string str; str=getInt(CheckBoxList1.Items[i].Value); // here getInt is function but forget...
Dear All, I am using desktop application developed in .NET 1.1. Application requests opened hardware channels to get the data, processes that data and inserts...
Are your threads using some sort of thread synchronisation? Is there a chance that threads are blocking waiting for some resource or lock, and so missing some...
The CheckedListBox control maintains 3 collections that are: All the items in the CheckedListBox Checked items (including ones that are 'indeterminate') ...
Thanx Jasmine and Matt for replying.. @Jasmine Well, I had said that I am using Oracle 9i as my database and u have given ur suggestion based on SQL Server...
This likely is not a performance issue. It's more likely to be a bug. Performance would cause the application to slowdown or hang, it shouldn't cause events to...
can u help me in some coding ..im working in C sharp and my interface inclde 3 text fields and 2 buttons namely Submit and ADD MORE TASKs. what i need is that...
Hi, Waht application wat that Desktop or web application ? Let me know. It HTML it can be donw as: And you send the noOfRows in that table as query string. So...
Hi Friend, I am filling the CheckedListBox from a particular table based on ComboBox selection.I am geeting the data in CheckedListBox as soon as i select...
Where your code'll run ? web or application ? Wiltek Ghozali www.ImperiumSolution.uni.cc www.armada-it.com ... From: CSharpNET@yahoogroups.com...
Wiltek
Wiltek_g@...
Oct 5, 2007 1:36 pm
17050
Zubi, there are properties of any controll you put on the form, DoubleClikc on the button on which on want to add an action.in its onClick event do the...
I have an asp.net application that calls Process.Start(); to control the VPN connection, the problem is that it works fine while I am running it from visual...
Hello everyone, I have this code for TCPListenPort. The code works fine, but my manager is asking me to establish multiple connections to the same port. How ...
... From IIS, your application invoke the Process.Start with insufficient privileges.. try to exec the application pool with your credential, not with ASP_NET...
Hi, I have 3 froms namely, login form,Menu form and Index form. When i login frm login form then Menu form opens but login form remains exist. How i can close...
Hi , When i use below code ,it works fine in web application int counter=0; CheckBoxList1.Items[counter].Selected = true; How can i write the same code if i...
Dear Wasim. in the login form after showing the menu form write that: login.close(); or if the login form is the base form: login.hide(); Wasim Wasim...