473,748 Members | 7,118 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

XslCompiledTran sform load compile error

I am moving some code forward from .NET 1.1. I was able to load the XSL file
and perform the transform. The MSDN documentation looks like it should be
easy. But I get a compile error. Ideas ? How can I share my XSLT ( there
are 2 helper stylesheets, and I check that they are also available... the
loaded xsl makes reference to the helper xsl files. Where should I start
looking ?

// Load the stylesheet.
errBefore = "xslt.Load(XSLD ocPath....);";
xslt.Load(XSLDo cPath); // ERROR HERE

// Transform the file.
errBefore = " xslt.Transform( xmlDocPath....) ;";
xslt.Transform( xmlDocPath, outputFileName) ;

--
Andrew
Jul 30 '06 #1
4 9609


andrewcw wrote:
I am moving some code forward from .NET 1.1. I was able to load the XSL file
and perform the transform. The MSDN documentation looks like it should be
easy. But I get a compile error. Ideas ? How can I share my XSLT ( there
are 2 helper stylesheets, and I check that they are also available... the
loaded xsl makes reference to the helper xsl files. Where should I start
looking ?

// Load the stylesheet.
errBefore = "xslt.Load(XSLD ocPath....);";
xslt.Load(XSLDo cPath); // ERROR HERE
You need to show more context so that we know what types and values the
variables xslt and XSDDocPath have. Then tell us the exact and complete
error message and if it refers to the stylesheet show us the relevant
part of that.
--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Jul 30 '06 #2
System.Xml.Xsl. XslCompiledTran sform xslt = new XslCompiledTran sform();

// Load the stylesheet.
errBefore = "xslt.Load(XSLD ocPath....);";
//xslt.Load(XSLDo cPath)
xslt.Load(XSLDo cPath);

XSLDocPath = type string and is a path like " C:\VersionTable .xsl"

The above code is within a try catch block and my error simply states
e.Message = "XSLT compile error."

What's odd is that the XSL worked fine in .NET 1.1

Here's the stylesheet and its 2 helper files (
include_Version TableStyles.xsl and include_Version TableHeader.xsl ) - I dont
know of another way to let anyone see the XSL other than copy it here. Hope
this helps - Thanks

VersionTable.xs l:

<?xml version="1.0" ?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp " ">
<!ENTITY mdash "—">
<!ENTITY ndash "–"]>
<xsl:styleshe et version="1.0"
xmlns:xsl="http ://www.w3.org/1999/XSL/Transform"
xmlns:w="http://schemas.microso ft.com/office/word/2003/wordml"
xmlns:wx="http://schemas.microso ft.com/office/word/2003/auxHint">

<xsl:include href="include_V ersionTableStyl es.xsl" />
<xsl:include href="include_V ersionTableHead er.xsl" />

<xsl:template match="/">
<xsl:processi ng-instruction name="mso-application">
<xsl:text>progi d="Word.Documen t"</xsl:text>
</xsl:processing-instruction>

<w:wordDocume nt xml:space="pres erve"
xmlns:w="http://schemas.microso ft.com/office/word/2003/wordml"
xmlns:wx="http://schemas.microso ft.com/office/word/2003/auxHint">

<xsl:call-template name="VersionTa bleStyles" />
<w:body>
<wx:sect>
<w:tbl>
<xsl:call-template name="VersionTa bleHeader" />

<xsl:apply-templates/>

</w:tbl>
<w:p/>
<w:sectPr>
<w:pgSz w:w="12240" w:h="15840"/>
<w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800"
w:header="720" w:footer="720" w:gutter="0"/>
<w:cols w:space="720"/>
<w:docGrid w:line-pitch="360"/>
</w:sectPr>
</wx:sect>
</w:body>
</w:wordDocument>

</xsl:template>

<!-- The category (chapter) content -->
<xsl:template match="files" >

<xsl:apply-templates>
<xsl:sort select="name" />
</xsl:apply-templates>

</xsl:template>

<xsl:template match="file" >

<w:tr>
<w:trPr>
<w:cantSplit/>
</w:trPr>
<xsl:apply-templates />

</w:tr>

</xsl:template>
<!-- The file name content -->
<xsl:template match="name" >
<w:tc>
<w:tcPr>
<w:tcW w:w="2988" w:type="dxa"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:pStyle w:val="TableTex t"/>
</w:pPr>
<w:r>
<w:t><xsl:val ue-of select="." /></w:t>
</w:r>
</w:p>
</w:tc>
</xsl:template>

<!-- The file type content -->
<xsl:template match="type" >
<w:tc>
<w:tcPr>
<w:tcW w:w="1080" w:type="dxa"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:pStyle w:val="TableTex t"/>
<w:tabs>
<w:tab w:val="left" w:pos="4284"/>
</w:tabs>
<w:ind w:right="72"/>
</w:pPr>
<w:r>
<w:t><xsl:val ue-of select="." /></w:t>
</w:r>
</w:p>
</w:tc>
</xsl:template>

<!-- The file version number content -->
<xsl:template match="version" >
<w:tc>
<w:tcPr>
<w:tcW w:w="1440" w:type="dxa"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:pStyle w:val="TableTex t"/>
<w:jc w:val="right"/>
</w:pPr>
<w:r>
<w:t><xsl:val ue-of select="." /></w:t>
</w:r>
</w:p>
</w:tc>
</xsl:template>

<!-- The file size value content -->
<xsl:template match="size" >
<w:tc>
<w:tcPr>
<w:tcW w:w="1350" w:type="dxa"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:pStyle w:val="TableTex t"/>
<w:ind w:right="72"/>
<w:jc w:val="right"/>
</w:pPr>
<w:r>
<w:t><xsl:val ue-of select="." /></w:t>
</w:r>
</w:p>
</w:tc>
</xsl:template>

<!-- The file date/time stamp content -->
<xsl:template match="timestam p" >
<w:tc>
<w:tcPr>
<w:tcW w:w="2442" w:type="dxa"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:pStyle w:val="TableTex t"/>
<w:jc w:val="right"/>
</w:pPr>
<w:r>
<w:t><xsl:val ue-of select="." /></w:t>
</w:r>
</w:p>
</w:tc>
</xsl:template>

</xsl:stylesheet>

///// next file :include_Versio nTableStyles.xs l
<xsl:styleshe et version="1.0"
xmlns:xsl="http ://www.w3.org/1999/XSL/Transform"
xmlns:w="http://schemas.microso ft.com/office/word/2003/wordml"
xmlns:wx="http://schemas.microso ft.com/office/word/2003/auxHint">
<xsl:template name="VersionTa bleStyles">
<w:styles>
<w:versionOfBui ltInStylenames w:val="4"/>
<w:latentStyl es w:defLockedStat e="off" w:latentStyleCo unt="156"/>
<w:style w:type="paragra ph" w:default="on" w:styleId="Norm al">
<w:name w:val="Normal"/>
<w:rsid w:val="00C44DED "/>
<w:pPr>
<w:spacing w:after="240"/>
<w:ind w:left="360"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
<w:sz w:val="24"/>
<w:lang w:val="EN-US" w:fareast="EN-US" w:bidi="AR-SA"/>
</w:rPr>
</w:style>
<w:style w:type="charact er" w:default="on" w:styleId="Defa ultParagraphFon t">
<w:name w:val="Default Paragraph Font"/>
<w:semiHidden/>
</w:style>
<w:style w:type="table" w:default="on" w:styleId="Tabl eNormal">
<w:name w:val="Normal Table"/>
<wx:uiName wx:val="Table Normal"/>
<w:semiHidden/>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
</w:rPr>
<w:tblPr>
<w:tblInd w:w="0" w:type="dxa"/>
<w:tblCellMar >
<w:top w:w="0" w:type="dxa"/>
<w:left w:w="108" w:type="dxa"/>
<w:bottom w:w="0" w:type="dxa"/>
<w:right w:w="108" w:type="dxa"/>
</w:tblCellMar>
</w:tblPr>
</w:style>
<w:style w:type="list" w:default="on" w:styleId="NoLi st">
<w:name w:val="No List"/>
<w:semiHidden/>
</w:style>
<w:style w:type="paragra ph" w:styleId="Tabl eText">
<w:name w:val="Table Text"/>
<w:basedOn w:val="Normal"/>
<w:link w:val="TableTex tChar"/>
<w:rsid w:val="00C44DED "/>
<w:pPr>
<w:pStyle w:val="TableTex t"/>
<w:spacing w:before="40" w:after="40"/>
<w:ind w:left="0"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial"/>
<wx:font wx:val="Arial"/>
<w:sz w:val="20"/>
</w:rPr>
</w:style>
<w:style w:type="charact er" w:styleId="Tabl eTextChar">
<w:name w:val="Table Text Char"/>
<w:basedOn w:val="DefaultP aragraphFont"/>
<w:link w:val="TableTex t"/>
<w:rsid w:val="00C44DED "/>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial"/>
<w:lang w:val="EN-US" w:fareast="EN-US" w:bidi="AR-SA"/>
</w:rPr>
</w:style>
<w:style w:type="table" w:styleId="Tabl eGrid">
<w:name w:val="Table Grid"/>
<w:basedOn w:val="TableNor mal"/>
<w:rsid w:val="00C44DED "/>
<w:pPr>
<w:spacing w:after="240"/>
<w:ind w:left="360"/>
</w:pPr>
<w:rPr>
<wx:font wx:val="Times New Roman"/>
</w:rPr>
<w:tblPr>
<w:tblInd w:w="0" w:type="dxa"/>
<w:tblBorders >
<w:top w:val="single" w:sz="4" wx:bdrwidth="10 " w:space="0" w:color="auto"/>
<w:left w:val="single" w:sz="4" wx:bdrwidth="10 " w:space="0"
w:color="auto"/>
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10 " w:space="0"
w:color="auto"/>
<w:right w:val="single" w:sz="4" wx:bdrwidth="10 " w:space="0"
w:color="auto"/>
<w:insideH w:val="single" w:sz="4" wx:bdrwidth="10 " w:space="0"
w:color="auto"/>
<w:insideV w:val="single" w:sz="4" wx:bdrwidth="10 " w:space="0"
w:color="auto"/>
</w:tblBorders>
<w:tblCellMar >
<w:top w:w="0" w:type="dxa"/>
<w:left w:w="108" w:type="dxa"/>
<w:bottom w:w="0" w:type="dxa"/>
<w:right w:w="108" w:type="dxa"/>
</w:tblCellMar>
</w:tblPr>
</w:style>
</w:styles>
</xsl:template>
</xsl:stylesheet>

///// the other file :include_Versio nTableHeader.xs l

<xsl:styleshe et version="1.0"
xmlns:xsl="http ://www.w3.org/1999/XSL/Transform"
xmlns:w="http://schemas.microso ft.com/office/word/2003/wordml">
<xsl:template name="VersionTa bleHeader">
<w:tblPr>
<w:tblStyle w:val="TableGri d"/>
<w:tblW w:w="9300" w:type="dxa"/>
<w:tblLayout w:type="Fixed"/>
</w:tblPr>
<w:tblGrid>
<w:gridCol w:w="2988"/>
<w:gridCol w:w="1080"/>
<w:gridCol w:w="1440"/>
<w:gridCol w:w="1350"/>
<w:gridCol w:w="2442"/>
</w:tblGrid>
<w:tr>
<w:trPr>
<w:cantSplit/>
<w:tblHeader/>
</w:trPr>
<w:tc>
<w:tcPr>
<w:tcW w:w="2988" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="CCCCCC"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:keepNext/>
<w:jc w:val="center"/>
<w:rPr>
<w:b/>
<w:b-cs/>
<w:sz-cs w:val="24"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:b/>
<w:b-cs/>
</w:rPr>
<w:t>Name</w:t>
</w:r>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w="1080" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="CCCCCC"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:keepNext/>
<w:tabs>
<w:tab w:val="left" w:pos="4284"/>
</w:tabs>
<w:ind w:left="72" w:right="72"/>
<w:jc w:val="center"/>
<w:rPr>
<w:b/>
<w:b-cs/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:b/>
<w:b-cs/>
</w:rPr>
<w:t>Type</w:t>
</w:r>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w="1440" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="CCCCCC"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:keepNext/>
<w:ind w:left="72"/>
<w:jc w:val="center"/>
<w:rPr>
<w:b/>
<w:b-cs/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:b/>
<w:b-cs/>
</w:rPr>
<w:t>Version</w:t>
</w:r>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w="1350" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="CCCCCC"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:keepNext/>
<w:ind w:left="72"/>
<w:jc w:val="center"/>
<w:rPr>
<w:b/>
<w:b-cs/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:b/>
<w:b-cs/>
</w:rPr>
<w:t>Size</w:t>
</w:r>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w="2442" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="CCCCCC"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:keepNext/>
<w:ind w:left="72"/>
<w:jc w:val="center"/>
<w:rPr>
<w:b/>
<w:b-cs/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:b/>
<w:b-cs/>
</w:rPr>
<w:t>TimeStam p</w:t>
</w:r>
</w:p>
</w:tc>
</w:tr>
</xsl:template>
</xsl:stylesheet>

--
Andrew
"Martin Honnen" wrote:
>

andrewcw wrote:
I am moving some code forward from .NET 1.1. I was able to load the XSL file
and perform the transform. The MSDN documentation looks like it should be
easy. But I get a compile error. Ideas ? How can I share my XSLT ( there
are 2 helper stylesheets, and I check that they are also available... the
loaded xsl makes reference to the helper xsl files. Where should I start
looking ?

// Load the stylesheet.
errBefore = "xslt.Load(XSLD ocPath....);";
xslt.Load(XSLDo cPath); // ERROR HERE

You need to show more context so that we know what types and values the
variables xslt and XSDDocPath have. Then tell us the exact and complete
error message and if it refers to the stylesheet show us the relevant
part of that.
--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Jul 30 '06 #3


andrewcw wrote:
System.Xml.Xsl. XslCompiledTran sform xslt = new XslCompiledTran sform();

// Load the stylesheet.
errBefore = "xslt.Load(XSLD ocPath....);";
//xslt.Load(XSLDo cPath)
xslt.Load(XSLDo cPath);

XSLDocPath = type string and is a path like " C:\VersionTable .xsl"

The above code is within a try catch block and my error simply states
e.Message = "XSLT compile error."
Well then don't be so lazy next time and examine the thrown exception
chain yourself with the debugger or by changing that try/catch code.
What's odd is that the XSL worked fine in .NET 1.1
XML parsing has changed, lots of stuff that works with .NET 1.x for
security reason requires explict settings in .NET 2.0 to work.

VersionTable.xs l:

<?xml version="1.0" ?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp " ">
<!ENTITY mdash "—">
<!ENTITY ndash "–"]>
One problem is the DOCTYPE declaration, the .NET 2.0 XML parser by
default gives an error on that, you have to explictly enable DTD
processing so you need code alike

XslCompiledTran sform xsltProcessor = new XslCompiledTran sform();
XmlReaderSettin gs settings = new XmlReaderSettin gs();
settings.Prohib itDtd = false;
settings.Valida tionType = ValidationType. None;
xsltProcessor.L oad(XmlReader.C reate(@"Version Table.xsl", settings));

to load that stylesheet.
--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Jul 30 '06 #4
Thank You very much ! It works !!!
--
Andrew
"Martin Honnen" wrote:
>

andrewcw wrote:
System.Xml.Xsl. XslCompiledTran sform xslt = new XslCompiledTran sform();

// Load the stylesheet.
errBefore = "xslt.Load(XSLD ocPath....);";
//xslt.Load(XSLDo cPath)
xslt.Load(XSLDo cPath);

XSLDocPath = type string and is a path like " C:\VersionTable .xsl"

The above code is within a try catch block and my error simply states
e.Message = "XSLT compile error."

Well then don't be so lazy next time and examine the thrown exception
chain yourself with the debugger or by changing that try/catch code.
What's odd is that the XSL worked fine in .NET 1.1

XML parsing has changed, lots of stuff that works with .NET 1.x for
security reason requires explict settings in .NET 2.0 to work.

VersionTable.xs l:

<?xml version="1.0" ?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp " ">
<!ENTITY mdash "—">
<!ENTITY ndash "–"]>

One problem is the DOCTYPE declaration, the .NET 2.0 XML parser by
default gives an error on that, you have to explictly enable DTD
processing so you need code alike

XslCompiledTran sform xsltProcessor = new XslCompiledTran sform();
XmlReaderSettin gs settings = new XmlReaderSettin gs();
settings.Prohib itDtd = false;
settings.Valida tionType = ValidationType. None;
xsltProcessor.L oad(XmlReader.C reate(@"Version Table.xsl", settings));

to load that stylesheet.
--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Jul 30 '06 #5

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

Similar topics

0
1216
by: Matt | last post by:
With VS2005 I see that the XslTransform class has been deprecated and XslCompiledTransform has replaced it. I am having issues with trying to get the new class to work how it did with the old. I would appreciate if someone could tell me how to replace the following code with the new class. Mainly, I just don't know how to pass my evidence object into the new class but feel that I am consfused by the whole structure at the moment. ...
1
2619
by: Steve | last post by:
Using VB.NET 2.0 I have a simple routine that attempts transforms an XmlDocument with an XSLT stylesheet into HTML. Under the old 1.1 framework with XslTransform, everything worked fine. Now using XslCompiledTransform, the Transform method hangs. My code: Function TransformXML(ByRef FacXML As Xml.XmlDocument, ByVal XslFile As String) As String Dim xslt As New System.Xml.Xsl.XslCompiledTransform Dim xmlFile As String = <code to name...
6
8118
by: W. Jordan | last post by:
Hello there, Are there anybody who is using the XslCompiledTransform that comes with .net framework, which was said to be a replacement of the XslTransform class? I found that the class has some issues when the xsl file contains scripts. The XslCompiledTransform uses the CodeDom to compile the scripts within the xsl file into .net assembly and load them into the current
1
2779
by: S. David Kyle | last post by:
I am having a weird issue when I generate an input Html tag from a Xsl transformation. When the trasform is executed on the xsl below, the <inputtag has the closing slash removed in the first case and the closing tag removed in the second case. As a side note, if I change <inputto <input1>, the closing tag does not get removed.
12
10115
by: InvalidLastName | last post by:
We have been used XslTransform. .NET 1.1, for transform XML document, Dataset with xsl to HTML. Some of these html contents contain javascript and links. For example: // javascript if (a &gt; b) ..... // xsl contents abc.aspx?p1=v1&amp;p2=<xsl:value-of select="$v2" />
2
8365
by: tony | last post by:
XslCompiledTransform xslt = new XslCompiledTransform(); ASCIIEncoding encodeToByteArray = new ASCIIEncoding(); MemoryStream inputStream = new MemoryStream(); MemoryStream outputStream = new MemoryStream(); MemoryStream xslStream = new MemoryStream(); String inputString = "<foo>Hello XSL</foo>"; byte inputArray = encodeToByteArray.GetBytes(inputString);
1
1803
by: Hans Kesting | last post by:
Hi, In our ASP.Net webapplications, we use xslt a lot. For 1.1 developing was "easy": start up the website and go to the page where the xslt was used. Change the xslt (save it) and refresh the page: the new results are visible. Now we are transferring to 2.0 and XslCompiledTransform. The xslt's still work
1
1661
by: Mark | last post by:
I'm getting the error "The URI scheme is too long." in the code below. What is URI in this context? The XSL or the XML being transformed? Thanks! -Mark StringBuilder sb = new StringBuilder(); //Create the XslCompiledTransform and Load it with the xsltDocument XslCompiledTransform xslCompiledTransform = new XslCompiledTransform();
1
1649
by: =?Utf-8?B?Vmlub2Q=?= | last post by:
Hi, I am having a problem doing the transform. Actually i am migrating the code from XslTranform class into XslCompiledTransform class. Here is the code that i am using in .net 1.1 private void DoTransform(ref XslTransform arrTransformations, ref XmlDocument objSource,
0
8823
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
9530
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
9363
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9312
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
9238
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...
1
6793
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
4864
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2775
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2206
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.