Search:

Type: Posts; User: nader

Page 1 of 13 1 2 3 4

Search: Search took 0.14 seconds.

  1. Replies
    1
    Views
    835

    Problem visual studio with windows seven

    I use windows 7 server pack1.
    I tried to instal visual studio. VB. It showed message mistake and did not accept to instal. And tried to execute exe program designed on Vb2008.net connection with DB...
  2. Re: [RESOLVED] Can someone recomend me a sit for freedownload icon

    Thank you for help
  3. Re: Can someone recomend me a sit for freedownload icon

    Is there another site please.?
  4. [RESOLVED] Can someone recomend me a sit for freedownload icon

    Can someone recomend me a sit for freedownload icon
  5. Re: How to set color to columnheadr of DataGridView manually

    I did that
    I set the propeety EnableHeadersVisualStyle = false
    Then I use the BackColor in ColumnsHeadrsDefaultCellStyle
    And it succeed. Because if the property EnableHeadersVisualStyle = true...
  6. Re: How to set color to columnheadr of DataGridView manually

    I tried this two properties : and did not success

    Columns >> DefaultCellStyle >> backcolor
    ColumnsHeadrsDefaultCellStyle >> BackColor
  7. [RESOLVED] How to set color to columnheadr of DataGridView manually

    How to set color to columnheadr of DataGridView manually
  8. Replies
    4
    Views
    985

    Re: What is the item CodeFile.cs ?

    For what it is useful
  9. Replies
    4
    Views
    985

    What is the item CodeFile.cs ?

    What is the item CodeFile.cs. and for what using ?
  10. Replies
    10
    Views
    2,160

    Re: How to print number in textBox

    Simply : the textBox in C# do not accept the number only after convert to string. VB accept the numbers
    Here is the way C# :

    int num1,num2,sum;
    num1 = int.Parse(textBox1.Text);
    num2 =...
  11. Replies
    10
    Views
    2,160

    Re: How to print number in textBox

    More clearly please
  12. Replies
    10
    Views
    2,160

    Re: How to print number in textBox

    That is mean textBox do not accept number in C#, contrary VB.
  13. Replies
    10
    Views
    2,160

    Re: How to print number in textBox

    Error:

    Text is property of string ..so i tried to find property for number.
  14. Replies
    10
    Views
    2,160

    [RESOLVED] How to print number in textBox

    Print string in textBox succeed
    textBox1.Text = "hello"

    I tried this to print number :
    textBox1.Text = 123
    It showed me error
  15. Re: Searching for a file setup C# express edition

    Thank you for help:)
  16. Re: Searching for a file setup C# express edition

    The reason is i want the setup to download on another PC. Because the internet is bad and there is no internet on that PC.and I am using mobile to connection with internet
  17. [RESOLVED] Searching for a file setup C# express edition

    I have a file of setup for Visual basic 2008 express edition. I am seraching on the net for file setup C# express edition. But i found only to do2nload directly from net. Some help to find the setup...
  18. [RESOLVED] Convert exe to apk. Is that possible

    Is that possible to convert the file that i creat on vb.net from extension exe to apk to work on the android
  19. Re: How to show the HeaderText of specific column by selected column in DGV?

    Thank you for help.
  20. Re: How to show the HeaderText of specific column by selected column in DGV?

    I put the code in the command button, not in DGV event
  21. [RESOLVED] How to show the HeaderText of specific column by selected column in DGV?

    I used this code to show the HeaderText of specific column in DGV. And it worked

    MsgBox(Me.DataGridView1.Columns(1).HeaderText)

    I tried this code to show the HeaderText of specific column by...
  22. Re: Execute code only if there is a mouse cursor in cells of DGV

    I used cell.selected instead of the last way.
  23. Re: Execute code only if there is a mouse cursor in cells of DGV

    I tried this
    There is no hasfocus
    DataGridView.CurrentCell.HasStyle
  24. Re: Execute code only if there is a mouse cursor in cells of DGV

    I am searched about hasfocus could not found
  25. [RESOLVED] Execute code only if there is a mouse cursor in cells of DGV

    I am using vb.net
    I want to execute an order only if there is a mouse cursor in the cell of datagridview.


    If mouse cuesor in cells of DGV then
    Execute code
    End if
  26. MsOf07 Re: problem with starting id from i number after delete all data in the table

    Compact and Repair Data Base
  27. MsOf07 [RESOLVED] problem with starting id from i number after delete all data in the table

    I'm using ms access 2007
    after i insert data in table and then remove all data in table to start again. the Id start from the last number. is that possible
    to make it start from the 1 number.
  28. Re: problem with sum in diferent many tables

    Thank you for help. it worked with me
  29. [RESOLVED] problem with sum in diferent many tables

    I'am using vb2008 - ms access
    i tried this code to sum values from three tables
    and i put them in Form load
    SumComR3()
    SumMnyD()
    SumMnyPT()
    the problem is when any of these three tables...
  30. Re: How To select many fields by DISTINCT one field ?

    I got it
    I can use DISTICNT only for one field if use it without another field
    but if i want to use it with many fields i will use it with group by example
  31. How To select many fields by DISTINCT one field ?

    I am usimg vb2008 Ms Access2007
    I have four fields : Name,Tel,City,Job
    I want to select all fields by "DISTINCT City"
  32. Re: Mistake with DGV Operator '' is not defined for type 'DBNull' and string

    this work with me

    If DataGridView1.CurrentCell.Value.ToString = "" Then Exit Sub
    thank you for help
  33. [RESOLVED] Mistake with DGV Operator '' is not defined for type 'DBNull' and string

    I tried this code

    If DataGridView1.CurrentRow.Cells(0).Value = "" Then Exit Sub
    and it show me this mistake. how to fix it
    Operator '=' is not defined for type 'DBNull' and string ""
  34. Re: [RESOLVED] The problem with name and size column of DGV

    thank you for help
  35. [RESOLVED] The problem with name and size column of DGV

    I using this code to load data from db m s access
    and another code of DGV to give name to column and size
    how can I give name and size to column of DGV directly from the window properties of DGV in...
  36. Re: The problem with load data from DB M.Access using ByVal

    Thank you for help
  37. Re: [RESOLVED] How to create procedure to call DGV and Form in many Forms

    I did that
  38. [RESOLVED] The problem with load data from DB M.Access using ByVal

    Public Sub Load_TxtB_Lbl(ByVal sql As String, ByVal TxLb As Object)
    conn.Open()
    Dim cmd As New OleDbCommand(sql, conn)
    TxLb = cmd.ExecuteScalar
    conn.Close()
    ...
  39. Re: How to create procedure to call DGV and Form in many Forms

    I confused by the posts
    All, thank you for help.
  40. Re: How to create procedure to call DGV and Form in many Forms

    That code work very well thank you
    I tried this way for insert data but I donÂ’t know how to pass many parameters


    Public Sub InsertDa()
    conn.Open()
    Dim cmd As New...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width