Search results for query: *

  • Users: Rat
  • Content: Threads
  • Order by date
  1. R

    C# Question ?

    I have a C#/ Asp.net question .. to ask .. which forum can I ask it in ?
  2. R

    Error In SQL Statement ...

    I've attached the file ... It's working like it should when the "Read From XML" is clicked .. it's the saving into DB, that has the problem ...
  3. R

    Writing Content From Listbox To Access DB In Realtime ...

    GrpID, InfID, Val, Desc, CfgID, StsID I'm done with the parsing of XML data in realtime now .. so, now I need to input the values parsed into the DB in realtime .. The Elements of the XML are Fixed .. the Above columns .. Some guidance in writing codes for this feature would be useful .. The...
  4. R

    Accessing a Serial Comm

    port.Settings.BaudRate = Convert.ChangeType(BaudRates.CBR_2400, TypeCode.UInt32, provider) port.Settings.Parity = Convert.ChangeType(Parity.even, TypeCode.UInt32, provider) port.Settings.StopBits = Convert.ChangeType(StopBits.two, TypeCode.UInt32, provider) port.Settings.ByteSize =...
  5. R

    Navigating Through DB Records With ComboBox ..

    I have four buttons .. to navigate between records now .. First, Previous, Next, Last .. But, the problem is .. I have close to 2500 records .. So, if the user wants to jump to a certain record .. he would have to manually do it one by one, by clicking next .. So, I was thinking if I could do...
  6. R

    What is ODBC ?

    I was told to make my program ODBC or OPC compliant ? Can someone please tell me what that is ?
  7. R

    Formatting Numbers/Text

    How do I format numbers to two decimal places ?
  8. R

    Need to convert incoming bytes to chars, before saving it to temp buffer.

    Dim receiveBytes As [Byte]() = receivingUdpClient.Receive(RemoteIpEndPoint) this is the part that receives the bytes. Currently, the output is being displayed on a rtb. here's the code for that .. rtbInfo.Text = rtbInfo.Text & Encoding.ASCII.GetChars(receiveBytes) I need to save the...
  9. R

    Parsing a XML file

    Here's the deal, my program receives a msg encoded using XML on UDP port. And the output gets displayed in a RTB, how do i parse it ? Thanks.
  10. R

    Displaying Picture in dataBound Form.

    I have done all the databinding for the textboxes for the program attached below .. but i'm stuck at the last part .. Suppose, the user wants to add a image for the Product Information which is being displayed .. the image/filename should go into that particular row's "FileName" and "Image"...
  11. R

    What's wrong with this ?

    Try Dim FileStream As FileStream = New FileStream(ofdOpen.FileName, FileMode.Open, FileAccess.Read) Dim BinaryReader As BinaryReader = New BinaryReader(FileStream) Dim FileByteArray(FileStream.Length - 1) As Byte BinaryReader.Read(FileByteArray, 0, CInt(FileStream.Length)) Dim SQLCommand As...
  12. R

    Textbox/db help

    How do i bind a datasource to the textbox during runtime ?
  13. R

    Reading contents.

    Reading contents. [ RESOLVED ] Okay, here's my problem ... i'll try to explain it as clearly as I possibly can. hopefully, the attached screenshot will make it easier to understand. I want the FileName corresponding to the ID selected by the user through the ComboBox, to be opened in a...
  14. R

    CboBox problem.

    How do i fill a ComboBox with a database column, called "ID" ?
  15. R

    DataGrid Problem

    I've attached the following file, the data loads in from the database, but i have a problem .. it doesn't immediately show the columns and it's contents, i have to click a "+" and the Table name to get there ... how do i fix this ? I want to make it directly go to show the columns and...
  16. R

    MS Access Question

    I have a database with the names of path/file names, for example text files ... how do i let the user specify which filename he/she wants to read and stream the output onto a RichTextBox .. ? Thanks in advance.
  17. R

    Center Aligning Image In PictureBox

    Subject ... And thanks for the reply. :)
  18. R

    How do i get the company name of the computer ?

    Subject ... anyone ?
  19. R

    Progress Bar Question

    I was wondering how it was possible to make the progress bar like the one Win XP has when it's booting up .. anyone ? Also, is it possible to change the colour or texture ?
Back
Top