Search results for query: *

  1. R

    Modulus11

    Thanks it does work. I apprechiate it
  2. R

    Modulus11

    The text box will contain string data type ex. 0123454906 (10 digits) I have tryed to do the folowing Public Function Modulus11(ByVal DigitType As Byte, ByVal txtISBN As String) As String Dim tmpNumber, NewNumber, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, Asum, Bsum, Csum, Dsum, Esum tmpNumber =...
  3. R

    Modulus11

    Hi Scott, Thanks for your reply. Yes, I need to populate the input before querying the DB. I do understand the logic but I don't know how actually will work as I am novice in VB. I will appreciate if you can help and create something. RonanJ
  4. R

    Modulus11

    Hi All, I need to populate ISBN No on btnSubmit_Click event using Modulus11 check. The input box is a text box " txtISBN" . Any idea how I can implement this? Any help appreciated:confused:
  5. R

    Open / Save file dialog

    Thanks, This is very usefull. Great staff
  6. R

    Open / Save file dialog

    Hi, Still does not display correct layout. I have checket every single line for error but still does not work well. The file is saved as "RTF" and read back as "RTF" but display all other haracters generated by the code. Code error in ".FileName" saying that is not a member of RichTextBox...
  7. R

    Cannot Install VB.Net 2003

    I had a similar problem and I nearly startet to pull my hear off. The problem is that the instalation process looking for the folders by default in ./Folder Name when each stage is completed. Copy all CD folders in C:\Temp. Create the directory if not exist. This solved my problem after long...
  8. R

    Open / Save file dialog

    I am trying to use the code bellow, but still des not work ============================== Dim fs As FileStream = New FileStream("data.bin", FileMode.OpenOrCreate) ' create the reader and writer, based on our file stream Dim w As BinaryWriter = New BinaryWriter(fs) Dim r As BinaryReader = New...
  9. R

    Open / Save file dialog

    Hi All, I just writed a wordpad in VB.NET2003 and the problem I have is to keep format as color, indentation,fonts on save and open file. Any help appresiated. Here is tcode: Thanks all in advance //Open File=================================== Private Sub mmMenuFileOpen_Click(ByVal...
Back
Top