EXE will launch from folder but not using UNC path
I've compiled an Exe file using Visual Studio Express and it runs absolutely fine when opened from within the folder however when i'm trying to access this via UNC Path (ServerFolderTicker.exe), this fails and gives error: Ticker has stopped working.
Details:
Description:
Stopped working
Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: cchticker.exe
Problem Signature 02: 1.2.0.2
Problem Signature 03: 509134ad
Problem Signature 04: CCHTicker
Problem Signature 05: 1.2.0.2
Problem Signature 06: 509134ad
Problem Signature 07: d
Problem Signature 08: c6
Problem Signature 09: System.InvalidOperationException
OS Version: 6.1.7601.2.1.0.256.48
Locale ID: 2057
Here is my code:
Imports System.Xml
Imports System.Text
Imports System.IO
Public Class Form1
Dim txtTicker As String = "Ticker"
Dim widthX As Single
Dim heightY As Single = 0
Dim g As Graphics
Dim xmlst As String 'string from the xml file
Dim fo As Font
Dim str As String
Dim strwidth As SizeF 'gets the xml string's width and height
Dim douX As Double 'stores the xmlstring's width
Dim newImage As Image = Image.FromFile(Directory.GetCurrentDirectory & "BHLogo.bmp")
Dim myArray As New ArrayList
Dim counter As Integer
Dim firstloop As Boolean = True
Protected Overrides Sub OnKeyDown(ByVal e As KeyEventArgs)
MyBase.OnKeyDown(e)
' Disable the event if it was an Alt-F4 keypress.
If (e.Alt AndAlso e.KeyCode = Keys.F4) Then
e.Handled = True
End If
End Sub
Private Sub Form1_MouseDoubleClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseDoubleClick
System.Diagnostics.Process.Start("IExplore.exe", "http://intranet")
End Sub
Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
Dim mybrush As New SolidBrush(Color.Red)
mybrush.Color = Color.FromArgb(99, 101, 107)
SetStyle(ControlStyles.AllPaintingInWmPaint Or _
ControlStyles.OptimizedDoubleBuffer Or _
ControlStyles.UserPaint, True)
e.Graphics.Clear(Me.BackColor)
e.Graphics.DrawString(str, fo, mybrush, widthX, heightY + 5)
Dim ulCorner As New Point(widthX - 75, heightY)
Dim ulCorner2 As New Point(widthX + douX - 75, heightY)
e.Graphics.DrawImage(newImage, ulCorner)
e.Graphics.DrawImage(newImage, ulCorner2)
Dim i As Integer
For i = 0 To myArray.Count - 1 Step i + 1
'Debug.Write(myArray(i) - counter)
e.Graphics.DrawImage(newImage, New Point(myArray(i) - counter, heightY))
Next
i = 0
e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias
' e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighQuality()
e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighSpeed
' Debug.Write(String.Format("the string width is {0}", CStr(strwidth.Width)))
If widthX <= (0 - douX) Then
widthX = Me.Width + 125
counter = 0
Else
widthX -= 1
counter += 1
End If
e.Dispose()
End Sub
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) 'Handles Me.Load
driver()
End Sub
Private Sub driver() Handles Me.Load
Me.Width = Screen.PrimaryScreen.WorkingArea.Width
Me.Location = New Point(0, Screen.PrimaryScreen.WorkingArea.Height - 40)
Me.MaximumSize = New Point(Screen.PrimaryScreen.WorkingArea.Width, 40)
Me.Height = 40
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Text = ""
Me.Icon = Nothing
Me.ShowInTaskbar = False
counter = 0
g = Me.CreateGraphics() 'get the graphics object of the form
widthX = Me.Width + 125 ' x co- ordinate or width
' Debug.Write(String.Format("The width is {0}",
'CStr(Me.Width)))
Me.loadthenews()
' Dim gr As Graphics
Timer1.Interval = 1
Timer1.Start()
'fo = New Font("ARIAL", 18, FontStyle.Bold, GraphicsUnit.Point)
'strwidth = g.MeasureString(str, fo)
'douX = strwidth.Width
End Sub
Private Sub loadthenews()
str = ""
myArray.Clear()
fo = New Font("CALIBRI", 18, FontStyle.Bold, GraphicsUnit.Point)
Dim readXML As New XmlTextReader(Directory.GetCurrentDirectory & "news.xml")
Try
While readXML.Read()
If readXML.NodeType = XmlNodeType.Text Then
If firstloop = True Then
str += " " & readXML.Value
If str = " closeme" Then
Application.Exit()
End If
Else
str += " " & readXML.Value
End If
firstloop = False
Dim a = g.MeasureString(str, fo)
myArray.Add(Me.Width + 125 + a.Width)
End If
End While
strwidth = g.MeasureString(str, fo)
douX = strwidth.Width + 75
Catch
str = " Ticker"
Dim a = g.MeasureString(str, fo)
'myArray.Add(Me.Width + 125 + a.Width)
End Try
End Sub
Private Sub form1_hover(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.MouseHover
Timer1.Stop()
'Debug.Write("In hover!")
End Sub
Private Sub form1_leave(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.MouseLeave
Timer1.Start()
'Debug.Write("In leave!")
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Me.Refresh()
End Sub
Private Sub timer3_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer3.Tick
'Label1.Visible = True
'Label1.Text = System.DateTime.Now.ToString("HH:mm:ss")
If System.DateTime.Now.ToString("mm:ss") = "00:00" Then
firstloop = True
Me.loadthenews()
End If
End Sub
End Class
I hope somebody can shed some light on this one, as i have no idea with it would open from a folder but not using UNC path.
Cheers
vb.net visual-studio path exe unc
add a comment |
I've compiled an Exe file using Visual Studio Express and it runs absolutely fine when opened from within the folder however when i'm trying to access this via UNC Path (ServerFolderTicker.exe), this fails and gives error: Ticker has stopped working.
Details:
Description:
Stopped working
Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: cchticker.exe
Problem Signature 02: 1.2.0.2
Problem Signature 03: 509134ad
Problem Signature 04: CCHTicker
Problem Signature 05: 1.2.0.2
Problem Signature 06: 509134ad
Problem Signature 07: d
Problem Signature 08: c6
Problem Signature 09: System.InvalidOperationException
OS Version: 6.1.7601.2.1.0.256.48
Locale ID: 2057
Here is my code:
Imports System.Xml
Imports System.Text
Imports System.IO
Public Class Form1
Dim txtTicker As String = "Ticker"
Dim widthX As Single
Dim heightY As Single = 0
Dim g As Graphics
Dim xmlst As String 'string from the xml file
Dim fo As Font
Dim str As String
Dim strwidth As SizeF 'gets the xml string's width and height
Dim douX As Double 'stores the xmlstring's width
Dim newImage As Image = Image.FromFile(Directory.GetCurrentDirectory & "BHLogo.bmp")
Dim myArray As New ArrayList
Dim counter As Integer
Dim firstloop As Boolean = True
Protected Overrides Sub OnKeyDown(ByVal e As KeyEventArgs)
MyBase.OnKeyDown(e)
' Disable the event if it was an Alt-F4 keypress.
If (e.Alt AndAlso e.KeyCode = Keys.F4) Then
e.Handled = True
End If
End Sub
Private Sub Form1_MouseDoubleClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseDoubleClick
System.Diagnostics.Process.Start("IExplore.exe", "http://intranet")
End Sub
Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
Dim mybrush As New SolidBrush(Color.Red)
mybrush.Color = Color.FromArgb(99, 101, 107)
SetStyle(ControlStyles.AllPaintingInWmPaint Or _
ControlStyles.OptimizedDoubleBuffer Or _
ControlStyles.UserPaint, True)
e.Graphics.Clear(Me.BackColor)
e.Graphics.DrawString(str, fo, mybrush, widthX, heightY + 5)
Dim ulCorner As New Point(widthX - 75, heightY)
Dim ulCorner2 As New Point(widthX + douX - 75, heightY)
e.Graphics.DrawImage(newImage, ulCorner)
e.Graphics.DrawImage(newImage, ulCorner2)
Dim i As Integer
For i = 0 To myArray.Count - 1 Step i + 1
'Debug.Write(myArray(i) - counter)
e.Graphics.DrawImage(newImage, New Point(myArray(i) - counter, heightY))
Next
i = 0
e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias
' e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighQuality()
e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighSpeed
' Debug.Write(String.Format("the string width is {0}", CStr(strwidth.Width)))
If widthX <= (0 - douX) Then
widthX = Me.Width + 125
counter = 0
Else
widthX -= 1
counter += 1
End If
e.Dispose()
End Sub
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) 'Handles Me.Load
driver()
End Sub
Private Sub driver() Handles Me.Load
Me.Width = Screen.PrimaryScreen.WorkingArea.Width
Me.Location = New Point(0, Screen.PrimaryScreen.WorkingArea.Height - 40)
Me.MaximumSize = New Point(Screen.PrimaryScreen.WorkingArea.Width, 40)
Me.Height = 40
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Text = ""
Me.Icon = Nothing
Me.ShowInTaskbar = False
counter = 0
g = Me.CreateGraphics() 'get the graphics object of the form
widthX = Me.Width + 125 ' x co- ordinate or width
' Debug.Write(String.Format("The width is {0}",
'CStr(Me.Width)))
Me.loadthenews()
' Dim gr As Graphics
Timer1.Interval = 1
Timer1.Start()
'fo = New Font("ARIAL", 18, FontStyle.Bold, GraphicsUnit.Point)
'strwidth = g.MeasureString(str, fo)
'douX = strwidth.Width
End Sub
Private Sub loadthenews()
str = ""
myArray.Clear()
fo = New Font("CALIBRI", 18, FontStyle.Bold, GraphicsUnit.Point)
Dim readXML As New XmlTextReader(Directory.GetCurrentDirectory & "news.xml")
Try
While readXML.Read()
If readXML.NodeType = XmlNodeType.Text Then
If firstloop = True Then
str += " " & readXML.Value
If str = " closeme" Then
Application.Exit()
End If
Else
str += " " & readXML.Value
End If
firstloop = False
Dim a = g.MeasureString(str, fo)
myArray.Add(Me.Width + 125 + a.Width)
End If
End While
strwidth = g.MeasureString(str, fo)
douX = strwidth.Width + 75
Catch
str = " Ticker"
Dim a = g.MeasureString(str, fo)
'myArray.Add(Me.Width + 125 + a.Width)
End Try
End Sub
Private Sub form1_hover(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.MouseHover
Timer1.Stop()
'Debug.Write("In hover!")
End Sub
Private Sub form1_leave(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.MouseLeave
Timer1.Start()
'Debug.Write("In leave!")
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Me.Refresh()
End Sub
Private Sub timer3_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer3.Tick
'Label1.Visible = True
'Label1.Text = System.DateTime.Now.ToString("HH:mm:ss")
If System.DateTime.Now.ToString("mm:ss") = "00:00" Then
firstloop = True
Me.loadthenews()
End If
End Sub
End Class
I hope somebody can shed some light on this one, as i have no idea with it would open from a folder but not using UNC path.
Cheers
vb.net visual-studio path exe unc
UNC Definition. -- Get current folder path. -- Directory.GetCurrentDirectory
– Jimi
Nov 14 '18 at 15:07
add a comment |
I've compiled an Exe file using Visual Studio Express and it runs absolutely fine when opened from within the folder however when i'm trying to access this via UNC Path (ServerFolderTicker.exe), this fails and gives error: Ticker has stopped working.
Details:
Description:
Stopped working
Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: cchticker.exe
Problem Signature 02: 1.2.0.2
Problem Signature 03: 509134ad
Problem Signature 04: CCHTicker
Problem Signature 05: 1.2.0.2
Problem Signature 06: 509134ad
Problem Signature 07: d
Problem Signature 08: c6
Problem Signature 09: System.InvalidOperationException
OS Version: 6.1.7601.2.1.0.256.48
Locale ID: 2057
Here is my code:
Imports System.Xml
Imports System.Text
Imports System.IO
Public Class Form1
Dim txtTicker As String = "Ticker"
Dim widthX As Single
Dim heightY As Single = 0
Dim g As Graphics
Dim xmlst As String 'string from the xml file
Dim fo As Font
Dim str As String
Dim strwidth As SizeF 'gets the xml string's width and height
Dim douX As Double 'stores the xmlstring's width
Dim newImage As Image = Image.FromFile(Directory.GetCurrentDirectory & "BHLogo.bmp")
Dim myArray As New ArrayList
Dim counter As Integer
Dim firstloop As Boolean = True
Protected Overrides Sub OnKeyDown(ByVal e As KeyEventArgs)
MyBase.OnKeyDown(e)
' Disable the event if it was an Alt-F4 keypress.
If (e.Alt AndAlso e.KeyCode = Keys.F4) Then
e.Handled = True
End If
End Sub
Private Sub Form1_MouseDoubleClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseDoubleClick
System.Diagnostics.Process.Start("IExplore.exe", "http://intranet")
End Sub
Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
Dim mybrush As New SolidBrush(Color.Red)
mybrush.Color = Color.FromArgb(99, 101, 107)
SetStyle(ControlStyles.AllPaintingInWmPaint Or _
ControlStyles.OptimizedDoubleBuffer Or _
ControlStyles.UserPaint, True)
e.Graphics.Clear(Me.BackColor)
e.Graphics.DrawString(str, fo, mybrush, widthX, heightY + 5)
Dim ulCorner As New Point(widthX - 75, heightY)
Dim ulCorner2 As New Point(widthX + douX - 75, heightY)
e.Graphics.DrawImage(newImage, ulCorner)
e.Graphics.DrawImage(newImage, ulCorner2)
Dim i As Integer
For i = 0 To myArray.Count - 1 Step i + 1
'Debug.Write(myArray(i) - counter)
e.Graphics.DrawImage(newImage, New Point(myArray(i) - counter, heightY))
Next
i = 0
e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias
' e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighQuality()
e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighSpeed
' Debug.Write(String.Format("the string width is {0}", CStr(strwidth.Width)))
If widthX <= (0 - douX) Then
widthX = Me.Width + 125
counter = 0
Else
widthX -= 1
counter += 1
End If
e.Dispose()
End Sub
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) 'Handles Me.Load
driver()
End Sub
Private Sub driver() Handles Me.Load
Me.Width = Screen.PrimaryScreen.WorkingArea.Width
Me.Location = New Point(0, Screen.PrimaryScreen.WorkingArea.Height - 40)
Me.MaximumSize = New Point(Screen.PrimaryScreen.WorkingArea.Width, 40)
Me.Height = 40
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Text = ""
Me.Icon = Nothing
Me.ShowInTaskbar = False
counter = 0
g = Me.CreateGraphics() 'get the graphics object of the form
widthX = Me.Width + 125 ' x co- ordinate or width
' Debug.Write(String.Format("The width is {0}",
'CStr(Me.Width)))
Me.loadthenews()
' Dim gr As Graphics
Timer1.Interval = 1
Timer1.Start()
'fo = New Font("ARIAL", 18, FontStyle.Bold, GraphicsUnit.Point)
'strwidth = g.MeasureString(str, fo)
'douX = strwidth.Width
End Sub
Private Sub loadthenews()
str = ""
myArray.Clear()
fo = New Font("CALIBRI", 18, FontStyle.Bold, GraphicsUnit.Point)
Dim readXML As New XmlTextReader(Directory.GetCurrentDirectory & "news.xml")
Try
While readXML.Read()
If readXML.NodeType = XmlNodeType.Text Then
If firstloop = True Then
str += " " & readXML.Value
If str = " closeme" Then
Application.Exit()
End If
Else
str += " " & readXML.Value
End If
firstloop = False
Dim a = g.MeasureString(str, fo)
myArray.Add(Me.Width + 125 + a.Width)
End If
End While
strwidth = g.MeasureString(str, fo)
douX = strwidth.Width + 75
Catch
str = " Ticker"
Dim a = g.MeasureString(str, fo)
'myArray.Add(Me.Width + 125 + a.Width)
End Try
End Sub
Private Sub form1_hover(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.MouseHover
Timer1.Stop()
'Debug.Write("In hover!")
End Sub
Private Sub form1_leave(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.MouseLeave
Timer1.Start()
'Debug.Write("In leave!")
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Me.Refresh()
End Sub
Private Sub timer3_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer3.Tick
'Label1.Visible = True
'Label1.Text = System.DateTime.Now.ToString("HH:mm:ss")
If System.DateTime.Now.ToString("mm:ss") = "00:00" Then
firstloop = True
Me.loadthenews()
End If
End Sub
End Class
I hope somebody can shed some light on this one, as i have no idea with it would open from a folder but not using UNC path.
Cheers
vb.net visual-studio path exe unc
I've compiled an Exe file using Visual Studio Express and it runs absolutely fine when opened from within the folder however when i'm trying to access this via UNC Path (ServerFolderTicker.exe), this fails and gives error: Ticker has stopped working.
Details:
Description:
Stopped working
Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: cchticker.exe
Problem Signature 02: 1.2.0.2
Problem Signature 03: 509134ad
Problem Signature 04: CCHTicker
Problem Signature 05: 1.2.0.2
Problem Signature 06: 509134ad
Problem Signature 07: d
Problem Signature 08: c6
Problem Signature 09: System.InvalidOperationException
OS Version: 6.1.7601.2.1.0.256.48
Locale ID: 2057
Here is my code:
Imports System.Xml
Imports System.Text
Imports System.IO
Public Class Form1
Dim txtTicker As String = "Ticker"
Dim widthX As Single
Dim heightY As Single = 0
Dim g As Graphics
Dim xmlst As String 'string from the xml file
Dim fo As Font
Dim str As String
Dim strwidth As SizeF 'gets the xml string's width and height
Dim douX As Double 'stores the xmlstring's width
Dim newImage As Image = Image.FromFile(Directory.GetCurrentDirectory & "BHLogo.bmp")
Dim myArray As New ArrayList
Dim counter As Integer
Dim firstloop As Boolean = True
Protected Overrides Sub OnKeyDown(ByVal e As KeyEventArgs)
MyBase.OnKeyDown(e)
' Disable the event if it was an Alt-F4 keypress.
If (e.Alt AndAlso e.KeyCode = Keys.F4) Then
e.Handled = True
End If
End Sub
Private Sub Form1_MouseDoubleClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseDoubleClick
System.Diagnostics.Process.Start("IExplore.exe", "http://intranet")
End Sub
Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
Dim mybrush As New SolidBrush(Color.Red)
mybrush.Color = Color.FromArgb(99, 101, 107)
SetStyle(ControlStyles.AllPaintingInWmPaint Or _
ControlStyles.OptimizedDoubleBuffer Or _
ControlStyles.UserPaint, True)
e.Graphics.Clear(Me.BackColor)
e.Graphics.DrawString(str, fo, mybrush, widthX, heightY + 5)
Dim ulCorner As New Point(widthX - 75, heightY)
Dim ulCorner2 As New Point(widthX + douX - 75, heightY)
e.Graphics.DrawImage(newImage, ulCorner)
e.Graphics.DrawImage(newImage, ulCorner2)
Dim i As Integer
For i = 0 To myArray.Count - 1 Step i + 1
'Debug.Write(myArray(i) - counter)
e.Graphics.DrawImage(newImage, New Point(myArray(i) - counter, heightY))
Next
i = 0
e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias
' e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighQuality()
e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighSpeed
' Debug.Write(String.Format("the string width is {0}", CStr(strwidth.Width)))
If widthX <= (0 - douX) Then
widthX = Me.Width + 125
counter = 0
Else
widthX -= 1
counter += 1
End If
e.Dispose()
End Sub
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) 'Handles Me.Load
driver()
End Sub
Private Sub driver() Handles Me.Load
Me.Width = Screen.PrimaryScreen.WorkingArea.Width
Me.Location = New Point(0, Screen.PrimaryScreen.WorkingArea.Height - 40)
Me.MaximumSize = New Point(Screen.PrimaryScreen.WorkingArea.Width, 40)
Me.Height = 40
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Text = ""
Me.Icon = Nothing
Me.ShowInTaskbar = False
counter = 0
g = Me.CreateGraphics() 'get the graphics object of the form
widthX = Me.Width + 125 ' x co- ordinate or width
' Debug.Write(String.Format("The width is {0}",
'CStr(Me.Width)))
Me.loadthenews()
' Dim gr As Graphics
Timer1.Interval = 1
Timer1.Start()
'fo = New Font("ARIAL", 18, FontStyle.Bold, GraphicsUnit.Point)
'strwidth = g.MeasureString(str, fo)
'douX = strwidth.Width
End Sub
Private Sub loadthenews()
str = ""
myArray.Clear()
fo = New Font("CALIBRI", 18, FontStyle.Bold, GraphicsUnit.Point)
Dim readXML As New XmlTextReader(Directory.GetCurrentDirectory & "news.xml")
Try
While readXML.Read()
If readXML.NodeType = XmlNodeType.Text Then
If firstloop = True Then
str += " " & readXML.Value
If str = " closeme" Then
Application.Exit()
End If
Else
str += " " & readXML.Value
End If
firstloop = False
Dim a = g.MeasureString(str, fo)
myArray.Add(Me.Width + 125 + a.Width)
End If
End While
strwidth = g.MeasureString(str, fo)
douX = strwidth.Width + 75
Catch
str = " Ticker"
Dim a = g.MeasureString(str, fo)
'myArray.Add(Me.Width + 125 + a.Width)
End Try
End Sub
Private Sub form1_hover(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.MouseHover
Timer1.Stop()
'Debug.Write("In hover!")
End Sub
Private Sub form1_leave(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.MouseLeave
Timer1.Start()
'Debug.Write("In leave!")
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Me.Refresh()
End Sub
Private Sub timer3_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer3.Tick
'Label1.Visible = True
'Label1.Text = System.DateTime.Now.ToString("HH:mm:ss")
If System.DateTime.Now.ToString("mm:ss") = "00:00" Then
firstloop = True
Me.loadthenews()
End If
End Sub
End Class
I hope somebody can shed some light on this one, as i have no idea with it would open from a folder but not using UNC path.
Cheers
vb.net visual-studio path exe unc
vb.net visual-studio path exe unc
asked Nov 14 '18 at 14:40
Scott McCubbinScott McCubbin
11
11
UNC Definition. -- Get current folder path. -- Directory.GetCurrentDirectory
– Jimi
Nov 14 '18 at 15:07
add a comment |
UNC Definition. -- Get current folder path. -- Directory.GetCurrentDirectory
– Jimi
Nov 14 '18 at 15:07
UNC Definition. -- Get current folder path. -- Directory.GetCurrentDirectory
– Jimi
Nov 14 '18 at 15:07
UNC Definition. -- Get current folder path. -- Directory.GetCurrentDirectory
– Jimi
Nov 14 '18 at 15:07
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53302733%2fexe-will-launch-from-folder-but-not-using-unc-path%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53302733%2fexe-will-launch-from-folder-but-not-using-unc-path%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
UNC Definition. -- Get current folder path. -- Directory.GetCurrentDirectory
– Jimi
Nov 14 '18 at 15:07