Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. PhysicsGuy

    Firefox network links

    <a href="file://c:/abc.txt" target="_blank">abc</a> works ok in my version of Firefox, which is 3.6.13 The only other thing I can think of: do you have a <base> tag in your html? This sets the base address of all links. I would be willing to take a look at your complete html file if it isn't...
  2. PhysicsGuy

    Firefox network links

    If you paste c:/abc.txt into the address bar of Windows Explorer, does Windows find the file?
  3. PhysicsGuy

    Firefox network links

    Have you tried giving an explicit file protocol as in the following example? <a href="file://C:/Documents and Settings/Administrator/My Documents/VBScripts/HTML/FirefoxFileLinks/aFolder/TextFile.txt">Text File</a>
  4. PhysicsGuy

    Why do indents disappear from templates?

    OfficeAnimal, I have attached a flash video showing how to accomplish what you want. You have missed out the step that TonyJollans mentioned: check the box for "all new documents based on this document". http://www.stthomas.uk.net/Documents/DocumentStyles.swf
  5. PhysicsGuy

    VB 2008 w/Access 07: How do I connect, select, insert &amp; update?

    If you look in the code I posted, ActionQuery is defined as a sub: I repeat it here: Private Sub ActionQuery(ByVal sql As String, ByVal oConn As OleDbConnection) Dim oCmd As OleDbCommand oCmd = New OleDbCommand(sql, oConn) oCmd.ExecuteNonQuery() End Sub
  6. PhysicsGuy

    VB 2008 w/Access 07: How do I connect, select, insert &amp; update?

    Does the code build successfully? What happens when you run the code? Are you receiving an error message? If so, what?
  7. PhysicsGuy

    reading data fromSQL server into a data??? something

    A data reader can move only forwards through the records: Do While dr.Read txtbox.value = dr("Surname") 'etc Loop
  8. PhysicsGuy

    VB 2008 w/Access 07: How do I connect, select, insert &amp; update?

    'The form for the sample project below has: 'a DataGridView 'a button named ExecuteADO 'a button named CloseForm 'You should be able to adapt the rest to your own use Imports System.Data.OleDb Public Class ADOExample Dim MyDocs As String, DataSource As String Private Sub...
  9. PhysicsGuy

    converting persons height from imperial to metric

    Your original will also have a problem when the answer to your calculation isn't one of the values in the option list. For example, 40cm has no equivalent in the feet and inches section. This is my simplified version using a span for the answer: <HTML> <HEAD> <TITLE></TITLE> <script...
  10. PhysicsGuy

    Draggable Layer

    I found a Drag and Drop solution at http://www.walterzorn.com
  11. PhysicsGuy

    Javascript in XSL doesn't work

    It adds flexibility if the code is in an external file: <xsl:import href="CommonScripts.xsl" />

Part and Inventory Search

Back
Top