Search results for query: *

  1. C

    Question RichTextBox - Need table to fit user space

    Hello everyone, I have a table in a RichTextBox component (RICHEDIT50W) however as I have to use the \cellxN RTF tag in order to specify the number of cells it gets the width from N. Is there any way I can get the table to resize with the RichTextBox? :confused: Thanks :)
  2. C

    Question Can this be simplified?

    Hello everyone, I have written a piece of code to compare two DataTables and generate an SQL to update a MYSQL table to reflect the changes. i.e. If there is a row in DataTable1 and not in DataTable2 it gets added to MYSQL Table. But if there is a row in DataTable2 and not in DataTable1 it...
  3. C

    Question How do I access a DataTable on another form?

    Hello all, I have a DataSet(dssongs) with a DataTable(dtsongs) on a form(songsForm). I am adding rows to the dataTable using the following code: Dim dr As DataRow = songsForm.dtSongs.NewRow dr.Item("colSongFile") = file dr.Item("colSongTitle") = ""...
  4. C

    Question dataset appending spaces

    I have a dataset and am using the following code to insert new rows. Dim row2 As DataRow = Form1.id3Table.NewRow() row2.Item(0) = id.title row2.Item(1) = id.album row2.Item(2) = id.artist Form1.id3Table.Rows.Add(row2) I know that title is "Enter...
  5. C

    Question Kiosk application

    Hi Everyone, Edit: I am creating a kiosk application. Basically I am replacing the windows shell. Because my application is now the GUI for windows there is no taskbar and when an application is minimised there is no way to restore it. Does anyone know how I can emulate the windows taskbar in...
  6. C

    Question App on top of desktop but under anything else

    Hi Everyone, I need my application to appear on top of the desktop (and vista sidebar if possible) but under every other application that is opened. It is basically a replacement desktop in a way. Any suggestions of how I can do it? Thank you :)
  7. C

    Question Serial Port Truncating

    I am using the .Net Com port control to send &HFF (255) to another device however it appears to be truncating it. At the other end I get &H35 (53). If I send &H0 (0) At the other end I get &H30 (48). Does anyone know what may be causing this. I have the following settings: PortName = "Com4"...
  8. C

    Recieving Serial Data

    Hi everyone, I am sending some data from a microcontroller. I am working on a VB.net program to read in the data. The data consists of 4 bytes. They are sent one after the other, I am using the VB serial object that is in the toolbar. How can I get the 4 bytes and turn them back into real...
Back
Top