473,651 Members | 2,634 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Dissapearing Validators

I create controls and validators dynamically dependent on data at runtime.
I create the control then the relevant validator(s) for it assigning the Control.ID as the control to validate.
These controls and validators are then added to a table for display to the user.
This code did seem to work originally, but now does not amd I am stumped as to why. There have been some code

changes, but not to the methods below and I have pretty much undone all these changes but to no avail.
I assume that the ID I pass will be prefixed with the correct naming container when the User Control the objects

live on is rendered with the page as I don't have a could not find code to validate message. The validator is

simply not appearing at the client side.
I can see the space I put in the cell which contains the validator (see in code) and obviously the cell exists

also. But no validator.

Any help on this would be appreciated.

Cheers

Tom

This is the code below------
/// <summary>
/// Create the required control, validator etc for the parameter
/// </summary>
/// <param name="parameter ">The parameter info</param>
private void CreateControl( FunctionParamet er parameter, int index )
{
// Get the display name
string displayName = parameter.Displ ayName;

// Get the control Id
string controlId = parameter.DataN ame;

// Create the return value
WebControl theControl = null;

// Create an array of BaseValidators to add to
ArrayList validators = new ArrayList( );

// if the control isn't visible store the required default value
if( !parameter.Visi ble )
{
// Create a text box to store the default value in
TextBox defaultTextBox = new TextBox( );

// get the default value for this control
if(parameter.Va lue != null)
defaultTextBox. Text = parameter.Value .ToString();
// hide the textbox
defaultTextBox. Visible = false;
theControl = defaultTextBox;
}

// Create the correct input control
else
{
// Check if this parameter has a list of predefined values
if( (string)paramet er.PredefinedVa lues != "NotSet" )
{
// If we have a list of predefined values we need a list box
DropDownList dropDownList = new DropDownList( );
dropDownList.Da taSource = GetListItems( (string)paramet er.PredefinedVa lues

);
dropDownList.Da taTextField = "DisplayVal ue";
dropDownList.Da taValueField = "StoredProcValu e";
dropDownList.Da taBind( );
theControl = dropDownList;
}

// Create the correct type of input control
else
{
// Create the control dependent on type
// Switch on the DataType forced to upper characters
switch( (parameter.Data Type).ToUpper( ) )
{
case INT:
// Create a text box control for integer input
TextBox txtBox = new TextBox( );
theControl = txtBox;
// Create a length validator for an int
RegularExpressi onValidator theIntValidator = new

RegularExpressi onValidator( );
theIntValidator .ControlToValid ate = controlId;
theIntValidator .ErrorMessage = displayName + " must

contain integers only";
theIntValidator .Text = "*";
theIntValidator .ValidationExpr ession = INT_REG_EXP;
validators.Add( theIntValidator );
break;
case DECIMAL:
// Create a text box control for free input
TextBox decimalBox = new TextBox( );
theControl = decimalBox;
// Create a length validator for a decimal
RegularExpressi onValidator theDecimalValid ator = new

RegularExpressi onValidator( );
theDecimalValid ator.ControlToV alidate = controlId;
theDecimalValid ator.ErrorMessa ge = displayName + " must

contain numeric characters and a simgle point only";
theDecimalValid ator.Text = "*";
theDecimalValid ator.Validation Expression =

DECIMAL_REG_EXP ;
validators.Add( theDecimalValid ator );
break;
case VARCHAR:
case NVARCHAR:
// Create a text box control for the input
TextBox varCharBox = new TextBox( );
theControl = varCharBox;
// Create a length validator for a varchar
RegularExpressi onValidator theVarCharValid ator = new

RegularExpressi onValidator( );
theVarCharValid ator.ControlToV alidate = controlId;
theVarCharValid ator.ErrorMessa ge = displayName + " must

contain less than " + parameter.DataL ength + " alpha characters";
theVarCharValid ator.Text = "*";
theVarCharValid ator.Validation Expression = VARCHAR_REG_EXP

+ parameter.DataL ength+ "}";
validators.Add( theVarCharValid ator );
break;
case BIT:
// Create the drop down list with true and false
DropDownList boolean = new DropDownList( );
ListItem liTrue = new ListItem( "True", "TRUE" );
ListItem liFalse = new ListItem( "False", "FALSE" );
boolean.Items.A dd( liTrue );
boolean.Items.A dd( liFalse );
theControl = boolean;
break;
case DATETIME:
// Create a text box control for the input
TextBox dateTimeBox = new TextBox( );
theControl = dateTimeBox;
// Create a length validator for a varchar
RegularExpressi onValidator theDateTimeVali dator = new

RegularExpressi onValidator( );
theDateTimeVali dator.ControlTo Validate = controlId;
theDateTimeVali dator.ErrorMess age = displayName + " must

contain a valid date in the format dd/mm/yy";
theDateTimeVali dator.Text = "*";
theDateTimeVali dator.Validatio nExpression =

DATETIME_REG_EX P;
validators.Add( theDateTimeVali dator );
break;
default:
// Unkown, throw exception
throw new Exception( "CRITERIA SELECTOR: Unknown Data Type

" + (string)paramet er.DataType );
}
}

// Set the id to be that of the DataName
theControl.ID = controlId;

// Give all controls a fixed width for display purposes
theControl.Widt h = Unit.Pixel( 100 );

// set the text properties
theControl.Font .Size = FontUnit.Point( FONT_SIZE );

// If this is mandatory add a required field validator
if( parameter.Optio nal != true )
{
RequiredFieldVa lidator mandatoryValida tor = new RequiredFieldVa lidator( );
mandatoryValida tor.ControlToVa lidate = theControl.ID;
mandatoryValida tor.ErrorMessag e = displayName + " is a mandatory field";
mandatoryValida tor.Text = "*";
validators.Add( mandatoryValida tor );
}

// Create any specialist regular expression validators
if( parameter.RegEx pression != "" )
{
// Create the regular expression validator
RegularExpressi onValidator theValidator = new RegularExpressi onValidator(

);
theValidator.Co ntrolToValidate = theControl.ID;
theValidator.Er rorMessage = displayName + ": " +

(string)paramet er.RegExpressio nErrorMsg;
theValidator.Te xt = "*";
theValidator.Va lidationExpress ion = (string)paramet er.RegExpressio n;
validators.Add( theValidator );
}
}

this.paramContr ols.Add(paramet er.DataName,the Control);

// Add the tool tip
theControl.Tool Tip = parameter.Descr iption;

// Need to add the control to the correct table
// So initialise our control to the optional table
Table theTable = tblOptionalPara meters;

// Check if the parameter is visible
if( parameter.Visib le == false )
{
theTable = tblNotVisible;
}
// If visible check if the parameter is mandatory
else if( parameter.Optio nal == false )
{
// If so assign it to the mandatory table
theTable = tblMandatoryPar ameters;
}

// Add the control, label and validator to the correct table
AddToTable( theTable, theControl, validators, displayName, parameter.DataN ame,

(parameter.Data Type).ToUpper( ), index );
}

/// <summary>
/// Add a parameter to the table
/// </summary>
/// <param name="theTable" >The table to add the control to</param>
/// <param name="theContro l">The control to add</param>
/// <param name="theValida tor">The validators</param>
/// <param name="label">Th e display name</param>
/// <param name="paramName ">The stored proc parameter name</param>
/// <param name="type">The parameter type</param>
private void AddToTable( Table theTable, Control theControl, ArrayList validators, string label,

string paramName, string type, int index )
{
// Create the table cells and row
Table paramTable = new Table( );
TableCell paramNameCell = new TableCell( );
TableCell paramTypeCell = new TableCell( );
TableCell paramIndexCell = new TableCell( );
TableCell labelCell = new TableCell( );
TableCell controlCell = new TableCell( );
TableCell validatorCell = new TableCell( );
TableRow theTableRow = new TableRow( );

// Add the parameter name to the table and hide it
paramNameCell.T ext = paramName;
paramNameCell.V isible = false;

// Add the parameter type to the table and hide it
paramTypeCell.T ext = type;
paramTypeCell.V isible = false;

// Add the parameter index to the table and hide it
paramIndexCell. Text = index.ToString( );
paramIndexCell. Visible = false;

// Add the controls label
labelCell.Text = label;
labelCell.Width = Unit.Pixel( 100 );
labelCell.Font. Size = FontUnit.Point( FONT_SIZE );
labelCell.Horiz ontalAlign = HorizontalAlign .Right;

// Add the control
controlCell.Con trols.Add( theControl );
controlCell.Wid th = Unit.Pixel( 100 );
controlCell.Hor izontalAlign = HorizontalAlign .Left;

// Add the validator(s) if there are any
for( int i = 0; i< validators.Coun t; ++i )
{
validatorCell.C ontrols.Add( (Control)valida tors[ i ] );
}

// Give the validator cell a fixed width for display purposes
validatorCell.W idth = Unit.Pixel( 20 );
validatorCell.T ext = " ";
validatorCell.V isible = true;

// Add the cells to the row
theTableRow.Cel ls.Add( paramNameCell );
theTableRow.Cel ls.Add( paramTypeCell );
theTableRow.Cel ls.Add( paramIndexCell );
theTableRow.Cel ls.Add( labelCell );
theTableRow.Cel ls.Add( controlCell );
theTableRow.Cel ls.Add( validatorCell );

// Add the row to the table
paramTable.Rows .Add( theTableRow );

// Put this whole table in a single cell
TableCell tableCell = new TableCell( );
tableCell.Contr ols.Add( paramTable );

// Has the last row got the maximum number of cells
// Create new row if this is the title row or no rows
if( theTable.Rows.C ount <= 1 || theTable.Rows[ theTable.Rows.C ount -1 ].Cells.Count ==

MAX_CELLS )
{
// If so add a new row
TableRow newRow = new TableRow( );
newRow.Width = Unit.Percentage ( 100 );
theTable.Rows.A dd( newRow );

}

// Now add the parameter table cell
theTable.Rows[ theTable.Rows.C ount -1 ].Cells.Add( tableCell );
}

Jul 21 '05 #1
1 2016
First off sorry about the multiple post, but if I clicked the inform me of replies button it kept informing me that the post had failed.

Secondly I have now solved this problem, but it appears to be due to some strange behaviour regarding table cells.
If I add text to a cell after adding controls to it the text 'overwrites' the controls and hence my validators were dissapearing due to the I had added to the cell for formatting reasons.

Can anyone confirm that this is the correct behaviour as to me it seems a little unusual?
"Tom Pearson" wrote:
I create controls and validators dynamically dependent on data at runtime.
I create the control then the relevant validator(s) for it assigning the Control.ID as the control to validate.
These controls and validators are then added to a table for display to the user.
This code did seem to work originally, but now does not amd I am stumped as to why. There have been some code

changes, but not to the methods below and I have pretty much undone all these changes but to no avail.
I assume that the ID I pass will be prefixed with the correct naming container when the User Control the objects

live on is rendered with the page as I don't have a could not find code to validate message. The validator is

simply not appearing at the client side.
I can see the space I put in the cell which contains the validator (see in code) and obviously the cell exists

also. But no validator.

Any help on this would be appreciated.

Cheers

Tom

This is the code below------
/// <summary>
/// Create the required control, validator etc for the parameter
/// </summary>
/// <param name="parameter ">The parameter info</param>
private void CreateControl( FunctionParamet er parameter, int index )
{
// Get the display name
string displayName = parameter.Displ ayName;

// Get the control Id
string controlId = parameter.DataN ame;

// Create the return value
WebControl theControl = null;

// Create an array of BaseValidators to add to
ArrayList validators = new ArrayList( );

// if the control isn't visible store the required default value
if( !parameter.Visi ble )
{
// Create a text box to store the default value in
TextBox defaultTextBox = new TextBox( );

// get the default value for this control
if(parameter.Va lue != null)
defaultTextBox. Text = parameter.Value .ToString();
// hide the textbox
defaultTextBox. Visible = false;
theControl = defaultTextBox;
}

// Create the correct input control
else
{
// Check if this parameter has a list of predefined values
if( (string)paramet er.PredefinedVa lues != "NotSet" )
{
// If we have a list of predefined values we need a list box
DropDownList dropDownList = new DropDownList( );
dropDownList.Da taSource = GetListItems( (string)paramet er.PredefinedVa lues

);
dropDownList.Da taTextField = "DisplayVal ue";
dropDownList.Da taValueField = "StoredProcValu e";
dropDownList.Da taBind( );
theControl = dropDownList;
}

// Create the correct type of input control
else
{
// Create the control dependent on type
// Switch on the DataType forced to upper characters
switch( (parameter.Data Type).ToUpper( ) )
{
case INT:
// Create a text box control for integer input
TextBox txtBox = new TextBox( );
theControl = txtBox;
// Create a length validator for an int
RegularExpressi onValidator theIntValidator = new

RegularExpressi onValidator( );
theIntValidator .ControlToValid ate = controlId;
theIntValidator .ErrorMessage = displayName + " must

contain integers only";
theIntValidator .Text = "*";
theIntValidator .ValidationExpr ession = INT_REG_EXP;
validators.Add( theIntValidator );
break;
case DECIMAL:
// Create a text box control for free input
TextBox decimalBox = new TextBox( );
theControl = decimalBox;
// Create a length validator for a decimal
RegularExpressi onValidator theDecimalValid ator = new

RegularExpressi onValidator( );
theDecimalValid ator.ControlToV alidate = controlId;
theDecimalValid ator.ErrorMessa ge = displayName + " must

contain numeric characters and a simgle point only";
theDecimalValid ator.Text = "*";
theDecimalValid ator.Validation Expression =

DECIMAL_REG_EXP ;
validators.Add( theDecimalValid ator );
break;
case VARCHAR:
case NVARCHAR:
// Create a text box control for the input
TextBox varCharBox = new TextBox( );
theControl = varCharBox;
// Create a length validator for a varchar
RegularExpressi onValidator theVarCharValid ator = new

RegularExpressi onValidator( );
theVarCharValid ator.ControlToV alidate = controlId;
theVarCharValid ator.ErrorMessa ge = displayName + " must

contain less than " + parameter.DataL ength + " alpha characters";
theVarCharValid ator.Text = "*";
theVarCharValid ator.Validation Expression = VARCHAR_REG_EXP

+ parameter.DataL ength+ "}";
validators.Add( theVarCharValid ator );
break;
case BIT:
// Create the drop down list with true and false
DropDownList boolean = new DropDownList( );
ListItem liTrue = new ListItem( "True", "TRUE" );
ListItem liFalse = new ListItem( "False", "FALSE" );
boolean.Items.A dd( liTrue );
boolean.Items.A dd( liFalse );
theControl = boolean;
break;
case DATETIME:
// Create a text box control for the input
TextBox dateTimeBox = new TextBox( );
theControl = dateTimeBox;
// Create a length validator for a varchar
RegularExpressi onValidator theDateTimeVali dator = new

RegularExpressi onValidator( );
theDateTimeVali dator.ControlTo Validate = controlId;
theDateTimeVali dator.ErrorMess age = displayName + " must

contain a valid date in the format dd/mm/yy";
theDateTimeVali dator.Text = "*";
theDateTimeVali dator.Validatio nExpression =

DATETIME_REG_EX P;
validators.Add( theDateTimeVali dator );
break;
default:
// Unkown, throw exception
throw new Exception( "CRITERIA SELECTOR: Unknown Data Type

" + (string)paramet er.DataType );
}
}

// Set the id to be that of the DataName
theControl.ID = controlId;

// Give all controls a fixed width for display purposes
theControl.Widt h = Unit.Pixel( 100 );

// set the text properties
theControl.Font .Size = FontUnit.Point( FONT_SIZE );

// If this is mandatory add a required field validator
if( parameter.Optio nal != true )
{
RequiredFieldVa lidator mandatoryValida tor = new RequiredFieldVa lidator( );
mandatoryValida tor.ControlToVa lidate = theControl.ID;
mandatoryValida tor.ErrorMessag e = displayName + " is a mandatory field";
mandatoryValida tor.Text = "*";
validators.Add( mandatoryValida tor );
}

// Create any specialist regular expression validators
if( parameter.RegEx pression != "" )
{
// Create the regular expression validator
RegularExpressi onValidator theValidator = new RegularExpressi onValidator(

);
theValidator.Co ntrolToValidate = theControl.ID;
theValidator.Er rorMessage = displayName + ": " +

(string)paramet er.RegExpressio nErrorMsg;
theValidator.Te xt = "*";
theValidator.Va lidationExpress ion = (string)paramet er.RegExpressio n;
validators.Add( theValidator );
}
}

this.paramContr ols.Add(paramet er.DataName,the Control);

// Add the tool tip
theControl.Tool Tip = parameter.Descr iption;

// Need to add the control to the correct table
// So initialise our control to the optional table
Table theTable = tblOptionalPara meters;

// Check if the parameter is visible
if( parameter.Visib le == false )
{
theTable = tblNotVisible;
}
// If visible check if the parameter is mandatory
else if( parameter.Optio nal == false )
{
// If so assign it to the mandatory table
theTable = tblMandatoryPar ameters;
}

// Add the control, label and validator to the correct table
AddToTable( theTable, theControl, validators, displayName, parameter.DataN ame,

(parameter.Data Type).ToUpper( ), index );
}

/// <summary>
/// Add a parameter to the table
/// </summary>
/// <param name="theTable" >The table to add the control to</param>
/// <param name="theContro l">The control to add</param>
/// <param name="theValida tor">The validators</param>
/// <param name="label">Th e display name</param>
/// <param name="paramName ">The stored proc parameter name</param>
/// <param name="type">The parameter type</param>
private void AddToTable( Table theTable, Control theControl, ArrayList validators, string label,

string paramName, string type, int index )
{
// Create the table cells and row
Table paramTable = new Table( );
TableCell paramNameCell = new TableCell( );
TableCell paramTypeCell = new TableCell( );
TableCell paramIndexCell = new TableCell( );
TableCell labelCell = new TableCell( );
TableCell controlCell = new TableCell( );
TableCell validatorCell = new TableCell( );
TableRow theTableRow = new TableRow( );

// Add the parameter name to the table and hide it
paramNameCell.T ext = paramName;
paramNameCell.V isible = false;

// Add the parameter type to the table and hide it
paramTypeCell.T ext = type;
paramTypeCell.V isible = false;

// Add the parameter index to the table and hide it
paramIndexCell. Text = index.ToString( );
paramIndexCell. Visible = false;

// Add the controls label
labelCell.Text = label;
labelCell.Width = Unit.Pixel( 100 );
labelCell.Font. Size = FontUnit.Point( FONT_SIZE );
labelCell.Horiz ontalAlign = HorizontalAlign .Right;

// Add the control
controlCell.Con trols.Add( theControl );
controlCell.Wid th = Unit.Pixel( 100 );
controlCell.Hor izontalAlign = HorizontalAlign .Left;

// Add the validator(s) if there are any
for( int i = 0; i< validators.Coun t; ++i )
{
validatorCell.C ontrols.Add( (Control)valida tors[ i ] );
}

// Give the validator cell a fixed width for display purposes
validatorCell.W idth = Unit.Pixel( 20 );
validatorCell.T ext = " ";
validatorCell.V isible = true;

// Add the cells to the row
theTableRow.Cel ls.Add( paramNameCell );
theTableRow.Cel ls.Add( paramTypeCell );
theTableRow.Cel ls.Add( paramIndexCell );
theTableRow.Cel ls.Add( labelCell );
theTableRow.Cel ls.Add( controlCell );
theTableRow.Cel ls.Add( validatorCell );

// Add the row to the table
paramTable.Rows .Add( theTableRow );

// Put this whole table in a single cell
TableCell tableCell = new TableCell( );
tableCell.Contr ols.Add( paramTable );

// Has the last row got the maximum number of cells
// Create new row if this is the title row or no rows
if( theTable.Rows.C ount <= 1 || theTable.Rows[ theTable.Rows.C ount -1 ].Cells.Count ==

MAX_CELLS )
{
// If so add a new row
TableRow newRow = new TableRow( );
newRow.Width = Unit.Percentage ( 100 );
theTable.Rows.A dd( newRow );

}

// Now add the parameter table cell
theTable.Rows[ theTable.Rows.C ount -1 ].Cells.Add( tableCell );
}

Jul 21 '05 #2

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

Similar topics

0
1909
by: Tom Pearson | last post by:
I create controls and validators dynamically dependent on data at runtime. I create the control then the relevant validator(s) for it assigning the Control.ID as the control to validate. These controls and validators are then added to a table for display to the user. This code did seem to work originally, but now does not amd I am stumped as to why. There have been some code changes, but not to the methods below and I have pretty much...
6
1620
by: Mark | last post by:
We have Validators embedded in an asp table server control. The table server control is necessary and cannot be replaced. We want to apply CSS formatting to the validators, but the validators have a default RED font that appears to be difficult to remove. We could hard code in a blank font color into the .aspx html for each validator, but that would defeat the purpose of the CSS. Is there a way to change the default RED color of...
3
1866
by: John Blair | last post by:
Hi, I have validators outside of a datagrid (for adding a new grid row) - however when i click "edit" column and then the "update" column of a grid row that has been edited - my other validators on the page fire which i don't want - i've tried to make them invisible - this hides the controls but i get a strange error when i click the Update column - i tried to disable them - they become disabled but i can see my error "*" appearing next...
1
2111
by: epigram | last post by:
I'm trying to use the ASP.NET validators to check some client-side business rules. I've got two ASP TextBox controls (call them tbxYear1 and tbxYear2) used to enter a range of years. I've got a couple things I need to check: 1) tbxYear1 and tbxYear2 are both optional, but if values are entered they have to integers and non-negative 2) if values are entered for both tbxYear1 and tbxYear2 then tbxYear1 must be less than tbxYear2 It...
1
1659
by: Gabriel Lozano-Morán | last post by:
When using the tabstrip control combined with a multipage (several pageview) there is a problem when using validators. The problem is that validation also occurs on the validators that are not on the currently selected pageview of the multipage. To prevent this from happening I disable all the validators and only enable the validators on the selected page but does not look to me like the correct way of working. Is there a better way to...
1
309
by: Tom Pearson | last post by:
I create controls and validators dynamically dependent on data at runtime. I create the control then the relevant validator(s) for it assigning the Control.ID as the control to validate. These controls and validators are then added to a table for display to the user. This code did seem to work originally, but now does not amd I am stumped as to why. There have been some code changes, but not to the methods below and I have pretty much...
2
1727
by: Mike Surcouf | last post by:
Hi I have some regex validators on my page set to dynamic and like the way they appear after you tab out of a field and also when you try to postback the form. All OK so far When I register for the client side event of a textbox using ... textBox.Attributes.Add("onKeyUp","javascriptfunction");
3
1910
by: sunburst | last post by:
I will include my code below. Is there anyone who can help me sort out this problem please? when i move from my index to the next roll over button links i am unable to keep the background as black and the text as white. the text is dissapearing. can anyone explain where I am going wrong with the coding please? thanks
4
1263
by: Madhur | last post by:
Hello All I am learning how to use ASP.NET Validators and would appreciate if someone could provide me with guidance. I have written very simple ASPX page below with a Dropdown list, a button. If a value of 3 is selected inside dropdown list , I add two text boxes each attached with validators.
0
8275
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
8792
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...
0
8571
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
7294
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...
1
6157
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4143
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
4280
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1905
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1585
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.