Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~7K People Reached
Favorite Forums
Favorite Tags
Member Avatar for kgenn

hi! ;) I just want to asked on how I can set the image as background. I put an image on the working station but once I run it, it doesn't appear on the browser. thanks. I'm using Visual Studio 2008 ;)

Member Avatar for diafol
0
6K
Member Avatar for kgenn

[CODE]<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> <%@ Import Namespace="System.Data" %> <%@ Import Namespace="System.Data.oledb" %> <%@ Register Assembly="CrystalDecisions.Web, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" Namespace="CrystalDecisions.Web" TagPrefix="CR" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script language="vb" runat="server"> Sub BindGrid() Dim connection As OleDbConnection connection = New OleDbConnection("Provider=Microsoft.Jet.Oledb.4.0;Data Source=C:\Users\emong\Documents\Visual Studio 2008\WebSite1\App_Data/dbLupon.mdb") connection.Open() Dim …

Member Avatar for creiglee
0
553
Member Avatar for kgenn

[CODE] Dim connection As OleDbConnection connection = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; " _ & "Data Source=" & Server.MapPath("~/Database/dbLupon.mdb") & ";") Dim command As OleDbCommand Dim commandPos As OleDbCommand commandPos = New OleDbCommand("Select POSITION_C FROM tblLupon_C WHERE POSITION = 'C' REGION_C = '" & lblRegion_C.Text & "' AND PROVINCE_C = '" & lblProvince_C.Text …

Member Avatar for kvprajapati
0
92
Member Avatar for kgenn

hello. :) I wnant to ask, how can I retrieve the data from gridview and put it on a textbox. here's my sample code, but I was error [CODE] Protected Sub Gridview1_SelectedIndexChanged(ByVal sender As Object, ByVal e As GridViewSelectEventArgs) Dim row As GridViewRow = GridView1.SelectedRow Dim key As String = …

0
66
Member Avatar for kgenn

hello :) how to insert new record in grid view coming from textbox? I tried to used the INSERT INTO -- sql query, but it didn't work.. does it have another way? please. my current language is vb. thanks. [CODE]With mydataLupon .DataFile = "~/Database/dbLupon.mdb" .SelectCommand = "INSERT INTO tblLupon_C VALUES …

Member Avatar for vuyiswamb
0
172
Member Avatar for kgenn

[CODE] Protected Sub Gridview1_RowUpdating(ByVal sender As Object, ByVal e As GridViewUpdateEventArgs) Dim txtR, txtP, txtC, txtCo, txtB, txtL, txtF, txtM, txtPo, txtSu, txtS As TextBox Dim row As GridViewRow = GridView1.Rows(e.RowIndex) txtR = CType(row.Cells(1).Controls(0), TextBox) txtP = CType(row.Cells(2).Controls(0), TextBox) txtC = CType(row.Cells(3).Controls(0), TextBox) txtB = CType(row.Cells(4).Controls(0), TextBox) txtCo = CType(row.Cells(5).Controls(0), …

0
58
Member Avatar for kgenn

the code is for binding data from a gridview [CODE] Sub BindGrid() Dim connection As OleDbConnection connection = New OleDbConnection("Provider=Microsoft.Jet.Oledb.4.0;Data Source=C:\Users\Karl Gennadi\Desktop\Visual Studio 2008\WebSite3\Database\dbLupon.mdb") connection.Open() Dim command As OleDbCommand command = New OleDbCommand("Select LAST_M, UNIQUE_C from tblLupon_C", connection) Dim DataReader As OleDbDataReader DataReader = command.ExecuteReader() GridView1.DataSource = DataReader GridView1.DataBind() connection.Close() …

Member Avatar for kgenn
0
465
Member Avatar for kgenn

SOFTWARE USED: MVS 2008 DATABASE: MS ACCESS 2003 LANGUAGE: VB can anyone help me regarding on how I can ADD new record on a gridview :( I'm working several weeks but I can't find the solutions :( please.please. I found some answers but I can't transfer the code into vb …

0
78
Member Avatar for kgenn

How can I execute accessdatasource in the query UPDATE, DELETE and INSERT? I can only do the SELECT QUERY

Member Avatar for vuyiswamb
0
68
Member Avatar for kgenn

hello guys :) I'm here again to ask some questions :) how can I put the value of a gridview in textbox and dropdown when I click the "select" thanks! :D

Member Avatar for nebyas
0
113
Member Avatar for kgenn

hello :) I just want to ask a favor regarding the code on how to Update the edited data from the gridview. thanks. here's the code. [ICODE]<%@ Page Language="VB"%> <%--AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default"--%> <%@ Import Namespace="System.Data.Oledb" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> Private Sub Page_Load() Dim …

Member Avatar for kgenn
0
128
Member Avatar for kgenn

Hi everyone.. ;) I just want to asked how can I update certain record using the datagridview. I add the AutoGenerateEditButton="True" in the data grid properties.. the error is on the update, it does not update the records. please help me. thanks! :D and God bless ;)

-1
63
Member Avatar for kgenn

Hello everyone :) Please help me in my problem about putting the data from database (MS Access 2003) to a label. What syntax should I use?. I used AccessDataSource for connection and Datagridview for the output.. Thanks! :D Your help will be highly appreciated ;)

Member Avatar for kgenn
0
97