Hello everybody,
I want to deploy my application using 3rd party Dll's, such as DevExpress dll's.
My problem is that in my Setup project, there are the dependencies of these dll's, but when I'm trying to install my application to an other machine, my application doesn't start. It shows that has been encountered a problem etc.
But if I install DevExpress as a 3rd party application to other system, then...
User Profile
Collapse
-
Deploying in VS 2005, with 3rd party DLL's
-
Inorder printing of B-Tree
How can i print a b-tree in an in-order (serial) form??? -
Serial printing of a B-tree
I want to print the keys of a b-tree in a serial form.
How can I make it? -
Variable-length size for an array declaration.
Why on Windows we can' t declare an array with a variable for array's size?
e.g.
void func(int size)
{
int array[size];
}
On Linux systems we can do it.
Even the GCC compiler for Windows don't support it. -
First item appears selected in the listbox, after deselection.
After a deselection of all the items of a listbox, the first item appears selected again.
How can I fix it???? -
Suppose you have a Login.aspx page with that code:
protected void Page_Load(objec t sender, EventArgs e) {
if ( Session["Username"] != null )
Response.Redire ct("Admin.aspx" );
}
// after clicking the login button
protected void btnLogin_Click( object sender, EventArgs e) {
int valid = Administrator.L ogin(txtUsernam e.Text, txtPassword.Tex t);... -
Usually this error occurs when you have not being initialize an object.
Check the initialization of the object first, otherwise send me your code or
a part of your code.
Axas.Leave a comment:
-
-
What do you want to get, the value of a row from the dataTable?Leave a comment:
-
Delete from DataGrid with DataAdapter
I am writing this code:
myDataSet.Table s["WORKER"].Rows[index].Delete();
myDataAdapter.U pdate(myDataSet , "WORKER");
myDataSet.Table s["WORKER"].AcceptChanges( );
and I have this error:
"Update requires a valid DeleteCommand when passed DataRow collection with deleted rows."
What can I do??? -
Multiple records deletion from DataGrid (Desktop Application)
How can I delete multiple records from a DataGrid?
Thanks. -
Massive Record Deletion from DataGrid (Desktop Application)
How can I delete multiple records from a DataGrid?
Thanks a lot. -
-
- Set its PostBack property to true.
- Implement its SelectedIndexCh anged Event
(C#)
Code:DropDownList1_SelectedIndexChanged(object sender, DropDownListCommandEventArgs e) { // here load the other dropdownlist items }
Code:Protected Sub DropDownList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As DropDownListCommandEventArgs) Handles DropDownList1.SelectedIndexChanged
Last edited by Frinavale; Oct 5 '11, 03:19 PM. Reason: Corrected the answer. Added links to documentation. Formatted the code so that it in code tags. Added the VB.NET version of the codeLeave a comment:
-
Visual AssistX .NET
How can I add a toolbar with Visual AssistX .NET, after its installation?
Please, can anyone help me?
Thanks, axas. -
You can use the method Clear() for each control, and after that, you can load them again. For example for the object DropDownList ddl, you write:
ddl.Items.Clear ();Leave a comment:
-
Visual AssistX .NET
How can i make a toolbar with Visual AssistX .NET after its installation?
Thanks a lot... -
Visual AssistX .NET
How can i make a toolbar with Visual AssistX .NET after its installation? -
After the DataSet is full, write
comboBox.DataSo urce = ds.Tables["NameOfDataTabl e"];Leave a comment:
-
You must write
Code:string insertStatement = "INSERT INTO Clock " + "(Login, Time, Status) " + "VALUES (@Login, @Time, @Status)"; insertCommand.Parameters.Add("@Login", OleDbType.Char).Value = strLogin; insertCommand.Parameters.Add("@Time", OleDbType.Char).Value = strTime; insertCommand.Parameters.Add("@Status", OleDbType.Char).Value =
Last edited by Frinavale; Nov 19 '09, 04:30 PM. Reason: Please post code in [code] ... [/code] tags. Added code tags.Leave a comment:
No activity results to display
Show More
Leave a comment: