63 Posted Topics
[QUOTE]Hi I need help to center a label with a form. I have tried with the following code but was unsuccessful. [/QUOTE] [CODE]Me.Width = 135 Me.Height = 38 Dim w As Integer = Me.Width / 2 Dim h As Integer = Me.Height / 2 Dim lblw As Integer = Me.lblnumber.Width … | |
HI I'm trying to use a menu on a datagridview, I have put a Contextmenutrip on the form. When I right click in a cell I would like a menu to pop up. but nothing happens. This is the code I have tried. [CODE] Private Sub CustomerPopMenu_ItemClicked(ByVal sender As Object, … | |
[QUOTE][/QUOTE]Hi I have been trying to flatten the columns header in a Datagrid, the same way as we do it with buttons using .FlatStyle = FlatStyle.Flat but have been unsuccessful. If it is possible to do it can someone help me. Thank you | |
Hi I have a Datagrid with column(1) showing the date. The dates are being Displayed as 01-13-2009 (mm-dd-yy). That's how it is saved in the DB. I wouls like it to be displayed in the Datagrid in the following format Jan-13-2009. Can anyone help? Thank you | |
[CODE] Dim DesinNum As DataColumn = New DataColumn With DesinNum .ColumnName = "DEsign#" .Expression = "ISNULL(usrini,'')+design+typcde" End With With Design_dt.Columns .Add(DesinNum) End With[/CODE] These are the results I'm getting usrini="J", Design=123,typcde=cst expression=j123cst usrini="J", Design=123,typcde="" expression="" I have this code to add a new colum in the datagrid. It seams to … | |
[QUOTE]HI These are the forms I Have Log in,Customer,Order. They are opened In this order. At start up the Log in Form assigns the User in The Order Form and all works fine. But when I close the Order Form I loose the user. I would like to maintain the … | |
Hi I need to create an exec File. I believe I need to use deploy. But I can't find the command. thanks in advance | |
I have two Issue using a MDI app. 1-at this moment I'm able to open MDI child forms using the MDIparent except when the I opens form1 I'm also able to open forms 2 and 3 . but I only want one form to be open at a time. 2- … | |
Hi I have a checklist box and I am trying to Check and Uncheck the the Items with a single click. My code seams to be checking and uncheking if the Item is not selected. If I Click on an Item that is checked it will uncheck it or vice … | |
[QUOTE]Hi I have an INSERT INTO SQL that keeps on retuning an Syntax error in Insert Into. I cant seam to see where the error is, can anyone Help. This is my SQL.[/QUOTE] [ICODE]Dim DesignSQL As String = "INSERT INTO Design_tbl (CustmrID,[User],Builder,Model,Type) values ('" & _ CustID & "', '" … | |
Hi Is it possible to use [B]Where[/B] in a Rowfilter statement. If it is can You please show me how. Thank you | |
Hi I'm using Visual Basic Express When trying to sort columns in DataGridView by using ListSortDirection, I get the not defined error. I searched Google for app. using ListSortDirection, none of them have to declare it. Can any one help me. Thanks | |
I been searching for days for a sulotion but can't seem to find one. The coed that I have does not give me an error but it does not save anything on the table either ' Can someone help me find what I'm missing? this is my coed [CODE] Dim … |
The End.