In search of a VB wizard

Code, Incoming! It's messy, yes. I've commented out some earlier
approaches if only to keep in front of me what didn't work. And
there's a structural problem in there that for the moment I'm ignoring.



Details button with the Employee Basic Adapter declaration set to the
form instead of the `sender' object is:





Error Detail

============

Object variable or With block variable not set.





Stack Trace

===========

at

Microsoft.VisualBasic.CompilerServices.Symbols.Container..ctor(Object

Instance)

at

Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateGet(Object

Instance, Type Type, String MemberName, Object[] Arguments, String[]
ArgumentNames, Type[] TypeArguments, Boolean[] CopyBack)

at Script.DMRCorAct_AfterFieldChange(Object sender,
DataColumnChangeEventArgs args)

at System.Data.DataColumnChangeEventHandler.Invoke(Object sender,
DataColumnChangeEventArgs e)

at System.Data.DataTable.OnColumnChanged(DataColumnChangeEventArgs e)

at

Epicor.Mfg.BO.CorrectiveActionDataSet.DMRCorActDataTable.OnColumnChanged

(DataColumnChangeEventArgs e)

at System.Data.DataRow.set_Item(DataColumn column, Object value)

at System.Data.DataRowView.SetColumnValue(DataColumn column, Object

value)

at System.Data.DataRowView.set_Item(String property, Object value)

at

Epicor.Mfg.UI.FrameWork.EpiUltraCombo.EpiUltraCombo_Validating(Object

sender, CancelEventArgs e)



With it set to `Sender' I get:

Error Detail

============

Object reference not set to an instance of an object.





Stack Trace

===========

at Epicor.Mfg.UI.Adapters.EmpBasicAdapter.GetByID(String empID)

at Script.DMRCorAct_AfterFieldChange(Object sender,
DataColumnChangeEventArgs args)

at System.Data.DataColumnChangeEventHandler.Invoke(Object sender,
DataColumnChangeEventArgs e)

at System.Data.DataTable.OnColumnChanged(DataColumnChangeEventArgs e)

at
Epicor.Mfg.BO.CorrectiveActionDataSet.DMRCorActDataTable.OnColumnChanged(DataColumnChangeEventArgs
e)

at System.Data.DataRow.set_Item(DataColumn column, Object value)

at System.Data.DataRowView.SetColumnValue(DataColumn column, Object
value)

at System.Data.DataRowView.set_Item(String property, Object value)

at
Epicor.Mfg.UI.FrameWork.EpiUltraCombo.EpiUltraCombo_Validating(Object
sender, CancelEventArgs e)





'//**************************************************

'// Custom VB.NET code for CorrectiveActionForm

'// Created: 6/20/2008 2:21:37 PM

'//**************************************************

Imports System

Imports System.Data

Imports System.Diagnostics

Imports System.Windows.Forms

Imports System.ComponentModel

Imports Microsoft.VisualBasic

Imports Epicor.Mfg.UI

Imports Epicor.Mfg.UI.FrameWork

Imports Epicor.Mfg.UI.ExtendedProps

Imports Epicor.Mfg.UI.FormFunctions

Imports Epicor.Mfg.UI.Customization

Imports Epicor.Mfg.UI.Adapters

Imports Epicor.Mfg.UI.Searches

Imports Epicor.Mfg.BO





Module Script





'// ** Wizard Insert Location - Do Not Remove 'Begin/End
Wizard Added Module Level Variables' Comments! **

'// Begin Wizard Added Module Level Variables **



'// End Wizard Added Module Level Variables **





'// Add Custom Module Level Variables Here **

'Define the variables



Sub InitializeCustomCode()





'// ** Wizard Insert Location - Do not delete
'Begin/End Wizard Added Variable Intialization' lines **

'// Begin Wizard Added Variable Intialization



'// End Wizard Added Variable Intialization

'// Begin Custom Method Calls



'Private WithEvents tdtDueDate_e8c1ca29-5efa-4c36-aaef-962e2650a984 As
Epicor.Mfg.UI.FrameWork.EpiDateTimeEditor()



CreateRowRuleDMRCorActShortChar01Equals_Equals()

'// End Custom Method Calls

End Sub







Sub DestroyCustomCode()





'// ** Wizard Insert Location - Do not delete
'Begin/End Wizard Added Object Disposal' lines **

'// Begin Wizard Added Object Disposal



'// End Wizard Added Object Disposal

'// Begin Custom Code Disposal



'// End Custom Code Disposal

End Sub









Private Sub DMRCorAct_AfterFieldChange(ByVal sender As
object, ByVal args As DataColumnChangeEventArgs) Handles
DMRCorAct_Column.ColumnChanged



'// ** Argument Properties and Uses **

'// args.Row("[FieldName]")

'// args.Column,
args.ProposedValue, args.Row

'

'Add Event Handler Code



Dim edvDueDate As EpiDataView =
CType(oTrans.EpiDataViews("DMRCorAct"), EpiDataView)

Dim datNow As DateTime = DateTime.Now



Dim tdtDueDateCtrl As EpiDateTimeEditor =
CType(csm.GetNativeControlReference("e8c1ca29-5efa-4c36-aaef-962e2650a984"),
EpiDateTimeEditor)

Dim tdtDueDate As DateTime



'Make sure tdtDueDate is not null. Bad things happen
if it's null

If String.IsNullOrEmpty(tdtDueDateCtrl.ToString()) Then

tdtDueDate = DateTime.Now

Else

tdtDueDate = tdtDueDateCtrl.value

End If





Select Case args.Column.ColumnName



Case "ShortChar01"



'Automatically set Due Date based on selected
priority

Select CASE
ucbPriority.Text 'Would add hours for the top 3 but Vantage only sees
days despite SQL setup of 'DateTime' format. Humph!

CASE
"Emergency"


tdtDueDate = datNow.AddDays(0)



CASE "High"


tdtDueDate = datNow.AddDays(1)



CASE "Medium"


tdtDueDate = datNow.AddDays(3)



CASE "Low"


tdtDueDate = datNow.AddDays(7)



CASE
"Scheduled"


msgBox("Enter Scheduled Date", 65, "Manual Date Entry")



CASE Else


msgBox("Enter Work Order Priority", 65, "Priority Required")



End Select



'Set Due Date in the table

tdtDueDateCtrl.EpiFormat = "G"
'Set general date/time format so
that hours display, I wish


edvDueDate.dataView(edvDueDate.Row)("DuDate") = tdtDueDate

edvDueDate.Notify( New
EpiNotifyArgs("",edvDueDate.Row, edvDueDate.Column)) 'Tell the form
about it...



'Cleanup!

' edvDueDate = Nothing

datNow = Nothing

tdtDueDateCtrl = Nothing

tdtDueDate = Nothing



'Now add the email address...

' Case "ShortChar02"
'Can't use
ShortChar02 unless I copy the base method too - it overloads when I
want this in addition to vice instead of

' Dim edvCorAct As EpidataView =
Ctype(oTrans.EpiDataViews("DMRCorAct"), EpiDataView)
'Need this to get the right row of the table

' Dim strEmpID As String =
edvCorAct.dataview(edvCorAct.Row)("AsigndTo") 'Gets
us the ID we need to go into the EmpBasic table

Dim strEmpID As String =
edvDueDate.DataView(edvDueDate.Row)("AsigndTo")



msgBox(strEmpID, 65, "Employee ID") 'make sure I've
got an ID here....and I do



Dim varEmpBasic As EmpBasicAdapter = New
EmpBasicAdapter(CorrectiveActionForm)
'Connecting to the Employee Basic table with access to the email
field; edvDueDate is an instance of an object

Dim txtEpiEmpEmail as EpiTextBox =
CType(csm.GetNativeControlReference("5eb70999-6239-4928-8053-639382dfca3c"),
EpiTextBox) 'Will be helpful in displaying the email address



varEmpBasic.BOConnect()
'This shouldn't be an issue...



Dim Dummy as Boolean = varEmpBasic.GetByID(strEmpID)
'Now, something here is being
combative...

' Dim dvEmpBasic As DataView = New
DataView(varEmpBasic.EmpBasicData.Tables("EmpBasic"))

Dim dvEmpBasic =
Ctype(oTrans.EpiDataViews("EmpBasic"), EpiDataView) 'Set up Data
View to read Employee Email from table

Dim strEmail As String =
dvEmpBasic.DataView.Item(0)("EMailAddress")
'Get Employee's email address, I hope
'Will hold the email address but must
determine row before assigning a value



'
edvCorAct.dataView(edvCorAct.Row)("ShortChar02") = strEmail
'Put
email address into local table

edvDueDate.dataView(edvDueDate.Row)("ShortChar02") =
strEmail

' edvCorAct.Notify( New EpiNotifyArgs("",edvCorAct.Row,
edvCorAct.Column)) 'Refresh screen wtih email address



Case Else



End Select

edvDueDate.Notify( New
EpiNotifyArgs("",edvDueDate.Row, edvDueDate.Column))

End Sub







Private Sub CreateRowRuleDMRCorActShortChar01Equals_Equals

'// Description: Flag Emergency WO

'// **** begin autogenerated code ****

Dim exclamationDMRCorAct_Priority_Flag As
RuleAction = RuleAction.SetImage(oTrans, "DMRCorAct.Priority Flag",
"Exclamation")



Dim ruleActions As RuleAction() = new
RuleAction() {exclamationDMRCorAct_Priority_Flag}



Dim rrDMRCorActShortChar01Equals_Equals As
RowRule = New RowRule("ShortChar01", RuleCondition.Equals, "Emergency"
, ruleActions)

'// add to EpiDataView



CType(oTrans.EpiDataViews("DMRCorAct"),
EpiDataView).AddRowRule(rrDMRCorActShortChar01Equals_Equals)

'// **** end autogenerated code ****



End Sub






End Module
I've got what can NOT be that huge a problem with some customization
I'm trying to do. In the Corrective Action form, I'm trying to add
the email address of the person assigned to do the work to a new text
box and a short character field in the table. Fine, wonderful,
hallelujah and all that. But, following the code examples get me a
'Object Reference not set to an instance of an object' message.
Having spent more than two days in an "Is!" vs "Is not!" shouting
match with my database, I feel like a cranky 8 year old and have made
no progress on the point. Enough. I did 8 once and don't care to
repeat it.

Can anyone enlighten me on something like this? I'm running 403D.

Lynn Thomas
SAIC
Lynn,

Post the custom module code and maybe someone will see the root cause.

Rob Brown

--- On Wed, 7/9/08, Lynn Thomas 83 <thomasl@...> wrote:

From: Lynn Thomas 83 <thomasl@...>
Subject: [Vantage] In search of a VB wizard
To: vantage@yahoogroups.com
Date: Wednesday, July 9, 2008, 2:13 PM






I've got what can NOT be that huge a problem with some customization
I'm trying to do. In the Corrective Action form, I'm trying to add
the email address of the person assigned to do the work to a new text
box and a short character field in the table. Fine, wonderful,
hallelujah and all that. But, following the code examples get me a
'Object Reference not set to an instance of an object' message.
Having spent more than two days in an "Is!" vs "Is not!" shouting
match with my database, I feel like a cranky 8 year old and have made
no progress on the point. Enough. I did 8 once and don't care to
repeat it.

Can anyone enlighten me on something like this? I'm running 403D.

Lynn Thomas
SAIC
Just speaking from C# experience, it could be your code defines a class that hasn't been created yet.
like you said
dim x as something
x = 1
when in fact you need to create it first,
dim x as something
x = new something
x = 1

That's when I see that message the most, or referring to variables outside their scope.





----- Original Message ----
From: Robert Brown <robertb_versa@...>
To: vantage@yahoogroups.com
Sent: Wednesday, July 9, 2008 2:23:43 PM
Subject: Re: [Vantage] In search of a VB wizard


Lynn,

Post the custom module code and maybe someone will see the root cause.

Rob Brown

--- On Wed, 7/9/08, Lynn Thomas 83 <thomasl@cranepm10. com> wrote:

From: Lynn Thomas 83 <thomasl@cranepm10. com>
Subject: [Vantage] In search of a VB wizard
To: vantage@yahoogroups .com
Date: Wednesday, July 9, 2008, 2:13 PM

I've got what can NOT be that huge a problem with some customization
I'm trying to do. In the Corrective Action form, I'm trying to add
the email address of the person assigned to do the work to a new text
box and a short character field in the table. Fine, wonderful,
hallelujah and all that. But, following the code examples get me a
'Object Reference not set to an instance of an object' message.
Having spent more than two days in an "Is!" vs "Is not!" shouting
match with my database, I feel like a cranky 8 year old and have made
no progress on the point. Enough. I did 8 once and don't care to
repeat it.

Can anyone enlighten me on something like this? I'm running 403D.

Lynn Thomas
SAIC






[Non-text portions of this message have been removed]
The "Object Reference not set to an instance of an object" message is caused by a lot of things in the vantage code customizations. You can kind of pin point where the error happens by clicking on the "details" button and scrolling down the list until you see the line number of the code that is causing the problem.

Thanks,
Kunal



----- Original Message ----
From: Tony Hughes <thughes281@...>
To: vantage@yahoogroups.com
Sent: Thursday, July 10, 2008 8:35:00 AM
Subject: Re: [Vantage] In search of a VB wizard


Just speaking from C# experience, it could be your code defines a class that hasn't been created yet.
like you said
dim x as something
x = 1
when in fact you need to create it first,
dim x as something
x = new something
x = 1

That's when I see that message the most, or referring to variables outside their scope.

----- Original Message ----
From: Robert Brown <robertb_versa@ yahoo.com>
To: vantage@yahoogroups .com
Sent: Wednesday, July 9, 2008 2:23:43 PM
Subject: Re: [Vantage] In search of a VB wizard

Lynn,

Post the custom module code and maybe someone will see the root cause.

Rob Brown

--- On Wed, 7/9/08, Lynn Thomas 83 <thomasl@cranepm10. com> wrote:

From: Lynn Thomas 83 <thomasl@cranepm10. com>
Subject: [Vantage] In search of a VB wizard
To: vantage@yahoogroups .com
Date: Wednesday, July 9, 2008, 2:13 PM

I've got what can NOT be that huge a problem with some customization
I'm trying to do. In the Corrective Action form, I'm trying to add
the email address of the person assigned to do the work to a new text
box and a short character field in the table. Fine, wonderful,
hallelujah and all that. But, following the code examples get me a
'Object Reference not set to an instance of an object' message.
Having spent more than two days in an "Is!" vs "Is not!" shouting
match with my database, I feel like a cranky 8 year old and have made
no progress on the point. Enough. I did 8 once and don't care to
repeat it.

Can anyone enlighten me on something like this? I'm running 403D.

Lynn Thomas
SAIC

[Non-text portions of this message have been removed]






[Non-text portions of this message have been removed]
I have found with the customizations that you need to bring the field in
through the Object Explorer. You can't just call them in through written
code


Kersten MacLennan
IT/ERP Analyst
Semrock, Inc.
3625 Buffalo Rd.,
Suite 6
Rochester, NY 14624
585-594-7009
585-594-7095 fax

kmaclennan@...

The Standard in Optical Filters for Biotech & Analytical Instrumentation


Hundreds of Thousands of Ion Beam Sputtered filters delivered -
extensive inventory now!

The information contained in this message and any attachments may be
privileged, confidential, and protected from disclosure. If the reader
of this message is not the intended recipient, or any agent responsible
for delivering this message to the intended recipient, you are hereby
notified that any dissemination, distribution, or copying of this
communication may be unlawful and therefore strictly prohibited. If you
received this message in error, please reply to the message and delete
it. Thank you




________________________________

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of Kunal Ganguly
Sent: Thursday, July 10, 2008 9:59 AM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] In search of a VB wizard



The "Object Reference not set to an instance of an object" message is
caused by a lot of things in the vantage code customizations. You can
kind of pin point where the error happens by clicking on the "details"
button and scrolling down the list until you see the line number of the
code that is causing the problem.

Thanks,
Kunal

----- Original Message ----
From: Tony Hughes <thughes281@... <mailto:thughes281%40yahoo.com>
>
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
Sent: Thursday, July 10, 2008 8:35:00 AM
Subject: Re: [Vantage] In search of a VB wizard

Just speaking from C# experience, it could be your code defines a class
that hasn't been created yet.
like you said
dim x as something
x = 1
when in fact you need to create it first,
dim x as something
x = new something
x = 1

That's when I see that message the most, or referring to variables
outside their scope.

----- Original Message ----
From: Robert Brown <robertb_versa@ yahoo.com>
To: vantage@yahoogroups .com
Sent: Wednesday, July 9, 2008 2:23:43 PM
Subject: Re: [Vantage] In search of a VB wizard

Lynn,

Post the custom module code and maybe someone will see the root cause.

Rob Brown

--- On Wed, 7/9/08, Lynn Thomas 83 <thomasl@cranepm10. com> wrote:

From: Lynn Thomas 83 <thomasl@cranepm10. com>
Subject: [Vantage] In search of a VB wizard
To: vantage@yahoogroups .com
Date: Wednesday, July 9, 2008, 2:13 PM

I've got what can NOT be that huge a problem with some customization
I'm trying to do. In the Corrective Action form, I'm trying to add
the email address of the person assigned to do the work to a new text
box and a short character field in the table. Fine, wonderful,
hallelujah and all that. But, following the code examples get me a
'Object Reference not set to an instance of an object' message.
Having spent more than two days in an "Is!" vs "Is not!" shouting
match with my database, I feel like a cranky 8 year old and have made
no progress on the point. Enough. I did 8 once and don't care to
repeat it.

Can anyone enlighten me on something like this? I'm running 403D.

Lynn Thomas
SAIC

[Non-text portions of this message have been removed]

[Non-text portions of this message have been removed]






[Non-text portions of this message have been removed]
I've spent lots of time scrolling through the details, but see no line
numbers. That would be too easy, I think!

Lynn

--- In vantage@yahoogroups.com, Kunal Ganguly <kunal_vantage@...> wrote:
>
> The "Object Reference not set to an instance of an object" message
is caused by a lot of things in the vantage code customizations. You
can kind of pin point where the error happens by clicking on the
"details" button and scrolling down the list until you see the line
number of the code that is causing the problem.
>
> Thanks,
> Kunal
>
>
>
> ----- Original Message ----
> From: Tony Hughes <thughes281@...>
> To: vantage@yahoogroups.com
> Sent: Thursday, July 10, 2008 8:35:00 AM
> Subject: Re: [Vantage] In search of a VB wizard
>
>
> Just speaking from C# experience, it could be your code defines a
class that hasn't been created yet.
> like you said
> dim x as something
> x = 1
> when in fact you need to create it first,
> dim x as something
> x = new something
> x = 1
>
> That's when I see that message the most, or referring to variables
outside their scope.
>
> ----- Original Message ----
> From: Robert Brown <robertb_versa@ yahoo.com>
> To: vantage@yahoogroups .com
> Sent: Wednesday, July 9, 2008 2:23:43 PM
> Subject: Re: [Vantage] In search of a VB wizard
>
> Lynn,
>
> Post the custom module code and maybe someone will see the root cause.
>
> Rob Brown
>
> --- On Wed, 7/9/08, Lynn Thomas 83 <thomasl@cranepm10. com> wrote:
>
> From: Lynn Thomas 83 <thomasl@cranepm10. com>
> Subject: [Vantage] In search of a VB wizard
> To: vantage@yahoogroups .com
> Date: Wednesday, July 9, 2008, 2:13 PM
>
> I've got what can NOT be that huge a problem with some customization
> I'm trying to do. In the Corrective Action form, I'm trying to add
> the email address of the person assigned to do the work to a new text
> box and a short character field in the table. Fine, wonderful,
> hallelujah and all that. But, following the code examples get me a
> 'Object Reference not set to an instance of an object' message.
> Having spent more than two days in an "Is!" vs "Is not!" shouting
> match with my database, I feel like a cranky 8 year old and have made
> no progress on the point. Enough. I did 8 once and don't care to
> repeat it.
>
> Can anyone enlighten me on something like this? I'm running 403D.
>
> Lynn Thomas
> SAIC
>
> [Non-text portions of this message have been removed]
>
>
>
>
>
>
> [Non-text portions of this message have been removed]
>
POST YOUR CODE

--- On Thu, 7/10/08, Lynn Thomas 83 <thomasl@...> wrote:

From: Lynn Thomas 83 <thomasl@...>
Subject: [Vantage] Re: In search of a VB wizard
To: vantage@yahoogroups.com
Date: Thursday, July 10, 2008, 12:30 PM






I've spent lots of time scrolling through the details, but see no line
numbers. That would be too easy, I think!

Lynn

--- In vantage@yahoogroups .com, Kunal Ganguly <kunal_vantage@ ...> wrote:
>
> The "Object Reference not set to an instance of an object" message
is caused by a lot of things in the vantage code customizations. You
can kind of pin point where the error happens by clicking on the
"details" button and scrolling down the list until you see the line
number of the code that is causing the problem.
>
> Thanks,
> Kunal
>
>
>
> ----- Original Message ----
> From: Tony Hughes <thughes281@ ...>
> To: vantage@yahoogroups .com
> Sent: Thursday, July 10, 2008 8:35:00 AM
> Subject: Re: [Vantage] In search of a VB wizard
>
>
> Just speaking from C# experience, it could be your code defines a
class that hasn't been created yet.
> like you said
> dim x as something
> x = 1
> when in fact you need to create it first,
> dim x as something
> x = new something
> x = 1
>
> That's when I see that message the most, or referring to variables
outside their scope.
>
> ----- Original Message ----
> From: Robert Brown <robertb_versa@ yahoo.com>
> To: vantage@yahoogroups .com
> Sent: Wednesday, July 9, 2008 2:23:43 PM
> Subject: Re: [Vantage] In search of a VB wizard
>
> Lynn,
>
> Post the custom module code and maybe someone will see the root cause.
>
> Rob Brown
>
> --- On Wed, 7/9/08, Lynn Thomas 83 <thomasl@cranepm10. com> wrote:
>
> From: Lynn Thomas 83 <thomasl@cranepm10. com>
> Subject: [Vantage] In search of a VB wizard
> To: vantage@yahoogroups .com
> Date: Wednesday, July 9, 2008, 2:13 PM
>
> I've got what can NOT be that huge a problem with some customization
> I'm trying to do. In the Corrective Action form, I'm trying to add
> the email address of the person assigned to do the work to a new text
> box and a short character field in the table. Fine, wonderful,
> hallelujah and all that. But, following the code examples get me a
> 'Object Reference not set to an instance of an object' message.
> Having spent more than two days in an "Is!" vs "Is not!" shouting
> match with my database, I feel like a cranky 8 year old and have made
> no progress on the point. Enough. I did 8 once and don't care to
> repeat it.
>
> Can anyone enlighten me on something like this? I'm running 403D.
>
> Lynn Thomas
> SAIC
>
> [Non-text portions of this message have been removed]
>
>
>
>
>
>
> [Non-text portions of this message have been removed]
>
second that! :)

also, if you can, post the contents of the details button

Thanks,
Kunal



----- Original Message ----
From: Robert Brown <robertb_versa@...>
To: vantage@yahoogroups.com
Sent: Thursday, July 10, 2008 12:18:11 PM
Subject: Re: [Vantage] Re: In search of a VB wizard


POST YOUR CODE

--- On Thu, 7/10/08, Lynn Thomas 83 <thomasl@cranepm10. com> wrote:

From: Lynn Thomas 83 <thomasl@cranepm10. com>
Subject: [Vantage] Re: In search of a VB wizard
To: vantage@yahoogroups .com
Date: Thursday, July 10, 2008, 12:30 PM

I've spent lots of time scrolling through the details, but see no line
numbers. That would be too easy, I think!

Lynn

--- In vantage@yahoogroups .com, Kunal Ganguly <kunal_vantage@ ...> wrote:
>
> The "Object Reference not set to an instance of an object" message
is caused by a lot of things in the vantage code customizations. You
can kind of pin point where the error happens by clicking on the
"details" button and scrolling down the list until you see the line
number of the code that is causing the problem.
>
> Thanks,
> Kunal
>
>
>
> ----- Original Message ----
> From: Tony Hughes <thughes281@ ...>
> To: vantage@yahoogroups .com
> Sent: Thursday, July 10, 2008 8:35:00 AM
> Subject: Re: [Vantage] In search of a VB wizard
>
>
> Just speaking from C# experience, it could be your code defines a
class that hasn't been created yet.
> like you said
> dim x as something
> x = 1
> when in fact you need to create it first,
> dim x as something
> x = new something
> x = 1
>
> That's when I see that message the most, or referring to variables
outside their scope.
>
> ----- Original Message ----
> From: Robert Brown <robertb_versa@ yahoo.com>
> To: vantage@yahoogroups .com
> Sent: Wednesday, July 9, 2008 2:23:43 PM
> Subject: Re: [Vantage] In search of a VB wizard
>
> Lynn,
>
> Post the custom module code and maybe someone will see the root cause.
>
> Rob Brown
>
> --- On Wed, 7/9/08, Lynn Thomas 83 <thomasl@cranepm10. com> wrote:
>
> From: Lynn Thomas 83 <thomasl@cranepm10. com>
> Subject: [Vantage] In search of a VB wizard
> To: vantage@yahoogroups .com
> Date: Wednesday, July 9, 2008, 2:13 PM
>
> I've got what can NOT be that huge a problem with some customization
> I'm trying to do. In the Corrective Action form, I'm trying to add
> the email address of the person assigned to do the work to a new text
> box and a short character field in the table. Fine, wonderful,
> hallelujah and all that. But, following the code examples get me a
> 'Object Reference not set to an instance of an object' message.
> Having spent more than two days in an "Is!" vs "Is not!" shouting
> match with my database, I feel like a cranky 8 year old and have made
> no progress on the point. Enough. I did 8 once and don't care to
> repeat it.
>
> Can anyone enlighten me on something like this? I'm running 403D.
>
> Lynn Thomas
> SAIC
>
> [Non-text portions of this message have been removed]
>
>
>
>
>
>
> [Non-text portions of this message have been removed]
>






[Non-text portions of this message have been removed]