Click here to Skip to main content
15,911,891 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionRtf,vb.net Pin
srinivasankrishnaa22-Nov-13 4:49
srinivasankrishnaa22-Nov-13 4:49 
AnswerRe: Rtf,vb.net Pin
Dave Kreskowiak22-Nov-13 6:20
mveDave Kreskowiak22-Nov-13 6:20 
AnswerRe: Rtf,vb.net Pin
Eddy Vluggen28-Nov-13 9:41
professionalEddy Vluggen28-Nov-13 9:41 
Questionwindow form to wpf Pin
Member 1026351918-Nov-13 22:41
Member 1026351918-Nov-13 22:41 
AnswerRe: window form to wpf Pin
Abhinav S18-Nov-13 22:47
Abhinav S18-Nov-13 22:47 
Question.net4.0 Pin
Member 1026351918-Nov-13 18:27
Member 1026351918-Nov-13 18:27 
AnswerRe: .net4.0 Pin
Abhinav S18-Nov-13 22:46
Abhinav S18-Nov-13 22:46 
AnswerRe: .net4.0 Pin
joginder-banger15-Dec-13 8:13
professionaljoginder-banger15-Dec-13 8:13 
QuestionBound Datagridview Column Which Shows Name instead of ID. Pin
Dinesh Prajapati15-Nov-13 1:49
Dinesh Prajapati15-Nov-13 1:49 
AnswerRe: Bound Datagridview Column Which Shows Name instead of ID. Pin
Richard MacCutchan15-Nov-13 2:52
mveRichard MacCutchan15-Nov-13 2:52 
GeneralRe: Bound Datagridview Column Which Shows Name instead of ID. Pin
Dinesh Prajapati15-Nov-13 9:43
Dinesh Prajapati15-Nov-13 9:43 
GeneralRe: Bound Datagridview Column Which Shows Name instead of ID. Pin
Richard MacCutchan17-Nov-13 22:18
mveRichard MacCutchan17-Nov-13 22:18 
AnswerRe: Bound Datagridview Column Which Shows Name instead of ID. Pin
WuRunZhe17-Nov-13 21:19
WuRunZhe17-Nov-13 21:19 
AnswerRe: Bound Datagridview Column Which Shows Name instead of ID. Pin
Peter Leow23-Nov-13 3:59
professionalPeter Leow23-Nov-13 3:59 
GeneralRe: Bound Datagridview Column Which Shows Name instead of ID. Pin
Dinesh Prajapati30-Dec-13 18:20
Dinesh Prajapati30-Dec-13 18:20 
GeneralRe: Bound Datagridview Column Which Shows Name instead of ID. Pin
Peter Leow30-Dec-13 19:02
professionalPeter Leow30-Dec-13 19:02 
GeneralRe: Bound Datagridview Column Which Shows Name instead of ID. Pin
Dinesh Prajapati31-Dec-13 20:07
Dinesh Prajapati31-Dec-13 20:07 
QuestionDisplay data from SQL into a form Pin
Member 1038849413-Nov-13 10:16
Member 1038849413-Nov-13 10:16 
AnswerRe: Display data from SQL into a form Pin
Pete O'Hanlon13-Nov-13 11:42
mvePete O'Hanlon13-Nov-13 11:42 
Questionwebtransform issue... anyone? Pin
Desvariovsk13-Nov-13 6:31
Desvariovsk13-Nov-13 6:31 
AnswerRe: webtransform issue... anyone? Pin
WuRunZhe17-Nov-13 21:21
WuRunZhe17-Nov-13 21:21 
GeneralRe: webtransform issue... anyone? Pin
Desvariovsk18-Nov-13 1:33
Desvariovsk18-Nov-13 1:33 
QuestionRe: webtransform issue... anyone? Pin
Eddy Vluggen21-Nov-13 7:28
professionalEddy Vluggen21-Nov-13 7:28 
QuestionRefreshing DGV after db (access 2007) changed Pin
jose mandurrino13-Nov-13 5:54
jose mandurrino13-Nov-13 5:54 
Hi all, I'm new in VB .NET and need some support.

I have a problem in refreshing the data into the DGV after someone updated the database (access 2007) that feed it.
Even if I checked a lot before, I can't find the solution for it.

The main problem is that I have code automatically added by Visual Studio 2012 (VS 2012) not directly into the form form1.vb. I mean, it have been added into the Form1.Designer.vb, and for that reason I can't find the way to manage it.

(I made the data binding with the DB through the facility "DataGridView Tasks" after creating the connection with the "Add New Data Source" wizard.)

I have the following code into a button "Refresh" in form1.vb (code moved from the "load" sub):

VB
'TODO: This line of code loads data into the 'RFIdSSI_2DataSet._08_AssetMng' table. You can move, or remove it, as needed.
 Me._08_AssetMngTableAdapter.Fill(Me.RFIdSSI_2DataSet._08_AssetMng)


Into the form1.Designer.vb VS2012 added the following:

C#
'grdDataGridView
'
Me.grdDataGridView.AutoGenerateColumns = False
Me.grdDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.grdDataGridView.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.IDDataGridViewTextBoxColumn, Me.AssetDataGridViewTextBoxColumn, Me.AssetPosDataGridViewTextBoxColumn, Me.AssetTAGDataGridViewTextBoxColumn, Me.TblTrasponderTagIdDataGridViewTextBoxColumn, Me.ClassIdDataGridViewTextBoxColumn, Me.ClassTypeDataGridViewTextBoxColumn, Me.ColorDataGridViewTextBoxColumn, Me.WingDataGridViewTextBoxColumn, Me.WingCodeDataGridViewTextBoxColumn, Me.FloorDataGridViewTextBoxColumn, Me.RoomIdDataGridViewTextBoxColumn, Me.TblTagAssignedTagIdDataGridViewTextBoxColumn, Me.AssignedDataGridViewCheckBoxColumn, Me.TagDSFIDDataGridViewTextBoxColumn, Me.TagAFIDataGridViewTextBoxColumn, Me.TagEnterDataGridViewTextBoxColumn, Me.TypeImgDataGridViewTextBoxColumn, Me.TypeDescDataGridViewTextBoxColumn, Me.PosRowDataGridViewTextBoxColumn, Me.PosColumnDataGridViewTextBoxColumn})
Me.grdDataGridView.DataSource = Me.AssetMngBindingSource
Me.grdDataGridView.Location = New System.Drawing.Point(12, 396)
Me.grdDataGridView.Name = "grdDataGridView"
Me.grdDataGridView.Size = New System.Drawing.Size(772, 89)
Me.grdDataGridView.TabIndex = 24

Me.AssetMngBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.RFIdSSI_2DataSet = New RFIdSSI.RFIdSSI_2DataSet()

Me._08_AssetMngTableAdapter = New RFIdSSI.RFIdSSI_2DataSetTableAdapters._08_AssetMngTableAdapter()

CType(Me.grdDataGridView, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.AssetMngBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.RFIdSSI_2DataSet, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()


I've tried to re-bind the data without success, adding into the "Refresh" sub the code extracted from the form1.Designer.vb

The code works fine and load the data correctly, but I have to exit to re-load (refresh) it


Thank in advance
QuestionMessage Closed Pin
13-Nov-13 4:37
Member 1039931913-Nov-13 4:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.