33 Unanswered Topics

Remove Filter
Member Avatar for
Member Avatar for imso

Assuming my second byte in hex is a representation of the message length, how can I dynamically adjust the length of the message the user can key into the textbox based on the hex value of the second byte? Message Byte entries into textbox: xx **xx** xx xx xx xx …

0
198
Member Avatar for jayreis

I have a php page that lists a bunch of data including id's from a database. I then have a button next to each id that will open a Twitter Bootstrap modal window in the page and I need to pass the php variable (the id) to that model window …

0
303
Member Avatar for Anbu_2

hello there im doing a project and need help.. how to show auto-id from ms access table 2000 into vb 6 textbox?

0
160
Member Avatar for Johnny Joe

after adding this it will update in datagrid.how can i view the selected row in datagrid in my textbox and will allow me to edit and update it.thank you! Private Sub btnSave_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click if not conn.state=connectionstate.open then conn.Open() End If Dim sql …

0
107
Member Avatar for altjen

Its been a while that I'm trying to create a web browser who visit websites (this is really easy to do) but the hard thing Im trying to do is. you set up your own proxy. to change it when you click a button. textbox 1 has the ip, textbox …

0
102
Member Avatar for jenijaaaaad

I have a form where a listbox will load a list of names (lastname, firstname) and when the user select a name and click " >> " button it will display into a textbox, but as the names display into the textbox, it will just display the lastname instead of …

0
136
Member Avatar for nitish.mohiputlall

what are the codes to use to filter out my listbox as the user is typing in the textbox? the data in my listbox is from database. I have used a relay command to get all the details of an Event then place the details in an observable collection. Then …

0
165
Member Avatar for hefaz
Member Avatar for Michael_39

Hi, Basically I have a graph that is bound from a DataTable which source is from a DataGridView. I have zoomable functions on the graph and I need it use X Axis SelectionStart and SelectionEnd in order to calculate the block of data that is selected. So I have some …

0
136
Member Avatar for utsavjoshi95
Member Avatar for Ahmed.C

I was just wondering, is there a way to change the colour of the squiggly line when a word is misspelled in a WPF TextBox? Here's what I mean: [Click Here](http://puu.sh/dwAdC/701c7f2c59.png) I have no idea as to where to start because I'm simply clueless. I tried editing the Textbox to …

0
147
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 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 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 kindo

If u visit https://tweetdeck.twitter.com/ and you login, u will see the left sidebar with a textbox. The textbox can post new tweet, can also send direct message ans at the same time also reply to a tweet. How can I achive this in jquery. Thanks

0
114
Member Avatar for junglefury

Hello daniweb, I would like to us if it possible to search using two boxes from listview in vb6… First text box is for company name then the second box is for Number…the idea is that search first in the first textbox(companyname) then the second textbox (number)will search based on …

0
121
Member Avatar for Jaykar

While i will type a characters in a textbox same time it will show re leated data in dropdownlist from database table i am using struts1.3

0
96
Member Avatar for Mian Sahib Jan

me have a datalist which contain labels textbox but when i call these controls in back end then it show error .it error is this content not found on current content

0
103
Member Avatar for rpv_sen

Hi I am working on dynamic add row. In that if a value is enter in ptype box it should disable the releated textbox filed based on the value. i written code but its not working can any please help me to solve this issue **html Page** <form id='students' method='post' …

0
154
Member Avatar for damuzu

screenshot for edit gridview : http://img829.imageshack.us/img829/2304/06v6.png screenshot for update gridview : http://img801.imageshack.us/img801/3417/j4p1.png this is my code inside tag <body> : <form id="form1" runat="server"> <asp:GridView ID="GridView1" runat="server" OnRowCancelingEdit="GridView1_RowCancelingEdit" OnRowUpdating="GridView1_RowUpdating" OnRowEditing="GridView1_RowEditing" OnRowDeleting="GridView1_RowDeleting" CellPadding="4" ForeColor="#333333" GridLines="None" AutoGenerateColumns="False" onselectedindexchanged="GridView1_SelectedIndexChanged"> <RowStyle BackColor="#FFFBD6" ForeColor="#333333" /> <Columns> <asp:CommandField ShowEditButton="True" ShowDeleteButton="True" /> <asp:BoundField DataField="p_user_name_id" Visible="false" HeaderText="p_user_name_id" /> <asp:TemplateField …

0
159
Member Avatar for tharunsigma

iam new to c# and trying to work out on serial communication using timer i can send and receive the data but during printing of the received data the incoming data is overlapped on the previous data.. Please help me in advancing....and my code is as follows...` int nDataLen = …

0
107
Member Avatar for Maulikpra

Dim mm As New SqlClient.SqlConnection("Data Source=.\SQLEXPRESS;AttachDbFilename=Integrated Security=True;Connect Timeout=30;User Instance=True") mm.Open() Dim mm1 As New SqlDataAdapter("select * from Area_type order by Area_name", mm) Dim ds As New DataSet mmm1.Fill(ds) With ComboBox1 .DataSource = ds.Tables(0) .DisplayMember = "Area_name" .ValueMember = "Area_name" .SelectedIndex = 0 End With mm.Close() 'hi i am student and …

0
163
Member Avatar for PoovenM

I'm creating a custom `ComboBox` that allows the user to select a date; the calendar display is localized making the built-in `DateTimePicker` undesirable (see [here](http://support.microsoft.com/Default.aspx?scid=kb;en-us;889834&x=18&y=19) for more information). I need the UI control to mirror the look and feel or the existing components. Here's what I've tried and the problems …

0
175
Member Avatar for ogsirus

Hi guys. I am making a program in c# which uses several forms. It my first time doing this so im a bit clueless. I have a main form and a second one. The main asks the user to enter a number between 1- 25. When they press enter It …

0
84
Member Avatar for AWorkTool

I am building a tool for my team at work to search a XML file for a particular item and return back the nodes associated with it. I have searched the web to no abounds and was wondering if someone would mind letting me know what I am missing. Here …

0
105
Member Avatar for tomjrjones

Hello i trying to create a little diary using jquery, i have a script where you enter in the textbox then it displays it in a div with a delete button. how do i make it so when i go back to the page the text is still the but …

0
89
Member Avatar for atrueresistance

So, I'm using ASP with a VB code behind. I have text boxes that are supposed to appear one by one only if the there is a location number in the preceding text box. I had that function working perfectly, but I needed to add a MaskedEditExtender in the place, …

0
211
Member Avatar for ibdatx

Hi all, I have a textblock that is bound to an xml document. This displays the innertext of an xml-node element and the width of the textblock is fixed at "auto". The issue is that of the display as the innertext may exceed the width of the textblock and therefore …

0
91

The End.