Someone 'splain this to me

  • Thread starter Thread starter Mark Brown
  • Start date Start date
M

Mark Brown

I left a message here yesterday asking why the paging and sorting of my
datagrid wasn't working. Today, I created an identical datagrid and
associated code for paging and sorting called DataGrid2. The new datagrid
works perfectly with nearly identical code as DataGrid1. What would cause
this behavior? In a couple of other programs I've had that mysteriously
stopped working, I could comment out the line of code that stopped working,
re-type it verbatim and the program starts working again.

Mark
 
Mark said:
I left a message here yesterday asking why the paging and sorting of
my datagrid wasn't working. Today, I created an identical datagrid
and associated code for paging and sorting called DataGrid2. The new
datagrid works perfectly with nearly identical code as DataGrid1. What
would cause this behavior?

Nearly identical isn't identical...
In a couple of other programs I've
had that mysteriously stopped working, I could comment out the line
of code that stopped working, re-type it verbatim and the program
starts working again.

Are you using Option Strict On?

Are you switching into the design view? I find that sometimes severely
messes up html in VS2003, and if AutoEventWireup="false" gets changed, that
can be confusing.

Have you tried waving a large instruction manual at the monitor? :-)

Andrew
 
Are you working with multiple projects in a single solution?

I've found that occasionally VS will be helpful and not rebuild all projects
if it doesn't think it's necessary. This doesn't seem to work correctly
100% of the time. If you choose to "clean" you solution, and rebuild - does
that solve the issue?
 
Have you tried waving a large instruction manual at the monitor? :-)

Andrew

LOL! I think that's what I NEED to do just about everyday when something or
another stops working here...just wave a large instruction manual at the
monitor (and possibly some co-workers too!).

Mythran
 
Back
Top