Console.Clear Method Doesn't Work?
May 29, 2012
i copied
' This example demonstrates the
'Console.CursorLeft and
' Console.CursorTop properties, and the[code].....
the code straight from the source <<< a couple of pages back thataway i'm getting a build error about the users ameappdataloca emporary projectsfile.exe not found.VB Express 2008 on Windows 7. how to output text to different parts of the screen.
View 4 Replies
ADVERTISEMENT
Jul 23, 2009
I have a table bound to my project, we will call the bindingsource name = MyBindingSource According to what I have read, it seems as though I should be able to simply have a line:
MyBindingSource.Clear()
and this would remove all rows, but I obviously don't understand because I get and error message that says: "Cannot clear this list."
View 4 Replies
Jul 5, 2010
I wanna create extension method for IEnumerable(Of FileSystemInfo). However, compiler says "'Sort' is not a member of'System.Collections. Generic. IEnumerable(Of System.IO.FileSystemInfo)". What is strange is that IntelliSense shows this method. Where's error? [code]
View 1 Replies
Nov 26, 2009
I have a .dll file (Interop.ACTMULTILib.dll) that I use to connect to a PLC. This .dll contains a sub called ReadDeviceBlock2(byval devicename as string, byval size as integer, byref data as short). When I call this method in my main it works fine, if I call it from another method that was called by main it works as well.However, it doesn't work when I call it from my Timer_Elapsed sub? I guess this has to do something with threads but I can't figure it out.
Module Main
Private Timer As New System.Timers.Timer
Private PLC As New ACTMULTILib.ActEasyIF
Private DataSet As new DataSet[code].....
View 1 Replies
May 8, 2009
I am trying to post simple data to some site, in this example to a php file on my local server. My VB.NET Code:
Dim W As New Net.WebClient
Dim A As String = ""
W.Encoding = System.Text.Encoding.UTF8
[code]....
so, when I start the VB.NET App, it just simple calls the p.php (GET) but POST doesnt work. Tried everything. Upladed the p.php to other servers, checked other variables in php ($_REQUEST), used the UploadString(URL,"POST","bla=test), used PERL, ASP.. nothing.I am using .NET Framework 3.5 how to Post data with vb.net?
View 1 Replies
May 27, 2009
I can't figure this out. I have a bitmap that will be used throughout an application, so I can't declare it with a Dim statement in a procedure, or it isn't recognized as having been declared in other procedures. So I declared it at the top of the form class, two ways. This one works: Private MyBitmap As New Bitmap(622, 461) It makes a bitmap to the exact size of a picturebox I have. But I want to be able to change the size of the picturebox and not have to worry about going back into this declaration to set things up, every time I decide to change the box's dimensions. So I tried this next version, but it doesn't work:
[Code]....
View 14 Replies
Jun 11, 2012
I've got a simple tool written in VB in VS 2010 that has a series of command buttons which run Windows command files and the output is sent to a Rich textbox object on the main form (the comand files take awhile to run so I wanted the output to show up in the RTB as it was produced to show progress). All worked well until I made an update to the tool so that the series of buttons are no longer hard-coded, but created dynamically from information in the app.config file. To do this, I use a button
[Code]...
View 3 Replies
Nov 11, 2011
I need some help on merging 2 tables. A simplified version of the issue and the error is outlined below. I am doing the following steps: 1. Create & Fill the schema of the table TblA by an adapter. TblA = DSTasks.Tables.Add("A") AdpA.FillSchema(TblA,
[Code]...
View 7 Replies
Aug 14, 2008
if they choose to use a networked version of my software, I will need the main server doing the authenticating. This is a problem, because from what I understand, it is quite easy to clone MAC addresses. I have looked into using the CPU ID and the HDD ID, but those are not unique, well at least I don't think so. Reason why I say they are not unique is because someone has the exact same CPU ID as me, and the HDD ID changes from partition to partition (same drive). Maybe the HDD ID is a partition ID instead? Anyways, I was thinking maybe I could get the Physical serial number of both the HDD and CPU, but I have not been able to find anything yet.
View 2 Replies
Feb 18, 2010
We have a network share that is used for transferring files between users on a daily basis. Every day at 3:00 am we run a vb6 program to clear the directory of this network share.
View 1 Replies
Apr 20, 2010
I have the following extension method. However, when I type "File." this method doesn't pop-up. What did I wrong?
[Code]...
View 1 Replies
Jun 1, 2009
I have a console application I'm using to run scheduled jobs through windows scheduler. All the communication to/from the application is in email, event logging, database logs. Is there any way I can suppress the console window from coming up?
View 5 Replies
Jun 12, 2011
I am trying to change the background color of a tooltip
I am using tooltip.backgroundcolor = color.colr
No errors but thecolor doesn't change
View 5 Replies
Feb 2, 2011
I have an application that requires data be entered, and after entering, a button is clicked to process that data. Clicking the button works just as it should--the data is processed properly. In constructing a test module, I provide a set of data values, followed by:
btnWhatever.PerformClick()
Nothing happens. I have used this syntax for years, and it has always worked flawlessly. I have triple checked everything else and isolated the problem to the failure of the PerformClick(). The PerformClick() is in a test subroutine that does nothing but fill textboxes and labels with default data, then calls the PerformClick() on the button to begin processing. Again, the button works fine, the data is entered as it should be, but the PerformClick() does not fire the click event.
View 21 Replies
Dec 11, 2011
How do you make the image in a picturebox vanish when you change an option? I have tried a few different ways that i have seen but none have worked. I have it set so when i change an option in a listbox it will change the picture and data in other controls, however one option in the listbox has no data to fill in those controls and so gets left blank. However when i click on that option right now the images that were in the picturebox before get left behind until i click on another option that has a picture. So how do i remove the picture from the box?
View 4 Replies
Dec 6, 2009
I have several forms that are "reused," or vistited more than once per each time in the whole program. In VB6, using Form.Show() would show the form in its original state (the state is was when created in the designer). After closing this form (Unload Me), showing it again would still show the form in its original state.
I am coding in VB.NET 2008, and noticed that when I reopen a form I had closed during a session using my program, the form is in the state it was when I closed it (labels and listboxes filled with data), and not in its original state. I currently have the Form.Closing event filled with code to clear all of the controls, but I think that there must be a better way to "clear" or "reset" the form.
View 10 Replies
Jun 13, 2011
When btnSetup is clicked, 7 rows with 24 colored predefined rectangles are displayed in the pbColors picture box as as intended. The controls on the first page of a tab control. I would like this display to remain intact when I change tab pages but when I return to this tab page the picture box is cleared. If I click the button, for some reason the group of colors is displayed twice, one after the other, instead of once as intended.
[Code]....
View 3 Replies
Nov 30, 2009
I need to clear a dictionarybase collection have tried the below mentioned method but it gives me an error... any help please?? ( in the Public sub MClear....) here's the code:
Imports System.IO
Public Class IPAddresses
Inherits DictionaryBase
[code]....
View 1 Replies
Oct 15, 2009
Supose i have two TextboxOne For normal Text and Second For After Replace textif i m Type some text in textbox 1 then Textbox2 show Its Replacement Text
View 6 Replies
May 13, 2009
I think I've misused this method and would like to know what it actually does.I 've looked it up on msdn forum and found this
[code...]
What does it mean by removing all the rows in all tables? Is it the datagridview table? When it says "removing", does it mean that it deletes everything?
The reason I misused it is because I thought dataset.clear means it flushes the record held in dataset.
When I click on the add new icon on bindingnavigator, a new form will appear, which allows me to insert data
[code...]
when I close the insert form, the parent form will be activated and datagridview will display the new record I just inserted. I thought the dataset.clear method helped display the new added record but then I realised I could do without the dataset.clear method.
[code...]
View 5 Replies
Nov 21, 2009
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TextBox1.Text = ""
End Sub
This is to Clear all numbers but I don't know how to Clear just one number. for example i want to do 23 once a user clicks CE, i want to make it show 2
View 1 Replies
Nov 24, 2011
I try to redirect a robocopy job to a textbox. If I write the complete output after the job finishes, all is displayed correctly.
Code:
myProcess.StartInfo.FileName = "cmd.exe"
myProcess.StartInfo.Arguments = "/C " & Chr(34) & cntCommand & Chr(34) & " && exit"
myProcess.EnableRaisingEvents = True
myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden
[code]....
View 5 Replies
Apr 15, 2012
i am making a program that can paint something.the painting code is easy to do, but i cannot find out how can i make the clearing of what i have drew.in this code u can see that i made it on the mouse click/down and while moving it it will draw a line.
private shouldpaint as boolean = false
Private Sub Form1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseDown
[code]......
View 6 Replies
Nov 24, 2009
We have installed new computers . The culture has been set to he-IL , as it should in regional settings and in asp.net iis tab in global edit configuration.When I've created a new console in c# and in main put in the line
DateTime date = DateTime.Now ;
My output was - "22/11/2009 12:54:42" as it should by the format "dd/mm/yyyy ..."
[code]....
View 3 Replies
Jul 5, 2010
The following VBScript code runs smoothly when I use cscript and/or VB console applications:
[code]...
For some odd reason, the VBScript code only works on cscript but when I call in the code to the service, it doesn't work...
View 3 Replies
Sep 13, 2010
Possible Duplicate: Datagridview doesnt work! I have written code to show records in a datagridview but it shows nothing. I have tried to debug & when it step into GetData function following codes
Catch ex As Exception
returnData = Nothing
If connection.State = ConnectionState.Open Then
connection.Close()
End If
become gray & it shows error sign. When I take my mouse pointer on it it shows message. It says "Cannot open database SUIMT requested by the login. The login failed. Login failed for user 'MY-PCJames'".
Imports System.Data.SqlClient
Public Class Form34
Private Const ConnectionString As String = "Server=.SQLEXPRESS;" & _
"Database=SUIMT;Trusted_Connection=True"
[code]....
View 2 Replies
Oct 11, 2011
So I have 2 data files, single dimension, that I'm trying to populate two rtb. If I comment one streamreader out the other will print. This also works in the vise versa situation. Does anybody see where I'm going wrong with this? They won't run together.
Dim Alpha As New System.IO.StreamReader("alpha.dat")
Dim Beta As New System.IO.StreamReader("beta.dat")
Dim strLine As String
[code].....
View 1 Replies
Dec 15, 2010
dim str as nullable(of string) is this syntax incorrect?
View 1 Replies
Nov 26, 2010
i'm working on a MDI application and need to view a ".PDF" files in a MDI child form, but when using the AxAcroPDF control it doesent work, note that it works fine when viewing the form separately from the MDI application.
View 14 Replies
Aug 21, 2011
this is my code:
Private Sub BackgroundWorker1_DoWork(ByVal sender As System.Object, ByVal e As System.ComponentModel.DoWorkEventArgs) Handles BackgroundWorker1.DoWork
For i = 0 To 1000
[code]....
View 2 Replies