Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for needanswer

This program: edit select delete id etc. (outside under gridview) textbox1 textbox2 addbutton cancelbutton [CODE]] <asp:GridView ID="GridView1" runat="server" AllowSorting="True" AutoGenerateColumns="False" DataKeyNames="id" BackColor="White" BorderColor="#999999" BorderStyle="None" BorderWidth="1px" CellPadding="3" GridLines="Vertical" > <RowStyle BackColor="#EEEEEE" ForeColor="Black"/> <Columns> <asp:TemplateField ShowHeader="False"> <EditItemTemplate> <asp:Button ID="Button1" runat="server" CausesValidation="True" CommandName="Update" Text="Update" /> &nbsp;<asp:Button ID="Button2" runat="server" CausesValidation="False" CommandName="Cancel" Text="Cancel" /> </EditItemTemplate> …

Member Avatar for dnanetwork
0
108
Member Avatar for needanswer

I have a gridview with access and built with "select","edit" & "delete", the outside under gridview with the "add","cancel" buttons. details: select edit delet id name etc. Textbox1 Textbox2 add cancel ALL THE BUILT SELECT,EDIT,DELETE WRER WORKING, ONLY THE "ADD" BUTTON WAS NOT WORKING. So, I rebind the gridview with …

Member Avatar for dnanetwork
0
105
Member Avatar for needanswer

[CODE]&nbsp;<asp:GridView ID="GridView1" runat="server" AllowSorting="True" AutoGenerateColumns="False" DataKeyNames="id" DataSourceID="AccessDataSource1" BackColor="White" BorderColor="#999999" BorderStyle="None" BorderWidth="1px" CellPadding="3" GridLines="Vertical" Width="779px"> <RowStyle BackColor="#EEEEEE" ForeColor="Black" />&nbsp;<asp:GridView ID="GridView1" runat="server" AllowSorting="True" AutoGenerateColumns="False" DataKeyNames="id" DataSourceID="AccessDataSource1" BackColor="White" BorderColor="#999999" BorderStyle="None" BorderWidth="1px" CellPadding="3" GridLines="Vertical" Width="779px"> <RowStyle BackColor="#EEEEEE" ForeColor="Black" /> [/CODE] [CODE]Protected Sub Button4_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button4.Click Dim con1 …

Member Avatar for needanswer
0
248
Member Avatar for needanswer

This is first time to do the web program with vwd 2008 express, just tried to practice to add an Insert button on gridview, actually the insert button not working yet. MY QUESTION is when I connected the database with Access USING GRIDVIEW, if the Access table is empty, I …

Member Avatar for needanswer
0
85
Member Avatar for needanswer

Tried to make the "add" button working, it is only half working(*). I can add the new record form the textbox, but I will get the error on the datasource, datasourceID, THEN i CHANGED THE DATASOURCE TO DATASORUCEID, i GOT THE OTHER ERROR THE "dt" couldn't transfer to string, how …

0
56
Member Avatar for needanswer
Member Avatar for needanswer

How your guys run the IIS? I am just done a project (vb.net with access) on the vb 2008 express, but not sure the steps to set up and run the project on the internet with IIS? THANKS.

Member Avatar for needanswer
0
147
Member Avatar for needanswer

I have 1 tabcontrol with 2 tabpages, each tabpage with 1 datagridview (different tables for each), I load these 2 databases on the form load: [ICODE] Me.AnndepTableAdapter.Fill(Me.HonorDataSet2.anndep) Me.SysdepTableAdapter.Fill(Me.HonorDataSet.sysdep) Dim sql1 As String Dim con1 As New OleDbConnection("Provider=Microsoft.Jet.Oledb.4.0;Data Source=C:\Users\user\Desktop\honor.mdb") con1.Open() sql1 = "SELECT * FROM sysdep" Dim adapter1 As New OleDbDataAdapter(sql1, …

Member Avatar for needanswer
0
413
Member Avatar for needanswer
Member Avatar for amphetkid
0
149
Member Avatar for needanswer

Datagridviews on each tab and invisible both id, on the first tab, you will not see the id on the datagridview, but, the second tab, the id is on the datagridview????? HOW TO FIX IT? Thanks.

Member Avatar for needanswer
0
97
Member Avatar for needanswer

I want to search the records from the textbox and display the records to the datagridview, if there are no records, just display empty on the datagridview. this is not working: [CODE] Dim sqlsearch As String sqlsearch = "SELECT * FROM setting WHERE mname LIKE '%" & TextBox.Text Dim adapter …

Member Avatar for pritesh2010
0
666
Member Avatar for needanswer

This project is to load same form to managers, and the managers will start this same forms to manage a job. 1. How can you load the same blank form to different managers? 2. This form has the datagridview, textbox, combobox, how do you save the values to the tables …

0
51