473,756 Members | 9,334 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Datagrid > DataList problem - Any clues?

Thanks in advance... (you can see a screenshot of what my form looks
like currently at http://www.juggernautical.com/DataGrid.jpg - the
Datalist is super-imposed in 'design view' but the DataGrid is the
actual running of the page) I've almost got this working (?) but need
a little help. I have an .aspx page that has a DataGrid listing
employees with a "Select" button that is to be used to populate the
DataList to the right of the DataGrid with additional employee
information. I'm basing this off the model found at
http://www.aspnet101.com/aspnet101/a...px?code=choose
.. this is a very good example of what I'm trying to do. I can populate
the DataGrid with no problem, but the "Select" button will not
populate the DataList. BTW, I'm using framework 1.1 and Code behind
(all listed below), in addition I'm using Broker DLL's to get my data.
Any clues?

<%@ Page Language="vb" AutoEventWireup ="false"
Codebehind="Mai nDepartment.asp x.vb"
Inherits="Forsy th.HR_Reporting Tool.UI.MainDep artment" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>MainDepa rtment</title>
<META http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<meta content="False" name="vs_snapTo Grid">
<meta content="False" name="vs_showGr id">
<meta content="Micros oft Visual Studio .NET 7.1" name="GENERATOR ">
<meta content="Visual Basic .NET 7.1" name="CODE_LANG UAGE">
<meta content="JavaSc ript" name="vs_defaul tClientScript">
<meta content="http://schemas.microso ft.com/intellisense/ie5"
name="vs_target Schema">
</HEAD>
<BODY background="fil e:///C:\Inetpub\wwwr oot\HR_Reportin gTool
\vignette.gif">
<div style="PADDING-RIGHT: 10px; PADDING-LEFT: 10px; FONT-SIZE:
medium; BORDER-LEFT-COLOR: white; LEFT: 50px; FLOAT: none; BORDER-
BOTTOM-COLOR: white; MARGIN-LEFT: 20px; OVERFLOW: auto; WIDTH: 734px;
CLIP: rect(auto auto auto auto); COLOR: black; BORDER-TOP-STYLE:
inset; BORDER-TOP-COLOR: white; TEXT-INDENT: 5%; FONT-FAMILY: 'Times
New Roman'; BORDER-RIGHT-STYLE: inset; BORDER-LEFT-STYLE: inset;
POSITION: absolute; TOP: 50px; HEIGHT: 599px; BACKGROUND-COLOR: white;
TEXT-ALIGN: left; BORDER-RIGHT-COLOR: white; BORDER-BOTTOM-STYLE:
inset"
align="left">
<DIV style="POSITION : absolute">
<FORM id="Form1" method="post" runat="server">
<asp:datagrid id="dgEmployees " runat="server" Font-Size="X-Small"
BorderColor="Si lver" AllowSorting="T rue"
HorizontalAlign ="Center" BorderStyle="So lid" Height="136px"
Width="640px">
<SelectedItemSt yle Font-Underline="True " Font-Bold="True"></
SelectedItemSty le>
<AlternatingIte mStyle BackColor="#C0F FC0"></
AlternatingItem Style>
<Columns>
<asp:TemplateCo lumn>
<ItemTemplate >
<asp:LinkButt on id="Select" Text="Details"
CommandName="Sh owDetails" runat="server" />
</ItemTemplate>
</asp:TemplateCol umn>
</Columns>
</asp:datagrid></FORM>
</DIV>
</div>
<div style="PADDING-RIGHT: 10px; PADDING-LEFT: 10px; FONT-SIZE:
medium; BORDER-LEFT-COLOR: white; LEFT: 869px; FLOAT: none; BORDER-
BOTTOM-COLOR: white; MARGIN-LEFT: 20px; OVERFLOW: auto; WIDTH: 277px;
CLIP: rect(auto auto auto auto); COLOR: black; BORDER-TOP-STYLE:
inset; BORDER-TOP-COLOR: white; TEXT-INDENT: 5%; FONT-FAMILY: 'Times
New Roman'; BORDER-RIGHT-STYLE: inset; BORDER-LEFT-STYLE: inset;
POSITION: absolute; TOP: 50px; HEIGHT: 598px; BACKGROUND-COLOR:
#c0ffc0; TEXT-ALIGN: left; BORDER-RIGHT-COLOR: white; BORDER-BOTTOM-
STYLE: inset"
align="left"><a sp:datalist id="dlDetails" runat="server" Font-
Size="X-Small" BorderColor="Si lver" Height="350px"
Width="309px" RepeatLayout="F low">
<ItemTemplate >
<B>Emp #: </B>
<%# Container.DataI tem("Key") %>
<br>
<B>First Name: </B>
<%# Container.DataI tem("FirstName" ) %>
<br>
<B>MI: </B>
<%# Container.DataI tem("MI") %>
<br>
<B>Last name: </B>
<%# Container.DataI tem("LastName") %>
<br>
<B>Nick Name: </B>
<%# Container.DataI tem("NickName") %>
<br>
<B>Use Nick Name Only: </B>
<%# Container.DataI tem("UseNickNam eOnly") %>
<br>
<B>DOB: </B>
<%# Container.DataI tem("DOBString" ) %>
<br>
<B>Start Date String: </B>
<%# Container.DataI tem("StartDateS tring") %>
<br>
<B>Longevity Date: </B>
<%# Container.DataI tem("LongevityD ate") %>
<br>
<B>Gender: </B>
<%# Container.DataI tem("Gender") %>
<br>
<B>Race: </B>
<%# Container.DataI tem("Race") %>
<br>
<B>Status: </B>
<%# Container.DataI tem("Status") %>
<br>
<B>Email Address: </B>
<%# Container.DataI tem("EmailAddre ss") %>
<br>
<B>Login Name: </B>
<%# Container.DataI tem("LoginName" ) %>
<br>
<B>Home Phone: </B>
<%# Container.DataI tem("HomePhoneF ormatted") %>
<br>
<B>Payroll Employee ID: </B>
<%# Container.DataI tem("PayrollEmp loyeeID") %>
<br>
<B>Retiree: </B>
<%# Container.DataI tem("Retiree") %>
<br>
<B>Retirement Number: </B>
<%# Container.DataI tem("Retirement Number") %>
<br>
<B>Service Date String: </B>
<%# Container.DataI tem("ServiceDat eString") %>
<br>
<B>Suffix: </B>
<%# Container.DataI tem("Sfx") %>
<br>
<B>Advance Leave: </B>
<%# Container.DataI tem("AdvanceLea ve") %>
<br>
<B>Benefits: </B>
<%# Container.DataI tem("Benefits") %>
<br>
<B>Cobra: </B>
<%# Container.DataI tem("Cobra") %>
<br>
<B>Evaluation Due: </B>
<%# Container.DataI tem("Evaluation DueString") %>
<br>
<B>Law Sep: </B>
<%# Container.DataI tem("LawSep") %>
<br>
<B>LOA: </B>
<%# Container.DataI tem("LOA") %>
<br>
<B>Added By: </B>
<%# Container.DataI tem("AddedBy") %>
<br>
<B>Added By Name: </B>
<%# Container.DataI tem("AddedByNam e") %>
<br>
<B>Added Date: </B>
<%# Container.DataI tem("AddedDateS tring") %>
<br>
<B>Ad Username: </B>
<%# Container.DataI tem("AdUsername ") %>
<br>
<B>Updated By: </B>
<%# Container.DataI tem("UpdatedBy" ) %>
<br>
<B>Updated By Name: </B>
<%# Container.DataI tem("UpdatedByN ame") %>
<br>
<B>Updated Date String: </B>
<%# Container.DataI tem("UpdatedDat eString") %>
<br>
</ItemTemplate>
</asp:datalist></div>
</BODY>
</HTML>

Code-Behind:

Public Class MainDepartment
Inherits System.Web.UI.P age

Private m_department As String
Private m_title As String

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
'Put user code to initialize the page here
'lblWelcome.Tex t = "Hello " & Global.UserSecu rity.Fname.Trim &
" " & Global.UserSecu rity.Lname
Dim act As Action
Dim pos As Position
Dim empname As String
Dim lvi As ListItem
Dim Employee As Employee
Dim empcount As Integer
act = (New
ActionBroker).G etActionCurrent (Global.UserSec urity.EmpId, Today,
Global.UserName , Global.UserPass word, Global.appDataS ource)
pos = (New PositionBroker) .GetPosition(ac t.PositionID,
Global.UserName , Global.UserPass word, Global.appDataS ource)
m_department = pos.Department. Name
Dim emps As Employees = (New
EmployeeBroker) .GetCurrentEmpl oyeesByDepartme nt(m_department ,
Global.UserName , Global.UserPass word, Global.appDataS ource)
Dim dt As New DataTable
Dim count As Integer = 0
For Each emp As Employee In emps
SetListViewItem (emp, dt, count)
count = count + 1
Next
dgEmployees.Dat aSource = dt
dgEmployees.Dat aBind()
End Sub

Private Sub ShowDetails(ByV al sender As Object, ByVal e As
DataGridCommand EventArgs)
?????????
?????????
End Sub

Private Sub SetListViewItem (ByVal dr As Employee, ByVal dt As
DataTable, ByVal count As Integer)
If count = 0 Then
dt.Columns.Add( "Emp #")
dt.Columns.Add( "Last Name")
dt.Columns.Add( "First Name")
dt.Columns.Add( "Title")
End If
Dim EmpPos As Action = (New
ActionBroker).G etActionCurrent (dr.Key, Today, Global.UserName ,
Global.UserPass word, Global.appDataS ource)
Dim employee As DataRow = dt.NewRow
employee("Emp #") = dr.Key
employee("Last Name") = dr.LastName

employee("First Name") = dr.FirstName
employee("Title ") = EmpPos.WorkAgai nstInfo.Title
dt.Rows.Add(emp loyee)
End Sub 'SetListViewIte m

Private Function FindEmp(ByVal EmployeeID As Integer) As String
Dim emp As Employee
Dim retval As String
Try
If EmployeeID 0 Then
emp = (New EmployeeBroker) .GetEmployee(Em ployeeID,
Global.UserName , Global.UserPass word, Global.appDataS ource)
retval = String.Empty
If Not IsNothing(emp) Then
retval = emp.FirstName & " " & emp.MI & " " &
emp.LastName
Else
retval = "Vacant"
End If
Else
retval = ""
End If
Catch ex As Exception
Global.HandleEx ception(ex)
retval = String.Empty
End Try
Return retval
End Function

End Class
Jul 8 '08 #1
1 1920
Hi,

the code in Page_Load should be wrapped inside If Not Page.IsPostBack check
so that it's not databound on every request. Second is that I cannot see
ShowDetails method being wired to handle anything anywhere, and as you have
specified this in the grid:

<asp:LinkButt on id="Select" Text="Details"
CommandName="Sh owDetails" runat="server" />

I assume you want to populate DataList when this Button is clicked. Either
wire the ShowDetails method to Command event of datagrid
(OnCommand="Sho wDetails)" when it is called when Button is clicked (and you
can check the CommandName if it macthes the expected one) or write
declaratively a click event handler of the Button directly.

--
Teemu Keiski
AspInsider, ASP.NET MVP
http://blogs.aspadvice.com/joteke
http://teemukeiski.net
"Brock" <wa********@yah oo.comwrote in message
news:07******** *************** ***********@i76 g2000hsf.google groups.com...
Thanks in advance... (you can see a screenshot of what my form looks
like currently at http://www.juggernautical.com/DataGrid.jpg - the
Datalist is super-imposed in 'design view' but the DataGrid is the
actual running of the page) I've almost got this working (?) but need
a little help. I have an .aspx page that has a DataGrid listing
employees with a "Select" button that is to be used to populate the
DataList to the right of the DataGrid with additional employee
information. I'm basing this off the model found at
http://www.aspnet101.com/aspnet101/a...px?code=choose
. this is a very good example of what I'm trying to do. I can populate
the DataGrid with no problem, but the "Select" button will not
populate the DataList. BTW, I'm using framework 1.1 and Code behind
(all listed below), in addition I'm using Broker DLL's to get my data.
Any clues?

<%@ Page Language="vb" AutoEventWireup ="false"
Codebehind="Mai nDepartment.asp x.vb"
Inherits="Forsy th.HR_Reporting Tool.UI.MainDep artment" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>MainDepa rtment</title>
<META http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<meta content="False" name="vs_snapTo Grid">
<meta content="False" name="vs_showGr id">
<meta content="Micros oft Visual Studio .NET 7.1" name="GENERATOR ">
<meta content="Visual Basic .NET 7.1" name="CODE_LANG UAGE">
<meta content="JavaSc ript" name="vs_defaul tClientScript">
<meta content="http://schemas.microso ft.com/intellisense/ie5"
name="vs_target Schema">
</HEAD>
<BODY background="fil e:///C:\Inetpub\wwwr oot\HR_Reportin gTool
\vignette.gif">
<div style="PADDING-RIGHT: 10px; PADDING-LEFT: 10px; FONT-SIZE:
medium; BORDER-LEFT-COLOR: white; LEFT: 50px; FLOAT: none; BORDER-
BOTTOM-COLOR: white; MARGIN-LEFT: 20px; OVERFLOW: auto; WIDTH: 734px;
CLIP: rect(auto auto auto auto); COLOR: black; BORDER-TOP-STYLE:
inset; BORDER-TOP-COLOR: white; TEXT-INDENT: 5%; FONT-FAMILY: 'Times
New Roman'; BORDER-RIGHT-STYLE: inset; BORDER-LEFT-STYLE: inset;
POSITION: absolute; TOP: 50px; HEIGHT: 599px; BACKGROUND-COLOR: white;
TEXT-ALIGN: left; BORDER-RIGHT-COLOR: white; BORDER-BOTTOM-STYLE:
inset"
align="left">
<DIV style="POSITION : absolute">
<FORM id="Form1" method="post" runat="server">
<asp:datagrid id="dgEmployees " runat="server" Font-Size="X-Small"
BorderColor="Si lver" AllowSorting="T rue"
HorizontalAlign ="Center" BorderStyle="So lid" Height="136px"
Width="640px">
<SelectedItemSt yle Font-Underline="True " Font-Bold="True"></
SelectedItemSty le>
<AlternatingIte mStyle BackColor="#C0F FC0"></
AlternatingItem Style>
<Columns>
<asp:TemplateCo lumn>
<ItemTemplate >
<asp:LinkButt on id="Select" Text="Details"
CommandName="Sh owDetails" runat="server" />
</ItemTemplate>
</asp:TemplateCol umn>
</Columns>
</asp:datagrid></FORM>
</DIV>
</div>
<div style="PADDING-RIGHT: 10px; PADDING-LEFT: 10px; FONT-SIZE:
medium; BORDER-LEFT-COLOR: white; LEFT: 869px; FLOAT: none; BORDER-
BOTTOM-COLOR: white; MARGIN-LEFT: 20px; OVERFLOW: auto; WIDTH: 277px;
CLIP: rect(auto auto auto auto); COLOR: black; BORDER-TOP-STYLE:
inset; BORDER-TOP-COLOR: white; TEXT-INDENT: 5%; FONT-FAMILY: 'Times
New Roman'; BORDER-RIGHT-STYLE: inset; BORDER-LEFT-STYLE: inset;
POSITION: absolute; TOP: 50px; HEIGHT: 598px; BACKGROUND-COLOR:
#c0ffc0; TEXT-ALIGN: left; BORDER-RIGHT-COLOR: white; BORDER-BOTTOM-
STYLE: inset"
align="left"><a sp:datalist id="dlDetails" runat="server" Font-
Size="X-Small" BorderColor="Si lver" Height="350px"
Width="309px" RepeatLayout="F low">
<ItemTemplate >
<B>Emp #: </B>
<%# Container.DataI tem("Key") %>
<br>
<B>First Name: </B>
<%# Container.DataI tem("FirstName" ) %>
<br>
<B>MI: </B>
<%# Container.DataI tem("MI") %>
<br>
<B>Last name: </B>
<%# Container.DataI tem("LastName") %>
<br>
<B>Nick Name: </B>
<%# Container.DataI tem("NickName") %>
<br>
<B>Use Nick Name Only: </B>
<%# Container.DataI tem("UseNickNam eOnly") %>
<br>
<B>DOB: </B>
<%# Container.DataI tem("DOBString" ) %>
<br>
<B>Start Date String: </B>
<%# Container.DataI tem("StartDateS tring") %>
<br>
<B>Longevity Date: </B>
<%# Container.DataI tem("LongevityD ate") %>
<br>
<B>Gender: </B>
<%# Container.DataI tem("Gender") %>
<br>
<B>Race: </B>
<%# Container.DataI tem("Race") %>
<br>
<B>Status: </B>
<%# Container.DataI tem("Status") %>
<br>
<B>Email Address: </B>
<%# Container.DataI tem("EmailAddre ss") %>
<br>
<B>Login Name: </B>
<%# Container.DataI tem("LoginName" ) %>
<br>
<B>Home Phone: </B>
<%# Container.DataI tem("HomePhoneF ormatted") %>
<br>
<B>Payroll Employee ID: </B>
<%# Container.DataI tem("PayrollEmp loyeeID") %>
<br>
<B>Retiree: </B>
<%# Container.DataI tem("Retiree") %>
<br>
<B>Retirement Number: </B>
<%# Container.DataI tem("Retirement Number") %>
<br>
<B>Service Date String: </B>
<%# Container.DataI tem("ServiceDat eString") %>
<br>
<B>Suffix: </B>
<%# Container.DataI tem("Sfx") %>
<br>
<B>Advance Leave: </B>
<%# Container.DataI tem("AdvanceLea ve") %>
<br>
<B>Benefits: </B>
<%# Container.DataI tem("Benefits") %>
<br>
<B>Cobra: </B>
<%# Container.DataI tem("Cobra") %>
<br>
<B>Evaluation Due: </B>
<%# Container.DataI tem("Evaluation DueString") %>
<br>
<B>Law Sep: </B>
<%# Container.DataI tem("LawSep") %>
<br>
<B>LOA: </B>
<%# Container.DataI tem("LOA") %>
<br>
<B>Added By: </B>
<%# Container.DataI tem("AddedBy") %>
<br>
<B>Added By Name: </B>
<%# Container.DataI tem("AddedByNam e") %>
<br>
<B>Added Date: </B>
<%# Container.DataI tem("AddedDateS tring") %>
<br>
<B>Ad Username: </B>
<%# Container.DataI tem("AdUsername ") %>
<br>
<B>Updated By: </B>
<%# Container.DataI tem("UpdatedBy" ) %>
<br>
<B>Updated By Name: </B>
<%# Container.DataI tem("UpdatedByN ame") %>
<br>
<B>Updated Date String: </B>
<%# Container.DataI tem("UpdatedDat eString") %>
<br>
</ItemTemplate>
</asp:datalist></div>
</BODY>
</HTML>

Code-Behind:

Public Class MainDepartment
Inherits System.Web.UI.P age

Private m_department As String
Private m_title As String

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
'Put user code to initialize the page here
'lblWelcome.Tex t = "Hello " & Global.UserSecu rity.Fname.Trim &
" " & Global.UserSecu rity.Lname
Dim act As Action
Dim pos As Position
Dim empname As String
Dim lvi As ListItem
Dim Employee As Employee
Dim empcount As Integer
act = (New
ActionBroker).G etActionCurrent (Global.UserSec urity.EmpId, Today,
Global.UserName , Global.UserPass word, Global.appDataS ource)
pos = (New PositionBroker) .GetPosition(ac t.PositionID,
Global.UserName , Global.UserPass word, Global.appDataS ource)
m_department = pos.Department. Name
Dim emps As Employees = (New
EmployeeBroker) .GetCurrentEmpl oyeesByDepartme nt(m_department ,
Global.UserName , Global.UserPass word, Global.appDataS ource)
Dim dt As New DataTable
Dim count As Integer = 0
For Each emp As Employee In emps
SetListViewItem (emp, dt, count)
count = count + 1
Next
dgEmployees.Dat aSource = dt
dgEmployees.Dat aBind()
End Sub

Private Sub ShowDetails(ByV al sender As Object, ByVal e As
DataGridCommand EventArgs)
?????????
?????????
End Sub

Private Sub SetListViewItem (ByVal dr As Employee, ByVal dt As
DataTable, ByVal count As Integer)
If count = 0 Then
dt.Columns.Add( "Emp #")
dt.Columns.Add( "Last Name")
dt.Columns.Add( "First Name")
dt.Columns.Add( "Title")
End If
Dim EmpPos As Action = (New
ActionBroker).G etActionCurrent (dr.Key, Today, Global.UserName ,
Global.UserPass word, Global.appDataS ource)
Dim employee As DataRow = dt.NewRow
employee("Emp #") = dr.Key
employee("Last Name") = dr.LastName

employee("First Name") = dr.FirstName
employee("Title ") = EmpPos.WorkAgai nstInfo.Title
dt.Rows.Add(emp loyee)
End Sub 'SetListViewIte m

Private Function FindEmp(ByVal EmployeeID As Integer) As String
Dim emp As Employee
Dim retval As String
Try
If EmployeeID 0 Then
emp = (New EmployeeBroker) .GetEmployee(Em ployeeID,
Global.UserName , Global.UserPass word, Global.appDataS ource)
retval = String.Empty
If Not IsNothing(emp) Then
retval = emp.FirstName & " " & emp.MI & " " &
emp.LastName
Else
retval = "Vacant"
End If
Else
retval = ""
End If
Catch ex As Exception
Global.HandleEx ception(ex)
retval = String.Empty
End Try
Return retval
End Function

End Class

Jul 9 '08 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1216
by: Andy | last post by:
Hello Guys: I am not sure if this is where the post belongs or not. I am using C# to write an ASP.Net page. I have an issue where I want to use a DataGrid, becasue of the Paging aspect, but also need to use the DataList becasue of the RepeatColumns and RepeatDirection aspect. I have a page layout that works great for the Repeat aspects of the DataList, but also really need the paging (the paging is great in a DataGrid, as opposed to...
1
2181
by: DotNetJunkies User | last post by:
Hi, I was wondering if it is possible to load datagrid into datalist programatically using ITemplate interface with the following structure and place intp placeholder control. PlaceHolder - DataList - DataGrid (DataList Item) I have hierarchical data that I want to display using webcontrols whilst calculating minimum cost for each courier with Compute() method in DataGrid.
3
2781
by: CVerma | last post by:
Hi, I have an embedded datagrid within a datalist. I am not able to perfrom paging in the datagrid. Any ideas? Here is my code: Here is my Simplegrid.cs file: using System; using System.Collections; using System.ComponentModel; using System.Data;
9
5065
by: tshad | last post by:
How do I find (and set) a couple of labels in the Footer after a DataGrid is filled? I have a bunch of DataGrids that get displayed nested inside a DataList. The datagrid looks like: ******************************************************************************* <asp:DataGrid visible="False" border=1
0
1702
by: Chris | last post by:
I've been searching all over and think I am close, but keep getting the error "Index out of range" when trying to reference a nested datagrid when an OnEditCommand event is raised. When the OnEditCommand event is raised, I try to do the following: 1. Find the selected datalist item in which the nested datagrid raised the event. (by calling getDataGridReference and returning the DataList's selectedIndex)
1
2583
by: needin4mation | last post by:
Hi, I have a datalist. In this datalist I have a datagrid. The datalist is the master. The datagrid is the detail. It works fine. I populate the datagrid inside of the datalist using the datalist's itemdatabound event. Now I need to do some work in the itemdatabound event of the datagrid that is nested. I can't seem to reference it. How can I reference it so that they page knows to look for that event? How can I get to the...
1
1559
by: weird0 | last post by:
What is the difference between a DataList control and DataGrid control ? How and where are DataLists used? Can somebody place some good links for its use.
1
1886
by: Brock | last post by:
First note that I am using Framework 1.1. I have an .aspx page that is displaying a list of employees, but only the Employee Number, First Name, Last Name, and Title. It is working great. I recessed it in a <Div></Divto allow scrolling of just the data, not the page. What I need to do is place a DataList (also in a <Div></Divto allow scrolling of just the data) to the right of the Datagrid to show 40 Employee Detail fields (listed top to...
17
2552
lee123
by: lee123 | last post by:
I know this is a free site and the moderators or anybody don't have to answer if they don't want to.. but if there is someone who knows how to answer this question please help with this one. i have changed my project so many times to try to get the results i want but can't seem to get this one thing to work the datagrid and datalist to work right. i have looked on the web to see if i could do it another way. and read so many books but there...
0
9117
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9679
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9676
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8542
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6390
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4955
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5156
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3141
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2508
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.