Search results for query: *

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

    Unable to get property 'options' of undefined or null reference RSS

    Hi experts, I am new on using the Javascript in asp.net and i have a problem on this code. <asp:DropDownList ID="DropDownList1" runat="server"> <asp:ListItem>item 1</asp:ListItem> <asp:ListItem>item 2</asp:ListItem> <asp:ListItem>item 3</asp:ListItem>...
  2. R

    Insert Value in a textbox using Json

    Hi Experts, How can i populate/Insert a value on my textbox. My scenario is when i select a value on my dropdownlist, pass this value on my json parameter and call the data from server side. after successfully calling the query get the desired zipcode and pass it on my textbox. Iam at lost on...
  3. R

    Json Inquiry

    Hi Experts, I have this script to pass a parameters to from my code behind to json and it seems it is not working. Please see my code in my script <script type="text/javascript"> $(document).ready(function () { //var DatafieldText ="Code" //var...
  4. R

    Download varbinary file in Database

    Hi Expert, How can i accomplish in downloading the converted file to varbinary in Database using VB.net. I'am lost on how can i accomplish this. Desperate need your help. Thanks.
  5. R

    Word wrap and new line Richtextbox

    Hi Experts, I hope anyone can help me with this. My problem is how can i recognize a new line when my text is in word wrap on textchange event. Example: Richtextbox text But in reality the text are is in this format as one line How can i make it to the format text as is when the user...
  6. R

    How to disabled Mousewhell from changing the text font on Richtextbox

    Hi experts, Is there away on how can i disable the mouse wheel on changing the font size on my richtextbox. Thanks.
  7. R

    How to search string/word/text on a text file

    Hi experts, Can anyone guide me on how can i search a text using richtextbox from a text file(Note pad). I'am lost on how can i manage to do this. Below is my current code. Dim S As Integer = ArrayValue.SelectionStart Dim ArrayValue() As String = ArrayValue.Split(" ") // this is...
  8. R

    Optimize code In Textchange Richtextbox

    Hi experts. Can any one help on how can i optimize my code below. IT check the string you type and change the color if the string does not find it. My problem is When the string are simple enough it work fine but when the string are long it flicker and it hang. This is my long array of string...
  9. R

    Convert Sentence/String to an array

    Hi experts, I have been checking on google on how can i implement this. Every time i check there is only a word that can be converted to an array. How can i convert this sentence="the quick brown fox jump over the lazy dog" to an array Example: below is the idea 'the string will be based...
  10. R

    Underline Only the Last Word in Richtextbox

    Hi Expert, I have a problem in creating an underline for my last word in Richtextbox. Can any one guide me on this. I am creating an application which the last word is being check on my database, it is like spelling check. Using KeyDown event with if e.KeyCode = Keys.Space then...
  11. R

    Check is Keys are pressed in KeyDown Event

    Hi Guys, How to know if i enter a text after i press Enter Private Sub RichTextBox1_KeyDown(sender As Object, e As KeyEventArgs) Handles RichTextBox1.KeyDown If e.KeyCode = Keys.Enter Then 'check here if i enter a text End If End Sub Thanks guys,
  12. R

    Progress bar and OpenFileDialog

    Hi, Can anyone give me an example how can i use the progress bar on OpenFileDialog. I have tried searching google but there a none. Thank you for your assistance.
  13. R

    Export Data from SQL Table into text file

    Hi, As state in my Title how can i export it on text file By using Datasource. DataGridView.Columns.Clear() Dim con As New SqlConnection(SQLConn) con.Open() Dim cmd As SqlCommand = con.CreateCommand cmd.CommandText = "Select * from Table"...
  14. R

    Change the Header Programmatically

    Hi, I have been using Datasource to populate my Datagridview. Can any one give me an idea how can i change the header of my Datadagridview base on my code below. Thanks in advance With DataGridView .ColumnCount = 10 .Columns(0).Name = "Custom Office Code"...
  15. R

    Save file Dialog and Progress Bar

    Hi everyone, How can i incorporate Save File Dialog with Progress Bar. I have create a Save File Dialog for my file upload. I'm asking for advice on how i can achieve this goal. Thanks in advance. Here is may code for Save File Dialog Dim odlg As New Windows.Forms.OpenFileDialog()...
  16. R

    Question Export All Data in Datagridview to Text File

    Hi Guys can anynone help me in exporting all the data in datagrid to text file. Here is my code. Browsing the Data file. Private Sub btnBrowse_Click(sender As Object, e As EventArgs) Handles btnBrowse.Click Dim odlg As New Windows.Forms.OpenFileDialog() odlg.Title = "Select...
  17. R

    Question Check/compare if the String/Text

    Hi, Can anyone point me in the right direction. How can i compare/check a text/string to see if they are exactly the same in per character.(even the spaces can be check.) Example: Correct Data: The quick brown fox jump over the lazy dog. Entered Data: tHE quick brown fox jump over the Lazy...
  18. R

    Move to a next record using ado.net

    How can i create a command that can use a ado.net to move in a next record using stored procedure with parameters. I am using a sql 2005. Thanks.
Back
Top