VS 2010 : Define IO.FileInfo Object As Private
Apr 23, 2010
In the following code as you see I am defining myFile inside the timer sub; which of course is not a good idea. The FilePath is derived in form load before the timer kicks in. How can I declare myFile globally so it can be used in timer sub as well as in form load?
Private Sub tmrInterval_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tmrInterval.Tick
Dim myFile As New IO.FileInfo(FilePath)
If myFile.Exists Then
...
...
I want something like this:
Public Class Form1
private myFile As New IO.FileInfo()
'but I do not have strMessageFilePath value yet, that will be achieved in form load.
View 2 Replies
ADVERTISEMENT
Jun 23, 2011
is there something equivalent to fileinfo.exist to a Uri object?
for eaxample if Uri.exist=true then do something
View 3 Replies
Nov 12, 2010
How to access the fullpath field in a fileinfo object
View 3 Replies
Oct 12, 2011
I have the following VB function which takes a FileInfo object as a parameter:
Public Shared Shadows Sub Start(ByVal filePath As FieldInfo)
XmlConfigurator.ConfigureAndWatch(New System.IO.FileInfo(filePath.ToString()))
End Sub
In another class I have the following code calling that 'Start' method. But VisStudio indicates there is a problem with the 'FilePath' argument that I'm passing.
[Code]...
View 1 Replies
Apr 19, 2009
I have the following situation, can anybody help me in that?Following is a "pseudo" code of what I want to do in VB using VB.NET 2005:
[Code]...
View 2 Replies
Jun 12, 2011
I am trying to figure out how to use variables to define which object to update. I could of course use a case statement to pick the object based on a variable, but it seems to me like there should be a more direct way. Here is a smaller example of what I would like to do.In my form I have 4 picture boxes (pbox1, pbox2, pbox3, and pbox4). I then want to change the image in one of the boxes, but the box I want to change will be determined by a variable (say maybe a randomly generated number). Is there some way to dynamically concatenate the "pbox" with the number that VB would understand it and use it as an object?In this example I could easily build a case statement to handle the selection, but in my real program there will be many more than 4 options.
View 7 Replies
Jul 18, 2010
I've created a private sub which enables me to move to the next object when I press enter in the textbox or any input controls... What I want to do is to create a universal sub procedure for moving to next object. this is my code
[Code]...
View 1 Replies
Oct 27, 2009
I am having a problem with a and OOP class i made that contains a sub that creates random integers.
Problem is if i define two instances of this class and configure them(name in this case) then they both display different names but the random integers are ALWAY the same. in this case having the integers the same kinda kills the idea of the program.
Is it possible that the random part only every works for one class, but if .NET is fully OOP then this should not be possible... right?
Some of my Code (broken down to something smaller) i will display for obvious reasons.
Code:
View 11 Replies
Jul 20, 2009
my code as follows
[code]...
result i get here is =0.7937005259841017310542661502
where as windows calculator figure is 0.79370052598409973737585281963615
View 16 Replies
Jul 13, 2009
I have created a synchronized queue and am using SyncLock on the SyncRoot property of that queue when I invoke the Enqueue/Dequeue methods. The methods are invoked from instances of standard producer/consumer classes.Is that a proper use of the SyncRoot property?
Would it be better practice to create a private shared object in each class and lock on that instead?
View 1 Replies
Feb 15, 2012
Private Sub btnedit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnedit.Click
[Code]...
View 2 Replies
Jan 19, 2009
I have a little VB 2005 Express app that acts as a gui for an application that normally runs in a cli (cmd-like) window, as follows: Code:Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim Server_Exe As String = "C:Documents and SettingsColinDesktopin 7302OpenSim.Grid.UserServer.exe"
[Code]...
1. The cmd window normally shows various status messages in colour, whereas the RichTextBox shows all messages in Black (on a white background). How can I get the RichTextBox to show the messages in the same colours that the cmd window displays?
2. As the RichTextBox fills with data, filling the box, and beyond, and the scrollbar starts to shrink, I notice that the data at the top of the RichTextBox stays there, and you would have to scroll down to see the last status message, whereas I would like it to do the reverse, i.e the last status message is at the bottom of the visible RichTextBox, and if I wanted to see the earlier messages I would have to scroll up. How can this be achieved?
View 6 Replies
Dec 26, 2010
Private Sub FontToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FontToolStripMenuItem.Click Or Button1.Click
Is it possible to make a or?
View 1 Replies
Feb 25, 2011
Private Sub Form1_Shown(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Shown
View 1 Replies
Mar 19, 2010
it just gives me zero for my anwser.Can someone please make corrections?Public Class Form1 Private Sub xExitButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles xExitButton.Click
[Code]...
View 1 Replies
Jul 13, 2010
Why isn't this seemingly simple piece of code working?
Code: Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
For Each sp As String In My.Computer.Ports.SerialPortNames
ListBox1.Items.Add(sp)
Next
End Sub
View 9 Replies
Jan 5, 2012
Is it possible to call a protected method via reflection. I am using this:
Me.GetType.InvokeMember(Stages(CurrentStage),
Reflection.BindingFlags.InvokeMethod,
Nothing,
Me,
Nothing)
Which always calls a method with no params or return. The idea is that the user of my object (transactional processing of business logic) inherits the base class adds in a load of private methods to fire. They then add these method names to a list in the order they would like them fired and the code above will take care of firing them.
It works fine with public methods but not with private or protected methods in the same class (Protected because I have some 'standard' pre built methods to add to the base class). Realistically I could make the methods public and be done with it but my inner nerd wont allow me to do so...
I am assuming this is a security feature. Is there a way to get around this or does anyone have any suggestions on how to proceed but keep my tasty, tasty visibility modifiers in tact?
(NOTE: ITS IN VB.NET but a C# Answer is fine if that is what you are comfortable with).
View 3 Replies
Apr 6, 2012
I parse time from string. The time in string is always GMT (you may say it equals UTC).Now I need to convert this time to local time, but there is a catch!For some reason the time parsed from string is being assumed as local time. I need to tell the bloody machine that this time is UTC/GMT, but not local.
Some examples:My string looks like that:
06 Apr 2012 16:27:00 GMT
I parse it like that (eventtime is my string - like above):
vb
Dim eventtimeobject As DateTime = DateTime.Parse(eventtime)
Dim eventtimefriendly As String
eventtimefriendly = String.Format("{0:dd MMM yyyy HH:mm}" + " GMT", eventtimeobject)
and now if I would like to convert it to local time nothing will happen as it is assumed that the above time is actually local.obviously if I tell it to convert the above time to UTC/GMT it will change it, as it does not know what this time is in GMT already.How do I do it? How to I tell the computer that it is dealing with GMT already?
View 4 Replies
May 1, 2012
I get the error: Conversion from type 'FileInfo' to type 'String' is not valid. This happens in between try and end try
Private Sub CopyNotes()
Dim NotesBase As String
Dim NotesTgt As String
[Code].....
View 24 Replies
Jul 23, 2010
if for example i have two private sub I declared a local variable on private sub a... is there a way that private sub b could use the variable created on private sub a? Im asking because im in a problem in my app were using global variable is not an option to make the long story short
View 5 Replies
Oct 4, 2010
I know that here there is a similar question but I would like, if possible, to be able to define a relative path for 'Start External Program' or any workaround that do not constrain me to add a complete new empty project to my solution. I am using VB.NET in Visual Studio 2010 environment developing WinForms apps.
View 4 Replies
Jan 26, 2011
This is a follow-up to a previous question regarding locking on two List(Of T) objects. Suppose I have a function like this:
[code]...
which resides in a class that declares List1. In a multithreaded environment, I now understand that I should have a private locking object for List1 and lock List1 whenever it's modified or enumerated. My question is, should I do this:
[code]...
View 2 Replies
Jul 27, 2010
There are a lot of games that many languages can be coded in.MapleStory, WOW, FlyFF, and more. Can we do this on Visual basic?I mean we can. We just need a packet system, like to send the getHello packets and ****.
View 1 Replies
Aug 27, 2009
I searched on the forum / Internet for the solution how a PropetryInfo object (of a Public property) can reveal if it has a Private Protected Setter ... it was all in vain .... all help I found was about how to "Set" value of a public property having a Private Setter.I would like to know if I have a PropertyInfo object of a public property, how would I know if its Setter is Non Public?
I tried, in a exception handling block, where I did a GetValue of the PropertyInfo object and then called SetValue by setting the same value back... but to my surprise it worked well and didn error out.
[Code]...
View 1 Replies
Jul 8, 2011
I always used to define variables like Dim xxxx As yyyyy. In the tutorials I'm looking at though they do Private Const xxxxx As yyyyy. I wonder just what is the difference here? What is the significance of this change? What am I actually doing with 'Dim' and what is this Private Const doing different?
View 12 Replies
Jun 12, 2009
<script runat ="server" >
Dim objDT As New System.Data.DataTable
Dim objDR As System.Data.DataRow
[code]......
View 2 Replies
Jan 20, 2011
In Vb6 you could make a private type by doing the following:
Private Type PointAPI
X As Integer
y As Integer
End Type
Vb.Net doesn't support this. I need it to store the x and y position of a certain pixel. I know i could just declare an x and y variable but i would rather use something like:
xyCentre.X = 5
xyCentre.Y = 10
View 10 Replies
Dec 14, 2011
I am completely lost on procedures. Whats the difference bewteen Private sub and private function?
View 1 Replies
Jun 10, 2011
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
Textbox1 how the text box by real-time data monitoring?
View 1 Replies
Sep 10, 2010
<div style="color: rgb(0, 0, 0); font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; margin-top: 8px; margin-right: 8px; margin-bottom: 8px; margin-left: 8px; background-image: initial; background-attachment: initial; background-origin:
[code].....
View 2 Replies