Like I mentioned, I am using a mapping program's internal browser. It works fine if I take it out of the mapping program's environment and send it into Internet Explorer. It is just that for some reason the internal program can not handle it.
I have tried appending: file:// and file:/// and...
It does work remote. I changed the location of the </a>
Actaully, it worked remote with the </a> in the wrong location, which is strange to tell you the truth...But it does not work local. No matter which location I put the </a>
Thanks for the input but that does not resolve the problem. Like I mentioned it works fine for html links, but does not work for local links. (C:\image.jpg)
...I try and open C:\image.jpg nothing happens...nothing at all.
Here is an exceprt from the xslt code that opens the link:
<xsl:template match="*">
<xsl:param name="tag"/>
<xsl:element name="tr">
<xsl:attribute name="{$tag}">yes</xsl:attribute>
<xsl:attribute...
Hello,
I have a database populated with about 500 tables, all of which are blank (as far as data goes). The tables are linked properly, have fields (ADDRESS_ID for example), and are set up, but completly empty of data. The database is auto-created thru a filter process using another application...
Hello,
I have an xsl file.
<?xml version="1.0" standalone="no"?>
<!DOCTYPE SOMEFilter SYSTEM "http://www.webpage.com/xmldtd/SOMEFilter.dtd">
<?xml-stylesheet type="text/xsl" href="http://www.webpage.com/xmldtd/SOMEFilter.xslt"?>
<xsl:stylesheet version="1.0"...
...SETS].[ENTITY SET NAME];"
qryT.SQL = qryT.SQL & SQLR
X5:
Set qryT = Nothing
'If you want, you can run a "Query2" instead of "Report1"
'********************************************************
DoCmd.OpenQuery "BentleyGeoQuery", acViewNormal
'DoCmd.OpenReport "Report1"...
Here is the code I have:
Private Sub CmbGenerate_Click()
Dim MyDB As DAO.Database
Dim qdef As DAO.QueryDef
Dim Rsdb As DAO.Recordset
Dim i As Integer
Dim strWhere As String
Dim strIN As String
Dim varItem As Variant
Set MyDB = CurrentDb()
'Build...
...criteria box.
What code would I use to send a value to the query criteria box?
Ex:
Form Text box: Jim
(user click submit button)
value 'Like "*" & Jim & "*"' is written to the query criteria for user name field.
the query is then opened using the vba cmd: DoCmd.OpenQuery
The piece in...
That is exactly what I was looking for ProgramError.
Perfect. I will have to look into that site further.
What an amazing resource, like this place...
You guys are the best.
jeff
...acReadOnly
End Sub
Then within my query design, for the field that the three different search criteria text boxes are related to:
Like "*" & [Forms]![frmXMLcreator]![txtTYPE1] & "*"
or Like "*" & [Forms]![frmXMLcreator]![txtTYPE2] & "*"
or Like "*" &...
I tried putting this in the query criteria box:
[Forms]![frmXMLcreator]![ComboEntityName]
I put this in the criteria box, under design mode of the query, for "Type" which is where I am searching.
I have a query called "QueryME"
I have a Form called "FormME"
Within that form, I have a search box called "SearchME"
When the user enters the word ' air ' into the search box, I want it to pull all types that have the word air in them and refresh the query.
The user should have the ability...
How can I get it to read a query from an external database?
For instance, this query is called: Graphic_Report
So I use this:
<xsl:for-each select="DogCat_Report">
What if I had a seperate database that had additional properties that I wanted to pull in.
For instance in the file...
Ok. Got it working.
Is there a way to append text to an attribute?
What I mean is this:
If the Database "Name" value is "Dog"
How do I add _Text to the end of Dog?
Before I hit Submit, I figured it out, so in case anyone is ever reading this, who does not know...here is the answer:
xsl with...
Thanks,
So I would use something like this:
<feature>
<xsl:attribute name="Name">
<xsl:value-of select="Name" />
</xsl:attribute>
<xsl:attribute name="Color">
<xsl:value-of select="Color" />
</xsl:attribute>
</feature>
Which would result in:
<feature Name="Dog" Color="Red">...
Hello.
I have an Access Database, like this.
Name Color Body_Type Age
-------------------------------------------
Dog Red Fat Old
Cat Yellow Skinny Young
Using Access to create the XML file from the data. And Using Tranform, I need to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.