539 Topics

Member Avatar for
Member Avatar for Learner010

i want to insert text in textbox at specific location(i.e row 2 column 3).how can i do that ? i tried this but its not working `Me.RichTextBox1.Text = Me.RichTextBox1.Text.Insert(i, CChar(cb.Text))`

Member Avatar for Reverend Jim
0
411
Member Avatar for johncrud

Hello world! I am requiring some assistance with my C# program, where I am getting an error message for having a form where the user would enter in text into a text box. I am trying to detect if the user has pressed the Enter key, and on doing so …

Member Avatar for vaynenick
0
2K
Member Avatar for widygui

Hi Everyone. I got a problem when I want to input data into my second row. whenever i try to insert data,the data always appeared in the row. here's my code... private void btnTambahStock_Click(object sender, EventArgs e) { int i = 0, j = 0, k = 0, l = …

Member Avatar for Daemon_CC
0
199
Member Avatar for bilal.saim

Program is doing CTRL+V in textbox. But I want program to do it background when I was outside of frame. Program focus the textbox and press CTRL+V but it paste correct place only when I am in frame. Program press CTRL+V inside but it must works only program not out …

Member Avatar for bilal.saim
0
143
Member Avatar for Taras20

Hi everyone, I need help creating html helper that replaces all this code: <div class="col-xs-4 form-group"> @*@Html.LabelWithHelpTextFor(m => m.DataTitle.blabla) @Html.EditorFor(m => m.DataTitle.blabla)*@ <label for="blabla" class="control-label">blabla</label> @Html.TextBoxFor(m => m.DataTitle.blabla, new { @class = "form-control", autocomplete = "off" }) @Html.ValidationMessageFor(m => m.DataTitle.blabla) </div> I want this helper to get class of the …

0
92
Member Avatar for ayeng

Can anybody help me with this? use cakephp ajax jquery to retrieve data from db and display in textbox. any help is much appreciated!

0
88
Member Avatar for sunnyrock24
Member Avatar for nelsonfaboan.rios
0
195
Member Avatar for ahmedsa

I have windows form have 3 controls 1-textbox1 2-button 3-picture box1 what i need is to display image in picture box1 when i press button to show the file name that written in textbox by searching the file in shared folder in network and if found it show it example …

Member Avatar for hericles
0
173
Member Avatar for arvinrrnhine

Private Sub txtamount_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtamount.TextChanged If String.IsNullOrEmpty(txtquantity.Text) OrElse String.IsNullOrEmpty(txtamount.Text) Then Exit Sub If Not IsNumeric(txtquantity.Text) OrElse Not IsNumeric(txtamount.Text) Then Exit Sub txttotal.Text = CDbl(txtquantity.Text) * CDbl(txtamount.Text) End Sub Private Sub txtquantity_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtquantity.TextChanged If String.IsNullOrEmpty(txtquantity.Text) OrElse …

Member Avatar for cgeier
0
191
Member Avatar for nadiam

hey guys so im trying to display data into text boxes that are fetched from database according to checkbox with value id. php: <?php if(isset($_POST['edit_event']) && isset($_POST['check'])) { require "connection.php"; foreach($_POST['check'] as $del_id) { $del_id = (int)$del_id; $sql = mysql_query("SELECT * FROM event WHERE event_id = '$id' ") or die(mysql_error()); …

Member Avatar for nadiam
0
481
Member Avatar for Bishal_1

I want to enter the time in the textbox with updown counter in it. So that i can enter the time in it. how can i do it?? A textbox with updown counter and time in it??

Member Avatar for kamilacbe
0
276
Member Avatar for CasianSushin

how can we load valuse to a data grid from textbox...without saving in database..and i also need to save the data from the grid to db when clicking the submit button

Member Avatar for swadeep.kujur
0
183
Member Avatar for SPRINGHEEL

Hello! I would just like to ask, instead of a plain textbox what could be a more convenient way of inputting time to a form? Or add-ons?

Member Avatar for diafol
-2
133
Member Avatar for cd88

Hi, I am stuck with this logical error and I was hoping someone could point me in the right direction. When I debug this program the array's do not contain the data from the textboxes that the user enetered. as far as I know the code is in the correct …

Member Avatar for cd88
0
268
Member Avatar for jj.dcruz

how do i insert the textboxes with different data inside of them in one database table i have this code dunno what to do next Private Sub btnadd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnadd.Click Dim sql As String Dim totcount As Integer = 0 Dim inc As …

Member Avatar for jj.dcruz
0
191
Member Avatar for asif_14443

Dear All, I am using ASP.Net with VB.Net Visual Studion 2010 I have a textbox if I write i.e. 654321-1 and immediately it verify from database table that this is already exists in database or not. Suppose on Gmail if we create new email address it immediately verifies from database …

Member Avatar for hericles
0
241
Member Avatar for airhalynn101

I have created a currency textbox formatting with the _Validating event. I use this formatting for six textboxes that have to have their values added. So what happens is after I typed in an amount and left the textbox, the amount (the text I inputted) becomes formatted, and the 'Total' …

Member Avatar for PerplexedB
0
455
Member Avatar for missy786

I am trying to create a event listener function, which can render table from drawVisualisation(), when the page loads, but when I click on the controls[[categoryPicker(**dropdownist**), stringFilter(**textbox**)]], as the controls filter the data. When the user passes the filter, i would like the data to be filtered and render table …

0
109
Member Avatar for yugdablos

<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:MultiView ID="MultiView1" runat="server" ActiveViewIndex="0"> <asp:View ID="View1" runat="server"> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><br /> <asp:Button ID="Button1" runat="server" Text="Next View" OnClick="goToSecondView_Click" BackColor="Red"/> </asp:View> <asp:View ID="View2" runat="server"> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label><br /> <asp:Button ID="Button2" runat="server" Text="Go Back" OnClick="goToFirstView_Click" BackColor="Blue" /> </asp:View> </asp:MultiView> </div> </form> …

Member Avatar for yugdablos
0
813
Member Avatar for Gus_19

I am having trouble getting a correct response when searching through each of my datarows. While stepping through during debugging, I am seeing the boolean response is getting triggered even if one row does not match my selected string. I just want to search all of the rows and if …

Member Avatar for PerplexedB
0
234
Member Avatar for ankit1122

hello all; <!DOCTYPE html> <!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. --> <html> <head> <meta charset="UTF-8"> <title>Our Local site</title> </head> <body> <form action="welcome.php" method="post"> <input id="t1" name="t1"type="text" placeholder="table name"><br> …

Member Avatar for pritaeas
0
184
Member Avatar for jhennmacute

We wanted to save the header of a datagridview in the database. The value inputted in the textbox will be transfer in the header of a datagridview and we do not know how can we do that! Can anyone knows how to save a header of an datagridview???????????thank you

0
90
Member Avatar for edwarddaniel.baldeviano

Hello everybody! It's good to be back. Anyway, going to the problem detail. I am currently developing an Android app that resembles the standard Android sound recorder. I already have the sufficient methods from MediaRecorder and MediaPlayer. After stopping the sound recording, an AlertDialog will appear, showing the EditText textbox …

0
125
Member Avatar for Nebil

Dim dr As OleDb.OleDbDataReader = GetData(qry) If dr.HasRows = True Then Do While dr.Read TextBox32.Text = dr.Item("total") If Val(TextBox32.Text) > 800 Then TextBox37.Text = Val(TextBox32.Text) - 800 Else TextBox37.Text = 0 End If TextBox38.Text = Val(TextBox36.Text) + Val(TextBox37.Text) TextBox31.Text = (Val(TextBox33.Text) + Val(TextBox32.Text)) * Val(TextBox34.Text) Loop Else If MsgBox("Fuel allowance …

Member Avatar for Reverend Jim
0
158
Member Avatar for Faizal_1

Hello, I do the simple project using VB.net 2008 to link with MS Access 2007. I have two textbox which is data for ID and Fullname. txtID.Text = ID txtFullname.Text = Fullname Button1 = Search In MS Access My data for ID : 1,2 & 3 and My data for …

Member Avatar for hericles
0
4K
Member Avatar for navenchary

Hi, I m new to ajax. I have to implemented the ajax autocomplete in my code.When I press any alphabet say suppose "a", I should get all names starting with "a" say arman,anoop,anju etc one below other. now when i select one of them say 'arman' the text box will …

Member Avatar for kaushal_1
0
412
Member Avatar for vbshad

hi...i am a new user of vb.net and i want to have a code where changes in my existing data could be save when i click the button "update"...can anyone help me about this matter?...here's my code for the said matter... Private Sub menu_update_Click(sender As Object, e As EventArgs) Handles …

Member Avatar for vbshad
0
735
Member Avatar for fedaa91

Hello I made a web page that needs the user to insert some info in text boxes and then submit them . I want to ask about how can i insert as an option to drop down list once i enter the textbox value by the user like this NAME …

Member Avatar for fedaa91
0
1K
Member Avatar for kool005

Hello, I am new to C# and i am stuck when i try to fetch the data from SQL Server to Visual studio. I am writing the code as a n-tier application - Data Access, Business logic and the front end. I am fetching data in a disconnected env. I …

Member Avatar for johnrosswrock
0
230
Member Avatar for gazem

hi there ; I want to search for student from my database using select method , like you choose the ID then it shows ID search Textbox and go on ... how can i do it

Member Avatar for [NOPE]FOREVER
0
102

The End.