473,938 Members | 20,475 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

multirecord grid cells - how??

I need to output my data in a grid fashion but some of the cells will
have more than 1 record, I have been wrestling with the best solution
for this.

I need data in this fashion:
rowheader col1 col2 col3 col4
row1 data data data data
data data
data
row2 data data data

I am migrating an existing app so if you really want to see how I need
to output the data:

http://206.191.16.142/psait_spila/lm.../report2_e.cfm

I have loaded my jurisdiction column into a repeater and the years into
a datalist so I have my shell.

<table cellSpacing=0 cellPadding=0 width="90%" border=1>
<tr>
<th>Jurisdictio n </th><asp:repeate r id=rptYear runat="server">
<itemtemplate >
<th>
<%# Container.DataI tem %>
</th>
</itemtemplate>
</asp:repeater></tr><asp:datalis t id=dljurList runat="server"
cellpadding="0" cellspacing="0" >
<itemtemplate >

<tr>
<td>

<%# Container.DataI tem %>
</td>
<td>
<!--some control to outpu data properly here
-->
</td>
</tr>
</itemtemplate>

</asp:datalist>
</table>

But I need help on how to get my data into the table, I have used
looping constructs to get my data ordered in the proper fashion but
databinding the row does not work...

Object reference not set to an instance of an object.

I'm trying to fill a repeater or datalist when the year matches the
jursidiction, plus I have nulls, plus I have multiple records for some
years. My oop skills are weak so I have been trying to do this in a
procedural fashion.. and it aint workin .. any oop experts that can
show me the way, any help would be appreciated..

My code behind:

Public Class report2
Inherits System.Web.UI.U serControl


Protected rm As ResourceManager

Private yearparam As Integer =
httpContext.Cur rent.Request.Qu eryString("dec" )
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
'Setup the proper decade parameters
Dim YearArrList As New ArrayList (10)
'Setup the prov list for looping through later
Dim ProvArrList As New ArrayList
Dim ProvNameList As New ArrayList

Dim DBDataView As DataView

Dim stryear_from As String
Dim stryear_to As String
Dim intyear_from As String
Dim intyear_to As String
Dim i as Integer

Select Case yearparam
Case 1
'Declare strings to pass as db params
stryear_from = "1965/01/01"
stryear_to = "1974/12/31"
'Declare strings for array params
intyear_from = "1965"
intyear_to = "1974"

Case 2
stryear_from = "1975/01/01"
stryear_to = "1984/12/31"
intyear_from = 1975
intyear_to = 1984

End Select
For i = intyear_from to intyear_to
YearArrList.Add (i)
Next
rptYear.DataSou rce = YearArrList
rptYear.DataBin d ()
'************** *************** *************** *************** *************** *************
' Temporary DB stuff to move to ReportClass

Dim connection As OracleConnectio n = New
OracleConnectio n(Configuration Settings.AppSet tings("connecti onstring"))
connection.Open ()
'************** *************** *************** *************** *************** *************
'Get the provinces into the Arraylist
Dim rdrstoredParams (0) As OracleParameter

rdrstoredParams (0) = New OracleParameter ("provcur",
OracleDbType.Re fCursor, ParameterDirect ion.Output)
rdrstoredParams (0).Value = "provcur"
Dim provrdr As OracleDataReade r =
OracleHelperV2. ExecuteReader(c onnection, CommandType.Sto redProcedure,
"REPORT_MW_GETP ROVS_pkg.GETPRO VS",rdrstoredPa rams)

While provrdr.Read
ProvArrList.Add (provrdr("provi nce_id"))
If (Session("Langu age") Is "en-CA") Then
ProvNameList.Ad d (provrdr("engli sh_name"))
Else
ProvNameList.Ad d (provrdr("frenc h_name"))
End If

End While

ProvArrList.Ins ert (0,"1")


If (Session("Langu age") Is "en-CA") Then
ProvNameList.In sert (0,"Federal")
Else
ProvNameList.In sert (0,"Fédéral")
End If

dljurList.DataS ource = ProvNameList
dljurList.DataB ind ()

Dim storedParams(2) As OracleParameter
storedParams(0) = New OracleParameter ("datefrom",
OracleDbType.Va rchar2, ParameterDirect ion.Input)
storedParams(0) .Value = stryear_from

storedParams(1) = New OracleParameter ("dateto",
OracleDbType.Va rchar2, ParameterDirect ion.Input)
storedParams(1) .Value = stryear_to

storedParams(2) = New OracleParameter ("hourly_cursor ",
OracleDbType.Re fCursor, ParameterDirect ion.Output)
storedParams(2) .Value = "hourly_cur sor"

Dim rdr As OracleDataReade r =
OracleHelperV2. ExecuteReader(c onnection, CommandType.Sto redProcedure,
"REPORT_MW_HOUR LYADULT_pkg.GET _HOURLY_DATA",s toredParams)
Dim dset As Dataset =
OracleHelperV2. ExecuteDataset( connection, CommandType.Sto redProcedure,
"REPORT_MW_HOUR LYADULT_pkg.GET _HOURLY_DATA",s toredParams)

Dim x As String
Dim y As Integer
Dim n As String

For Each y in ProvArrList
For Each x in YearArrList
n = (x + 1)

n = "1/1/" & n
x = "1/1/" & x

Dim filterstatement As New StringBuilder
filterstatement .append ("effective_dat e >
#").Append(x).A ppend("#").Appe nd("And effective_date <
#").Append(n).A ppend("#").Appe nd("AND prov_prov_id = ").Append(y )
Dim Row As DataRow
Dim Filter As String = (filterstatemen t.ToString())
Dim MatchRows() As DataRow = dset.Tables("Ta ble").Select(Fi lter)
For Each Row In MatchRows

Response.Write( "<tr><td>" & Row("effective_ date").ToString () & "<br>" &
Row("minimum_wa ge_amount")& "<br>" & " " & Row("prov_prov_ id") &
"</td></tr>")
dlwagelist.Data Source = Row
dlwagelist.Data Bind ()

next
'rptwageinfo.Da taBind()
Next

Next
End Sub

End Class

End NameSpace


tia

dave

Nov 19 '05 #1
4 1209
One time use: Output into a table from your code behind.

Multi-use: Create a control (user or server) and encapsulate the
functionality.

While you may be able to "trick" the .NET controls to do what you want, it
is not the wisest means of accomplishing this task. Duct tape only last so
long. If someone asks for more functionality, you may find the duct tape you
set up ripping all over the place. Why not do it right the first time?

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************** ************
Think Outside the Box!
*************** ************
"dr****@canoema il.com" wrote:
I need to output my data in a grid fashion but some of the cells will
have more than 1 record, I have been wrestling with the best solution
for this.

I need data in this fashion:
rowheader col1 col2 col3 col4
row1 data data data data
data data
data
row2 data data data

I am migrating an existing app so if you really want to see how I need
to output the data:

http://206.191.16.142/psait_spila/lm.../report2_e.cfm

I have loaded my jurisdiction column into a repeater and the years into
a datalist so I have my shell.

<table cellSpacing=0 cellPadding=0 width="90%" border=1>
<tr>
<th>Jurisdictio n </th><asp:repeate r id=rptYear runat="server">
<itemtemplate >
<th>
<%# Container.DataI tem %>
</th>
</itemtemplate>
</asp:repeater></tr><asp:datalis t id=dljurList runat="server"
cellpadding="0" cellspacing="0" >
<itemtemplate >

<tr>
<td>

<%# Container.DataI tem %>
</td>
<td>
<!--some control to outpu data properly here
-->
</td>
</tr>
</itemtemplate>

</asp:datalist>
</table>

But I need help on how to get my data into the table, I have used
looping constructs to get my data ordered in the proper fashion but
databinding the row does not work...

Object reference not set to an instance of an object.

I'm trying to fill a repeater or datalist when the year matches the
jursidiction, plus I have nulls, plus I have multiple records for some
years. My oop skills are weak so I have been trying to do this in a
procedural fashion.. and it aint workin .. any oop experts that can
show me the way, any help would be appreciated..

My code behind:

Public Class report2
Inherits System.Web.UI.U serControl


Protected rm As ResourceManager

Private yearparam As Integer =
httpContext.Cur rent.Request.Qu eryString("dec" )
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
'Setup the proper decade parameters
Dim YearArrList As New ArrayList (10)
'Setup the prov list for looping through later
Dim ProvArrList As New ArrayList
Dim ProvNameList As New ArrayList

Dim DBDataView As DataView

Dim stryear_from As String
Dim stryear_to As String
Dim intyear_from As String
Dim intyear_to As String
Dim i as Integer

Select Case yearparam
Case 1
'Declare strings to pass as db params
stryear_from = "1965/01/01"
stryear_to = "1974/12/31"
'Declare strings for array params
intyear_from = "1965"
intyear_to = "1974"

Case 2
stryear_from = "1975/01/01"
stryear_to = "1984/12/31"
intyear_from = 1975
intyear_to = 1984

End Select
For i = intyear_from to intyear_to
YearArrList.Add (i)
Next
rptYear.DataSou rce = YearArrList
rptYear.DataBin d ()
'************** *************** *************** *************** *************** *************
' Temporary DB stuff to move to ReportClass

Dim connection As OracleConnectio n = New
OracleConnectio n(Configuration Settings.AppSet tings("connecti onstring"))
connection.Open ()
'************** *************** *************** *************** *************** *************
'Get the provinces into the Arraylist
Dim rdrstoredParams (0) As OracleParameter

rdrstoredParams (0) = New OracleParameter ("provcur",
OracleDbType.Re fCursor, ParameterDirect ion.Output)
rdrstoredParams (0).Value = "provcur"
Dim provrdr As OracleDataReade r =
OracleHelperV2. ExecuteReader(c onnection, CommandType.Sto redProcedure,
"REPORT_MW_GETP ROVS_pkg.GETPRO VS",rdrstoredPa rams)

While provrdr.Read
ProvArrList.Add (provrdr("provi nce_id"))
If (Session("Langu age") Is "en-CA") Then
ProvNameList.Ad d (provrdr("engli sh_name"))
Else
ProvNameList.Ad d (provrdr("frenc h_name"))
End If

End While

ProvArrList.Ins ert (0,"1")


If (Session("Langu age") Is "en-CA") Then
ProvNameList.In sert (0,"Federal")
Else
ProvNameList.In sert (0,"Fédéral" )
End If

dljurList.DataS ource = ProvNameList
dljurList.DataB ind ()

Dim storedParams(2) As OracleParameter
storedParams(0) = New OracleParameter ("datefrom",
OracleDbType.Va rchar2, ParameterDirect ion.Input)
storedParams(0) .Value = stryear_from

storedParams(1) = New OracleParameter ("dateto",
OracleDbType.Va rchar2, ParameterDirect ion.Input)
storedParams(1) .Value = stryear_to

storedParams(2) = New OracleParameter ("hourly_cursor ",
OracleDbType.Re fCursor, ParameterDirect ion.Output)
storedParams(2) .Value = "hourly_cur sor"

Dim rdr As OracleDataReade r =
OracleHelperV2. ExecuteReader(c onnection, CommandType.Sto redProcedure,
"REPORT_MW_HOUR LYADULT_pkg.GET _HOURLY_DATA",s toredParams)
Dim dset As Dataset =
OracleHelperV2. ExecuteDataset( connection, CommandType.Sto redProcedure,
"REPORT_MW_HOUR LYADULT_pkg.GET _HOURLY_DATA",s toredParams)

Dim x As String
Dim y As Integer
Dim n As String

For Each y in ProvArrList
For Each x in YearArrList
n = (x + 1)

n = "1/1/" & n
x = "1/1/" & x

Dim filterstatement As New StringBuilder
filterstatement .append ("effective_dat e >
#").Append(x).A ppend("#").Appe nd("And effective_date <
#").Append(n).A ppend("#").Appe nd("AND prov_prov_id = ").Append(y )
Dim Row As DataRow
Dim Filter As String = (filterstatemen t.ToString())
Dim MatchRows() As DataRow = dset.Tables("Ta ble").Select(Fi lter)
For Each Row In MatchRows

Response.Write( "<tr><td>" & Row("effective_ date").ToString () & "<br>" &
Row("minimum_wa ge_amount")& "<br>" & " " & Row("prov_prov_ id") &
"</td></tr>")
dlwagelist.Data Source = Row
dlwagelist.Data Bind ()

next
'rptwageinfo.Da taBind()
Next

Next
End Sub

End Class

End NameSpace


tia

dave

Nov 19 '05 #2
One more thought:
I recently worked on an application where a DataGrid was used. The
programmer used the Data binding event of the Grid to circumvent binding and
force it to do what he wished. It was an interesting system and I appreciated
the thinking outside of the box. BUT (big but), when it came to extending the
platform, it was a royal pain in the butt. Ultimately, we had to rip it apart
and do it the right way. If the person designing had not simply bolted on
something that worked, we would have had a solid foundation to work from.
Don't do that to those who come up behind you, much less to yourself.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************** ************
Think Outside the Box!
*************** ************
"dr****@canoema il.com" wrote:
I need to output my data in a grid fashion but some of the cells will
have more than 1 record, I have been wrestling with the best solution
for this.

I need data in this fashion:
rowheader col1 col2 col3 col4
row1 data data data data
data data
data
row2 data data data

I am migrating an existing app so if you really want to see how I need
to output the data:

http://206.191.16.142/psait_spila/lm.../report2_e.cfm

I have loaded my jurisdiction column into a repeater and the years into
a datalist so I have my shell.

<table cellSpacing=0 cellPadding=0 width="90%" border=1>
<tr>
<th>Jurisdictio n </th><asp:repeate r id=rptYear runat="server">
<itemtemplate >
<th>
<%# Container.DataI tem %>
</th>
</itemtemplate>
</asp:repeater></tr><asp:datalis t id=dljurList runat="server"
cellpadding="0" cellspacing="0" >
<itemtemplate >

<tr>
<td>

<%# Container.DataI tem %>
</td>
<td>
<!--some control to outpu data properly here
-->
</td>
</tr>
</itemtemplate>

</asp:datalist>
</table>

But I need help on how to get my data into the table, I have used
looping constructs to get my data ordered in the proper fashion but
databinding the row does not work...

Object reference not set to an instance of an object.

I'm trying to fill a repeater or datalist when the year matches the
jursidiction, plus I have nulls, plus I have multiple records for some
years. My oop skills are weak so I have been trying to do this in a
procedural fashion.. and it aint workin .. any oop experts that can
show me the way, any help would be appreciated..

My code behind:

Public Class report2
Inherits System.Web.UI.U serControl


Protected rm As ResourceManager

Private yearparam As Integer =
httpContext.Cur rent.Request.Qu eryString("dec" )
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
'Setup the proper decade parameters
Dim YearArrList As New ArrayList (10)
'Setup the prov list for looping through later
Dim ProvArrList As New ArrayList
Dim ProvNameList As New ArrayList

Dim DBDataView As DataView

Dim stryear_from As String
Dim stryear_to As String
Dim intyear_from As String
Dim intyear_to As String
Dim i as Integer

Select Case yearparam
Case 1
'Declare strings to pass as db params
stryear_from = "1965/01/01"
stryear_to = "1974/12/31"
'Declare strings for array params
intyear_from = "1965"
intyear_to = "1974"

Case 2
stryear_from = "1975/01/01"
stryear_to = "1984/12/31"
intyear_from = 1975
intyear_to = 1984

End Select
For i = intyear_from to intyear_to
YearArrList.Add (i)
Next
rptYear.DataSou rce = YearArrList
rptYear.DataBin d ()
'************** *************** *************** *************** *************** *************
' Temporary DB stuff to move to ReportClass

Dim connection As OracleConnectio n = New
OracleConnectio n(Configuration Settings.AppSet tings("connecti onstring"))
connection.Open ()
'************** *************** *************** *************** *************** *************
'Get the provinces into the Arraylist
Dim rdrstoredParams (0) As OracleParameter

rdrstoredParams (0) = New OracleParameter ("provcur",
OracleDbType.Re fCursor, ParameterDirect ion.Output)
rdrstoredParams (0).Value = "provcur"
Dim provrdr As OracleDataReade r =
OracleHelperV2. ExecuteReader(c onnection, CommandType.Sto redProcedure,
"REPORT_MW_GETP ROVS_pkg.GETPRO VS",rdrstoredPa rams)

While provrdr.Read
ProvArrList.Add (provrdr("provi nce_id"))
If (Session("Langu age") Is "en-CA") Then
ProvNameList.Ad d (provrdr("engli sh_name"))
Else
ProvNameList.Ad d (provrdr("frenc h_name"))
End If

End While

ProvArrList.Ins ert (0,"1")


If (Session("Langu age") Is "en-CA") Then
ProvNameList.In sert (0,"Federal")
Else
ProvNameList.In sert (0,"Fédéral" )
End If

dljurList.DataS ource = ProvNameList
dljurList.DataB ind ()

Dim storedParams(2) As OracleParameter
storedParams(0) = New OracleParameter ("datefrom",
OracleDbType.Va rchar2, ParameterDirect ion.Input)
storedParams(0) .Value = stryear_from

storedParams(1) = New OracleParameter ("dateto",
OracleDbType.Va rchar2, ParameterDirect ion.Input)
storedParams(1) .Value = stryear_to

storedParams(2) = New OracleParameter ("hourly_cursor ",
OracleDbType.Re fCursor, ParameterDirect ion.Output)
storedParams(2) .Value = "hourly_cur sor"

Dim rdr As OracleDataReade r =
OracleHelperV2. ExecuteReader(c onnection, CommandType.Sto redProcedure,
"REPORT_MW_HOUR LYADULT_pkg.GET _HOURLY_DATA",s toredParams)
Dim dset As Dataset =
OracleHelperV2. ExecuteDataset( connection, CommandType.Sto redProcedure,
"REPORT_MW_HOUR LYADULT_pkg.GET _HOURLY_DATA",s toredParams)

Dim x As String
Dim y As Integer
Dim n As String

For Each y in ProvArrList
For Each x in YearArrList
n = (x + 1)

n = "1/1/" & n
x = "1/1/" & x

Dim filterstatement As New StringBuilder
filterstatement .append ("effective_dat e >
#").Append(x).A ppend("#").Appe nd("And effective_date <
#").Append(n).A ppend("#").Appe nd("AND prov_prov_id = ").Append(y )
Dim Row As DataRow
Dim Filter As String = (filterstatemen t.ToString())
Dim MatchRows() As DataRow = dset.Tables("Ta ble").Select(Fi lter)
For Each Row In MatchRows

Response.Write( "<tr><td>" & Row("effective_ date").ToString () & "<br>" &
Row("minimum_wa ge_amount")& "<br>" & " " & Row("prov_prov_ id") &
"</td></tr>")
dlwagelist.Data Source = Row
dlwagelist.Data Bind ()

next
'rptwageinfo.Da taBind()
Next

Next
End Sub

End Class

End NameSpace


tia

dave

Nov 19 '05 #3
Thanks for the thoughts... So do you think that a custom control is the
way to go... there is no built in control that can handle my needs is
there??

Nov 19 '05 #4
in this project i`m working on currently "dataGridABC.It emDataBound +="
is all over the place
can u point me to some article showing this is a bad thing to do

TIA

Cowboy (Gregory A. Beamer) - MVP wrote:
One more thought:
I recently worked on an application where a DataGrid was used. The
programmer used the Data binding event of the Grid to circumvent binding and
force it to do what he wished. It was an interesting system and I appreciated
the thinking outside of the box. BUT (big but), when it came to extending the
platform, it was a royal pain in the butt. Ultimately, we had to rip it apart
and do it the right way. If the person designing had not simply bolted on
something that worked, we would have had a solid foundation to work from.
Don't do that to those who come up behind you, much less to yourself.

Nov 19 '05 #5

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

Similar topics

0
1817
by: Marc | last post by:
Hi all, Perplexed by this. I thought the sticky option was supposed to accomplish this task, but it doesn't seem to be working. Here is what I'm trying to accomplish. Window ---------------------------- | --Beginning of group-- | Cell1 Cell2 Cell3
0
1410
by: Steve | last post by:
Hi I have a db with 2 tables that I want to bind to a grid depending on a selection in a Dropdownlist Also I want to be able to select a row from the gris to fill some textboxes. The databases are static in that they will not be updated they are just for viewing I have everything working but not to perfection
1
2009
by: Steve | last post by:
Hi I have a db with 2 tables that I want to bind to a grid depending on a selection in a Dropdownlist Also I want to be able to select a row from the gris to fill some textboxes. The databases are static in that they will not be updated they are just for viewing I have everything working but not to perfection
1
1395
by: Google Jenny | last post by:
Hello. I would like to create a multirecord display in which each record is one row of my datasource. I would like to have control over the format. At first I thought I could use a DataGrid control and then realized a DataList control would be better. However, I don't understand exactly how to accomplish this. I'm pretty sure I have to figure out the formatting using the
2
1062
by: Marty | last post by:
Hi, I'm evaluating the Component One grid. I would like to know if this grid support my scenario, and secondly, what do I need in term of objects to achieve it. My application will receive a stream of data from a tcp/ip connection. This stream will be parsed and many datafields will be extracted from these messages (String processing is not an issue here). This incoming feed can receive, for example: 10 to 500 messages per seconds...
117
18699
by: phil-news-nospam | last post by:
Is there really any advantage to using DIV elements with float style properies, vs. the old method of TABLE and TR and TD? I'm finding that by using DIV, it still involves the same number of elements in the HTML to get everything just right. When you consider the class attribute on the DIV elements, there's not much size savings anymore for using DIV. There are other disadvantages to not using TABLE/TR/TD, such as the lack of ability...
0
4182
by: Gian Paolo | last post by:
this is something really i can't find a reason. I have a form with a tabcontrol with tree pages, in the second page there is a Data GRid View. Plus i have a class. When i open the form i "inizialize" the Data Grid View (add a data sorce, filled with notthing at staratup, and hide some columns) when i put a code in the txtCLCOD textbox start a searsh. If i foud something i popolate the Data grid view on the second page. Now the magic if i...
6
8012
by: Romulo NF | last post by:
Greetings again to everyone, Im back to show this grid componenet i´ve developed. With this grid you can show the data like a normal table, remove the rows that you need, add rows, import data, call determined functions, and edit the data already present What will you need to use the grid? A table with standard markup and an ID to call the script that will turn the table into a grid Parameters: tabelaID => id of the table that will...
3
3052
by: jacelyn2211 | last post by:
Hi, i have a grid / table in html form as followings code,:- function addCritr(curno){ var f = document.frmC5W002; // check val 1 & val 2 range if (f.txt_val1.value!="" && f.txt_val2.value!=""){
0
9963
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
11512
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
11281
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
10649
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9853
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
7377
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
6286
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4900
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3495
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.