Search results for query: *

  1. P

    Question how to ensure about sending multiple serial data from server to client

    My program is divided into two parts , a server and a client. when the client connects to the server , At this time, the server should send numbers 1 to 10 to the client. but only one or two first number is send. this is the variables : Dim pClient As TcpClient Dim Listener As TcpListener Dim...
  2. P

    Question change the border color of a label after running the program

    Ok , i got it .... Anyway ...... Thanks
  3. P

    Question change the border color of a label after running the program

    Hi friends There is two control in my form,a label and a button , i want when i click the button ,the color of label's border change. Thanks
  4. P

    Question problem with closing the dialog when passing DialogResult.Ok

    hi there is a button on my main form . when i click it ,my message form (dynamically is created and content a TableLayoutPanel with a label and a button "Ok") will display . the problem is : when i click "ok" button (for first time) nothing is happend . but for 2th time i click , then the...
  5. P

    Question exe file created with visual studio 2008 stop working in windows 10

    hi I created a program (named acounting) with visual studio 2008 and then I created a setup file (my pc's OS is windows 7 ultimate service pack 1) .this setup file is work on main computer perfectly , but if I install this setup on the other pc (os is windows 10 home) after installation , when...
  6. P

    Question changing the value of a calumn in a DataTable with expression

    Thanks I test your way just now , but ColumnChanged or ColumnChanging events don't occur when an expression set for column. This is the list of events that I test : 1-DataTable.ColumnChanging 2-DataTable.Column changed 3-Dgv.CellValueChanged
  7. P

    Question changing the value of a calumn in a DataTable with expression

    Hi friends Is there any way (something like event) to find out changing the value of a column that expression property set for it.
  8. P

    Question unable to update DataTable when AllowUserToAddRows property is false

    Thanks , the problem is solved , by using Row.EndEdit
  9. P

    Question unable to update DataTable when AllowUserToAddRows property is false

    Hi There is a DataGridView in my form with a DataTable as a DataSource . This DataTable is linked to a DataBase. I set the AllowUserToAddRows property to false , so when I run the program there is no any row in dgv . I use the code below to add new row : MyDataTable.Rows.Add() So a new row add...
  10. P

    Question form's titlebar changes in right to left language

    hi in my program i set this changes for MainForm(because of general operating program language) RightToLeft=Yes RightToLeftLayout=True the main part of form is ok , but (as you know) with this setting ,in the title bar the position of formText and control box is changed.this is my unwanted...
  11. P

    Question create a control (like textbox or button) with different base

    hi in right to left Languages we must align controls from right in a form . (Specially , the problem appear in dynamic control creating) . generally , controls put on form from its base (left corner of control) . is there a way to create a control with right corner base?
  12. P

    Question List all math function (include in math class) in a listbox or combobox

    hi how can i list all math functions that are collected in math class into a listbox or combobox?
  13. P

    Question problem in set focus on a dynamic textbox

    thanks... you're right . but suppose the number of textbox is not specify. in this case please answer my question.
  14. P

    Question problem in set focus on a dynamic textbox

    hi friends i have 2 form on my project.in the secend form has this controls : 1- 5 textbox that add to form at runtime (TextBox(1) , TextBox(2) , .... ) 2- 2 button that add at design time (Button1 and Button2) i set button1 as AcceptButton property for the form. now i want each time the form...
  15. P

    Question problem with save message on Exit from excel

    thanks ... so it's the best method?
  16. P

    Question problem with save message on Exit from excel

    hi friends sorry if this is a wrong forum. i create a program that open an excel file and i can programatically edit that. after editing , when i want to exit from excel , a message appear about existing a file with this name and choice replacing or not.how can i prevent appearing this message.
  17. P

    Question use 5 datatable from a dataset in an expression of a datatable

    hi there is 6 datatable in a dataset . i want to add 5 datatable's column' values in an expression of sixth datatable.i know how can i use one datatable ... but 5 datatable ... i dont how. please guide me.
  18. P

    Question question about relation and expression in dataset

    hi i have a dataset with10 datatable . can i specify an expression for a datatable that refer to columns of all other 9 tables. i know that first i must define relation between tables.but i dont know which model of relation. please help me about it.
Back
Top