Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. Visual Basic
  4. Explaination of syntax in .Net 2.0

Explaination of syntax in .Net 2.0

Scheduled Pinned Locked Moved Visual Basic
csharp
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    mtone
    wrote on last edited by
    #1

    I have been seeing the following code I do not know what the characters mean in a web page <%$ Tranlate: any string value %> I know that translate is a function in the code and it is translateing the any string value to another string but could you tell me what the $ means how is it different then <%# and what the : does In some code I also find NewRow!somefield = somevalue what does the ! mean and what does it do Thanks

    M 1 Reply Last reply
    0
    • M mtone

      I have been seeing the following code I do not know what the characters mean in a web page <%$ Tranlate: any string value %> I know that translate is a function in the code and it is translateing the any string value to another string but could you tell me what the $ means how is it different then <%# and what the : does In some code I also find NewRow!somefield = somevalue what does the ! mean and what does it do Thanks

      M Offline
      M Offline
      MohammadAmiry
      wrote on last edited by
      #2

      I don't know about the first one, but "!" when late-bonding is the same as "." when early-bonding.

      Dim FSO 
      
      FSO = CreateObject("Scripting.FileSystemObject")
      
      ' This line of code is unknown to compiler:
      Call MsgBox (FSO.DriveExists("D:"))
      
      ' So use this instead:
      Call MsgBox (FSO!DriveExists("D:"))
      
      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups