I would use a listbox it's easier
Dim factorial As Long = 1
For counter As Integer = 1 To 20
factorial *= counter
ListBox1.Items.Add(Convert.ToString(counter) & vbTab & convert.ToString(factorial))
Next
Hi All,
I'm trying to develop a "watcher" app to monitor whether another process is running.
As I have a few processes running with the same process name I decided to use the Process.MainwindowTitle.
HOWEVER !! This seems to be set to an empty string if the application is minimized to the...
I have an upcoming project that will require me to read and parse incoming email sent to a particular mailbox on our exchange server.
These emails will be in any format I dictate i.e header details and csv formatted lines.
Can anyone give me pointers where to look for examples in doing the...
Use 2 Radio Buttons rather than checkboxes
on the checkchanged event of one of the buttons set the visability of the label / text etc..
Private Sub RadioButton1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton1.CheckedChanged
Label1.Visible =...
Is there a way to supress the "Printing Page ..." message that is shown when printing a "Printdocument" ?
I am in the middle of an application that individually Prints Labels and the display of the message is a nuisance.
Thanks for the feedback.
Looking through the VS Help File I did find
DatagridView Enter New Row Event
DataGridView.Rows(e.RowIndex).Cells.Item(ColumnNumber).Value
Thanks Again :)
This seems simple but is driving me mad. :(
I have a datagridview which is populated from a bindingsource pointing to a DBF file on our server. I have successfully popuplated the grid with the data and what I want now is to get the value of one of the fields in the currently selected row in...
Hi All,
I've a loan Zebra Z4M Plus label printer to test (only got it for 1 week). Using the windows printer driver and using printdocument work fine but is slow and I would rather use the printers "in built" barcodes etc.. than sending bitmap images.
If I send the strings to print a barcode...
Close Data
use master
select 0
use mail
scan
select master
if locate for (master.phone = mail.phone) and empty(master.phone)
select mail
replace contact with master.contact
endif
select mail
endscan
close data
I would do it with an onfilter event
procedure TRappUt1fB.BitBtn1Click(Sender: TObject); //Här sker granskning
begin
table1.filtered := true;
if Edit1.Text = '' then Edit1.Text := '0';
if Edit2.Text = '' then Edit2.Text := '99999999';
if Edit3.Text = '' then Edit3.Text := '0';
if Edit4.Text =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.