473,405 Members | 2,354 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Datagrid Boolean Column Sorting

Raj
Hi,

When we are sorting the DataGrid Boolean column the grid is becoming
redcross.

I have my own PPMIPDataGridBoolColumn class inherited from
System.Windows.Forms.DataGridBoolColumn. In this inherited class I have one
DataGridValueChangedEventHandler event handler. I am overriding Edit() to
know the current state of the cell. I am overriding Paint() to know the if
the user has been editing the cell. I am also overriding the Commit() to
commit the cell's data in the underlying datasource.

In this whole scenario there is no problem if we donot sort the boolean
column and try to check and uncheck the checkboxes. When we sort the boolean
column and try to check the checkbox following is happening.

A dialogbox with caption Microsoft .Net Framework is coming with following
message with three buttons. "Details", "Continue" and "Quit"

************************************************** ********
"An unhandled exception has occured in your application. If you click
Continue, the application will ignore this error and attempt to continue. If
you click Quit, the application will be shut down immediately"
************************************************** ********

Clicking on "Quit" button is quits the application

If I click on "Continue" button another messagebox is coming with caption
"Error when committing the row to the original data source."
and message
"Error in the application. Do you want to correct the value?"

Whatever button you choose to click i.e. 'Yes' or 'No' the messaagebox is
going away but the red cross exists.

I have no clue why this is happening? Please help me I am in deep trouble.

Clicking on "Details" button shows the error message in details which I am
pasting it below.
************************************************** ********
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
PPMIP.Common.PPMIPException: Error in the application.
at PPMIP.Clients.OnlineForms.PPMIPDataGridBoolColumn. Paint(Graphics
vgraGraphic, Rectangle vrecBounds, CurrencyManager vcumSource, Int32
vintRowIndex, Brush vbruBack, Brush vruFore, Boolean vblnAlignToRight) in
c:\raj personal\ppmip\clients\onlineforms\ppmipdatagridbo olcolumn.cs:line 311

at
System.Windows.Forms.DataGridRelationshipRow.Paint CellContents(Graphics g,
Rectangle cellBounds, DataGridColumnStyle column, Brush backBr, Brush
foreBrush, Boolean alignToRight)

at System.Windows.Forms.DataGridRow.PaintData(Graphic s g, Rectangle
bounds, Int32 firstVisibleColumn, Int32 columnCount, Boolean alignToRight)

at System.Windows.Forms.DataGridRelationshipRow.Paint (Graphics g,
Rectangle bounds, Rectangle trueRowBounds, Int32 firstVisibleColumn, Int32
numVisibleColumns, Boolean alignToRight)

at System.Windows.Forms.DataGrid.PaintRows(Graphics g, Rectangle&
boundingRect)

at System.Windows.Forms.DataGrid.PaintGrid(Graphics g, Rectangle
gridBounds)

at System.Windows.Forms.DataGrid.OnPaint(PaintEventAr gs pe)

at System.Windows.Forms.Control.PaintWithErrorHandlin g(PaintEventArgs e,
Int16 layer, Boolean disposeEventArgs)

at System.Windows.Forms.Control.WmPaint(Message& m)

at System.Windows.Forms.Control.WndProc(Message& m)

at System.Windows.Forms.ControlNativeWindow.OnMessage (Message& m)

at System.Windows.Forms.ControlNativeWindow.WndProc(M essage& m)

at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg,
IntPtr wparam, IntPtr lparam)

************** Loaded Assemblies **************
mscorlib
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/microsoft.net/framework/v1.1.4322/mscorlib.dll
----------------------------------------
PPMIP
Assembly Version: 1.0.8.0
Win32 Version: 1.0.8.0
CodeBase: file:///C:/Raj%20Personal/PPMIP/Bin/Debug/PPMIP.exe
----------------------------------------
System.Windows.Forms
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dll
----------------------------------------
System
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dl
----------------------------------------
CommonClassCode
Assembly Version: 1.0.2032.24934
Win32 Version: 1.0.2032.24934
CodeBase: file:///C:/Raj%20Personal/PPMIP/Bin/Debug/CommonClassCode.DLL
----------------------------------------
PPMIP.Common.Resources
Assembly Version: 1.0.2032.23947
Win32 Version: 1.0.2032.23947
CodeBase:
file:///C:/Raj%20Personal/PPMIP/Bin/Debug/PPMIP.Common.Resources.DLL
----------------------------------------
System.Xml
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dll
----------------------------------------
System.Data
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system.data.dll
----------------------------------------
System.Drawing
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dll
----------------------------------------
System.Data.OracleClient
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.data.oracleclient/1.0.5000.0__b77a5c561934e089/system.data.oracleclient.dll
----------------------------------------
System.EnterpriseServices
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.enterpriseservices/1.0.5000.0__b03f5f7f11d50a3a/system.enterpriseservices.dll
----------------------------------------

************** JIT Debugging **************
To enable just in time (JIT) debugging, the config file for this
application or machine (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the machine
rather than being handled by this dialog.
************************************************** ********

Nov 17 '05 #1
2 2327
Raj wrote:
Hi,

When we are sorting the DataGrid Boolean column the grid is becoming
redcross.

I have my own PPMIPDataGridBoolColumn class inherited from
System.Windows.Forms.DataGridBoolColumn. In this inherited class I have one
DataGridValueChangedEventHandler event handler. I am overriding Edit() to
know the current state of the cell. I am overriding Paint() to know the if
the user has been editing the cell. I am also overriding the Commit() to
commit the cell's data in the underlying datasource.

In this whole scenario there is no problem if we donot sort the boolean
column and try to check and uncheck the checkboxes. When we sort the boolean
column and try to check the checkbox following is happening.

A dialogbox with caption Microsoft .Net Framework is coming with following
message with three buttons. "Details", "Continue" and "Quit"

************************************************** ********
"An unhandled exception has occured in your application. If you click
Continue, the application will ignore this error and attempt to continue. If
you click Quit, the application will be shut down immediately"
************************************************** ********

Clicking on "Quit" button is quits the application

If I click on "Continue" button another messagebox is coming with caption
"Error when committing the row to the original data source."
and message
"Error in the application. Do you want to correct the value?"

Whatever button you choose to click i.e. 'Yes' or 'No' the messaagebox is
going away but the red cross exists.

I have no clue why this is happening? Please help me I am in deep trouble.

Clicking on "Details" button shows the error message in details which I am
pasting it below.
************************************************** ********
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
PPMIP.Common.PPMIPException: Error in the application.
at PPMIP.Clients.OnlineForms.PPMIPDataGridBoolColumn. Paint(Graphics
vgraGraphic, Rectangle vrecBounds, CurrencyManager vcumSource, Int32
vintRowIndex, Brush vbruBack, Brush vruFore, Boolean vblnAlignToRight) in
c:\raj personal\ppmip\clients\onlineforms\ppmipdatagridbo olcolumn.cs:line 311

at
System.Windows.Forms.DataGridRelationshipRow.Paint CellContents(Graphics g,
Rectangle cellBounds, DataGridColumnStyle column, Brush backBr, Brush
foreBrush, Boolean alignToRight)

at System.Windows.Forms.DataGridRow.PaintData(Graphic s g, Rectangle
bounds, Int32 firstVisibleColumn, Int32 columnCount, Boolean alignToRight)

at System.Windows.Forms.DataGridRelationshipRow.Paint (Graphics g,
Rectangle bounds, Rectangle trueRowBounds, Int32 firstVisibleColumn, Int32
numVisibleColumns, Boolean alignToRight)

at System.Windows.Forms.DataGrid.PaintRows(Graphics g, Rectangle&
boundingRect)

at System.Windows.Forms.DataGrid.PaintGrid(Graphics g, Rectangle
gridBounds)

at System.Windows.Forms.DataGrid.OnPaint(PaintEventAr gs pe)

at System.Windows.Forms.Control.PaintWithErrorHandlin g(PaintEventArgs e,
Int16 layer, Boolean disposeEventArgs)

at System.Windows.Forms.Control.WmPaint(Message& m)

at System.Windows.Forms.Control.WndProc(Message& m)

at System.Windows.Forms.ControlNativeWindow.OnMessage (Message& m)

at System.Windows.Forms.ControlNativeWindow.WndProc(M essage& m)

at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg,
IntPtr wparam, IntPtr lparam)

************** Loaded Assemblies **************
mscorlib
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/microsoft.net/framework/v1.1.4322/mscorlib.dll
----------------------------------------
PPMIP
Assembly Version: 1.0.8.0
Win32 Version: 1.0.8.0
CodeBase: file:///C:/Raj%20Personal/PPMIP/Bin/Debug/PPMIP.exe
----------------------------------------
System.Windows.Forms
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dll
----------------------------------------
System
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dl
----------------------------------------
CommonClassCode
Assembly Version: 1.0.2032.24934
Win32 Version: 1.0.2032.24934
CodeBase: file:///C:/Raj%20Personal/PPMIP/Bin/Debug/CommonClassCode.DLL
----------------------------------------
PPMIP.Common.Resources
Assembly Version: 1.0.2032.23947
Win32 Version: 1.0.2032.23947
CodeBase:
file:///C:/Raj%20Personal/PPMIP/Bin/Debug/PPMIP.Common.Resources.DLL
----------------------------------------
System.Xml
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dll
----------------------------------------
System.Data
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system.data.dll
----------------------------------------
System.Drawing
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dll
----------------------------------------
System.Data.OracleClient
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.data.oracleclient/1.0.5000.0__b77a5c561934e089/system.data.oracleclient.dll
----------------------------------------
System.EnterpriseServices
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.enterpriseservices/1.0.5000.0__b03f5f7f11d50a3a/system.enterpriseservices.dll
----------------------------------------

************** JIT Debugging **************
To enable just in time (JIT) debugging, the config file for this
application or machine (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the machine
rather than being handled by this dialog.
************************************************** ********

The reason you are getting the RedCross in the datagrid is because of
you overriding the paint method. I had the same problem. What is
probably happening is that you are referencing a member of your class
that is set to nothing before you instantiate the class. Since the
designer runs the paint method to show it on the screen it gets an
exception when you try to run the paint method. Look through your code,
and see if there are any variables that would be nothing if you just ran
the paint method by itself. If there are, enclose the entire function
in a if (Var != null). I think that is the right code, do mostly VB.
then at least you will get ride of the redcross. There is probably a
better way to do that. something to do with checking if you are in
designer mode, I don't know what it is though.

Chris
Nov 17 '05 #2
Raj
Hi,

Chris thank you for your answer. I went through my code and saw there is no
variables that is becoming nothing. So the problem is still there. I have got
no clue what is happening.
Does anyone know how to solve this problem.

Regards
Raj

"Chris" wrote:
Raj wrote:
Hi,

When we are sorting the DataGrid Boolean column the grid is becoming
redcross.

I have my own PPMIPDataGridBoolColumn class inherited from
System.Windows.Forms.DataGridBoolColumn. In this inherited class I have one
DataGridValueChangedEventHandler event handler. I am overriding Edit() to
know the current state of the cell. I am overriding Paint() to know the if
the user has been editing the cell. I am also overriding the Commit() to
commit the cell's data in the underlying datasource.

In this whole scenario there is no problem if we donot sort the boolean
column and try to check and uncheck the checkboxes. When we sort the boolean
column and try to check the checkbox following is happening.

A dialogbox with caption Microsoft .Net Framework is coming with following
message with three buttons. "Details", "Continue" and "Quit"

************************************************** ********
"An unhandled exception has occured in your application. If you click
Continue, the application will ignore this error and attempt to continue. If
you click Quit, the application will be shut down immediately"
************************************************** ********

Clicking on "Quit" button is quits the application

If I click on "Continue" button another messagebox is coming with caption
"Error when committing the row to the original data source."
and message
"Error in the application. Do you want to correct the value?"

Whatever button you choose to click i.e. 'Yes' or 'No' the messaagebox is
going away but the red cross exists.

I have no clue why this is happening? Please help me I am in deep trouble.

Clicking on "Details" button shows the error message in details which I am
pasting it below.
************************************************** ********
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
PPMIP.Common.PPMIPException: Error in the application.
at PPMIP.Clients.OnlineForms.PPMIPDataGridBoolColumn. Paint(Graphics
vgraGraphic, Rectangle vrecBounds, CurrencyManager vcumSource, Int32
vintRowIndex, Brush vbruBack, Brush vruFore, Boolean vblnAlignToRight) in
c:\raj personal\ppmip\clients\onlineforms\ppmipdatagridbo olcolumn.cs:line 311

at
System.Windows.Forms.DataGridRelationshipRow.Paint CellContents(Graphics g,
Rectangle cellBounds, DataGridColumnStyle column, Brush backBr, Brush
foreBrush, Boolean alignToRight)

at System.Windows.Forms.DataGridRow.PaintData(Graphic s g, Rectangle
bounds, Int32 firstVisibleColumn, Int32 columnCount, Boolean alignToRight)

at System.Windows.Forms.DataGridRelationshipRow.Paint (Graphics g,
Rectangle bounds, Rectangle trueRowBounds, Int32 firstVisibleColumn, Int32
numVisibleColumns, Boolean alignToRight)

at System.Windows.Forms.DataGrid.PaintRows(Graphics g, Rectangle&
boundingRect)

at System.Windows.Forms.DataGrid.PaintGrid(Graphics g, Rectangle
gridBounds)

at System.Windows.Forms.DataGrid.OnPaint(PaintEventAr gs pe)

at System.Windows.Forms.Control.PaintWithErrorHandlin g(PaintEventArgs e,
Int16 layer, Boolean disposeEventArgs)

at System.Windows.Forms.Control.WmPaint(Message& m)

at System.Windows.Forms.Control.WndProc(Message& m)

at System.Windows.Forms.ControlNativeWindow.OnMessage (Message& m)

at System.Windows.Forms.ControlNativeWindow.WndProc(M essage& m)

at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg,
IntPtr wparam, IntPtr lparam)

************** Loaded Assemblies **************
mscorlib
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/microsoft.net/framework/v1.1.4322/mscorlib.dll
----------------------------------------
PPMIP
Assembly Version: 1.0.8.0
Win32 Version: 1.0.8.0
CodeBase: file:///C:/Raj%20Personal/PPMIP/Bin/Debug/PPMIP.exe
----------------------------------------
System.Windows.Forms
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dll
----------------------------------------
System
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dl
----------------------------------------
CommonClassCode
Assembly Version: 1.0.2032.24934
Win32 Version: 1.0.2032.24934
CodeBase: file:///C:/Raj%20Personal/PPMIP/Bin/Debug/CommonClassCode.DLL
----------------------------------------
PPMIP.Common.Resources
Assembly Version: 1.0.2032.23947
Win32 Version: 1.0.2032.23947
CodeBase:
file:///C:/Raj%20Personal/PPMIP/Bin/Debug/PPMIP.Common.Resources.DLL
----------------------------------------
System.Xml
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dll
----------------------------------------
System.Data
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system.data.dll
----------------------------------------
System.Drawing
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dll
----------------------------------------
System.Data.OracleClient
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.data.oracleclient/1.0.5000.0__b77a5c561934e089/system.data.oracleclient.dll
----------------------------------------
System.EnterpriseServices
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.573
CodeBase:
file:///c:/windows/assembly/gac/system.enterpriseservices/1.0.5000.0__b03f5f7f11d50a3a/system.enterpriseservices.dll
----------------------------------------

************** JIT Debugging **************
To enable just in time (JIT) debugging, the config file for this
application or machine (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the machine
rather than being handled by this dialog.
************************************************** ********

The reason you are getting the RedCross in the datagrid is because of
you overriding the paint method. I had the same problem. What is
probably happening is that you are referencing a member of your class
that is set to nothing before you instantiate the class. Since the
designer runs the paint method to show it on the screen it gets an
exception when you try to run the paint method. Look through your code,
and see if there are any variables that would be nothing if you just ran
the paint method by itself. If there are, enclose the entire function
in a if (Var != null). I think that is the right code, do mostly VB.
then at least you will get ride of the redcross. There is probably a
better way to do that. something to do with checking if you are in
designer mode, I don't know what it is though.

Chris

Nov 17 '05 #3

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

Similar topics

2
by: DelphiBlue | last post by:
I have a Nested Datagrid that is using a data relations to tie the parent child datagrids together. All is working well with the display but I am having some issues trying to sort the child...
1
by: newbie_csharp | last post by:
Hi, how can I write a statement for a DataGrid's Column? for example one of my column should be a checkbox but the table's field is not boolean: DataGridBoolColumn boolCol = new...
0
by: ZS | last post by:
Hi, I have a boolean column in my datagrid. During runtime when I check the checkbox there are actually Three states for the checkbox. So I have to actually double click to change from true to...
5
by: ZS | last post by:
Hi, I have a boolean column in my datagrid. During runtime when I check the checkbox there are actually Three states for the checkbox. So I have to actually double click to change from true to...
2
by: Baren | last post by:
Hi!, I am using the following CSS class for the DataGrid Head column wherein i am sorting the recrods. The style works fine.. By default it puts an underline for each header column. The underlin...
3
by: Gene Hubert | last post by:
I'm using DataTable.ImportRow to move data from one datatable to another... Dim dt, dtTarget As DataTable Dim dr As DataRow dt = DirectCast(Me.DataSource, DataTable) dtTarget = dt.Clone...
5
by: Kejpa | last post by:
Hi, How do you write a Rowfilter for a boolean column? col1=true col1='true' col1= 1 col1= -1 Will all render an exception: Column 'col1' does not belong to table Test. Any thoughts?
3
by: Art | last post by:
Hi, I need some advice with a binary column in a DataGrid. Everything seems fine except for one thing. In order to check a box, I have to click on it once to select it, and then click again to...
2
by: Brett Romero | last post by:
I convert a collection to DataSet, reference the first table and throw that into a DataTable. The DataTable is used as a DataSource for a DataGrid. The DataGrid has an associated GridTableSyle. ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
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...
0
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.