Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Skarcrow

  1. Skarcrow

    For Loop does not Display Text for each Iteration

    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
  2. Skarcrow

    Maintitle Disappears when in system tray

    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...
  3. Skarcrow

    newbie - email reader

    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...
  4. Skarcrow

    Config.FP - 2 questions to end the horror!!!

    btw you can start foxpro or foxpro exe with your own config file by using a "-C" switch eg myexe.exe -CC:\myconfigs\myconfig.fp
  5. Skarcrow

    Displaying Labels based on check box selection

    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 =...
  6. Skarcrow

    Send print string direct to print

    Thanks MBumpy - Works Great :)
  7. Skarcrow

    Supress Printing Message

    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.
  8. Skarcrow

    NEWBIE !! - Value from Datagridview

    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 :)
  9. Skarcrow

    NEWBIE !! - Value from Datagridview

    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...
  10. Skarcrow

    Send print string direct to print

    I know I can do this from the command prompt but I want to send the strings direct to the printer from within a program in VB .net :-(
  11. Skarcrow

    Send print string direct to print

    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...
  12. Skarcrow

    Database Question

    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
  13. Skarcrow

    Problem with SetRange

    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 =...

Part and Inventory Search

Back
Top