Click here to Skip to main content
16,012,107 members

Comments by patilvaibhavrao (Top 30 by date)

patilvaibhavrao 6-Mar-12 1:48am View    
can u provide 1 example please
patilvaibhavrao 22-Dec-11 5:05am View    
can u please explain with example (i need syntax )
patilvaibhavrao 22-Dec-11 1:20am View    
Deleted
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
<html>
<head>
<style type="text/css">
body
{
{font-family:"Arial";}
tr{font-size:50%;}
div
{
page-break-after:always;
}
}

</style>
</head>

<body bgcolor="#FFFFFF" text="#000000">

<xsl:variable name="Fonttype" select="EPReport/FontType">

<xsl:for-each select="EPReport/ReportData">

<br></br><br></br><br></br>

<xsl:variable name="BKColourCode" select="BkColourCode">
<xsl:variable name="BrdColourCode" select="BorderColourCode">

<xsl:if test="ReportTypeName != ''">

<table height="80px" width="80%" border="2" bordercolor="{$BrdColourCode}" cellpadding="0" cellspacing="0" valign="center" align="center">
<tr bgcolor="{$BKColourCode}">
<th style="font-size:55px">
<xsl:value-of select="ReportTypeName">
</th>
</tr>
</table>



<div style="height:1px"></div>

<xsl:for-each select="BodyType">

<br></br><br></br><br></br>

<xsl:variable name="BkColour" select="BkColourCode">
<xsl:variable name="BrdColour" select="BorderColourCode">

<xsl:if test="BodyTypeName != ''">

<table height="65px" width="80%" border="2" bordercolor="{$BrdColour}" cellpadding="0" cellspacing="0" valign="center" align="center">
<tr bgcolor="{$BkColour}">
<th style="font-size:50px">
<xsl:value-of select="BodyTypeName">
</th>
</tr>
</table>


<div style="height:1px"></div>

<xsl:if test="BodyTypeName != 'Trauma'">


<xsl:if test="DefSureExpParam/DefSureExpReportHeading != ''">

<br></br><br></br><br></br>

<table height="50px" width="80%" border="2" bordercolor="{$BrdColour}" cellpadding="0" cellspacing="0" valign="center" align="center">
<tr bgcolor="{$BkColour}">
<td style="font-size:20px">
<xsl:value-of select="BodyTypeName"><xsl:copy-of select="DefSureExpParam/DefSureExpReportHeading">
</td>
</tr>
</table>

<xsl:for-each select="DefSureExpParam/DefSureExpParams">

<br></br><br></br><br></br>

<xsl:variable name="rowspan" select="RowSpan">
<xsl:variable name="columnspan" select="Columnspan">

<table width="80%" border = "1" bordercolor="#4F81BD" cellpadding="0" cellspacing="0" valign="center" align="center">
<tr>
<th ROWSPAN = "{$rowspan}" border="1" bgcolor="#4f81bd" bordercolor = " #4f81bd" style = "width = 5px"></th>
<th COLSPAN = "{$columnspan}" align = "left" bgcolor="#DCE6F2"><xsl:value-of select="DefSureExpOrganName"></th>
</tr>
<tr>
<th><right>Name</th>
<th><right>SD</th>
<th><right>X-Y Modulation</th>
<th><right>Slice Thickness</th>
<th><right><sureiq>SUREIQ</th>
<th><right>Max mA</th>
<th><right>Min mA</th>

</tr>
<xsl:for-each select="DefParams">
<tr>
<td>
<xsl:value-of select="DefSureExpName">
</td>
<td>
<xsl:value-of select="DefSureExpSD">
</td>
<td>
<xsl:value-of select="DefSureExpXYModulation">
</td>
<td>
<xsl:value-of select="DefSureExpSliceThickness">
</td>
<td>
<xsl:value-of select="DefSureExpSureIQ">
</td>
<td>
<xsl:value-of select="DefSureExpMaxmA">
</td>
<td>
<xsl:value-of select="DefSureExpMinmA">
</td>
patilvaibhavrao 1-Nov-11 0:23am View    
print preview from file menu of any browser
patilvaibhavrao 25-Apr-11 6:04am View    
When a window get a Command message through Application
Object's(CWinApp)message Q how it is routed among CView, CDocument,
CSingleDocTemplate(SDI App), CFrameWnd and CWinApp?

My concern is how the WndProc works to do command routing(Where the
information exists: lparam/wparam?) and how Application route command
message with itslef when no handlers are found with other class's of
App?