Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
navigating
- Page 1
Navigating records in ASP.NET.
Programming
Web Development
16 Years Ago
by preethi_ga
Hi Can anyone get me the codings for
navigating
the records in ASP.NET? ( VB Coding) Using SQl Server as back end.
Navigating between rows in database
Programming
Software Development
16 Years Ago
by MadAxel
Hey.I need some help in
navigating
rows.Im using a [TEX]DataReader[/TEX] to read and …
navigating through images in database
Programming
Software Development
15 Years Ago
by gianrocks
hey everyone i need help with
navigating
images in a database, i was able to insert image …
Get submitted values when navigating back with browser back button
Programming
Web Development
19 Years Ago
by Jayakumar R
… key to check whether it exists in the database after
navigating
by the back button. Can you help? Thanks
Trouble navigating nodes...
Programming
Software Development
14 Years Ago
by changeco
… - I'm not sure what the best practice would be
navigating
from, say "step 1" to "step 2…
opening overlay window when closing or navigating from the current window
Programming
Web Development
13 Years Ago
by fuchsia555
… show ( overlay / modal window ) to the user when closing or
navigating
away from the page ( i want put in this window…
Re: Navigating records in ASP.NET.
Programming
Web Development
16 Years Ago
by bala24
This is one way of doing it. [URL="http://msdn.microsoft.com/en-us/library/aa719548(VS.71).aspx"]http://msdn.microsoft.com/en-us/library/aa719548(VS.71).aspx[/URL]
Re: Navigating between rows in database
Programming
Software Development
16 Years Ago
by reena12
Hi, try this Dim conn As OleDbConnection Try conn = New OleDbConnection(My.Settings.ConnectionString) conn.Open() Dim asql As String = "Select * From IDM_IDEA_DATA Where TEAM_NAME='" & cboTeam.Text.Trim & "' Order By DATE_SUBMITTED Desc" ' AND IDEA_ID='" & …
Re: Navigating between rows in database
Programming
Software Development
16 Years Ago
by MadAxel
so how do i implemet this? how do i go to the next row?
Re: Navigating between rows in database
Programming
Software Development
16 Years Ago
by reena12
Hi, There is WHILE loop to read the records i.e. WHILE dr.read() so it will read all the records one by one
Re: Navigating between rows in database
Programming
Software Development
16 Years Ago
by MadAxel
it will read one by one but i need to show it one by one by putting a button to go to the next row. how can i do this?
Re: Navigating between rows in database
Programming
Software Development
16 Years Ago
by reena12
Try this DataSet objDs; int i = 0; protected void Button1_Click(object sender, EventArgs e) { if (i == 0) { GetDataSet(cmdtext,context); } ShowRecord(i); i += 1; } private void GetDataSet(string commandText, string ConnectionStringSettings) { …
Re: Navigating between rows in database
Programming
Software Development
16 Years Ago
by MadAxel
i've tried converting it to vb but it doesn't work. can u convert this to vb? thx alot
Re: Navigating between rows in database
Programming
Software Development
16 Years Ago
by reena12
Send me your VB.NET code
Re: Navigating between rows in database
Programming
Software Development
16 Years Ago
by MadAxel
[QUOTE=vb]Dim i As Integer = 0 Dim searchID As String = txtID.Text Dim cmd1 As String = "Select * From IDM_IDEA_DATA Where IDEA_ID='" & searchID & "' Order By DATE_SUBMITTED Desc" Dim conn1 As String = My.Settings.ConnectionString Dim ds1 As New DataSet Dim da1 As New OleDbDataAdapter(cmd1, conn1…
Re: navigating through images in database
Programming
Software Development
15 Years Ago
by kvprajapati
[code] pictureBox1.Image = Image.FromStream(new MemoryStream(ds.Tables(0).Rows(i)(0)) [/code]
Re: navigating through images in database
Programming
Software Development
15 Years Ago
by gianrocks
hey adatapost, tnx for the code but i was having an error: Overload resolution failed because no accessible 'New' can be called without a narrowing conversion: 'Public Sub New(buffer() As Byte)': Argument matching parameter 'buffer' narrows from 'Object' to '1-dimensional array of Byte'. 'Public Sub New(capacity As Integer)': Argument …
Re: navigating through images in database
Programming
Software Development
15 Years Ago
by kvprajapati
Use CType to unbox, [code] pictureBox1.Image = Image.FromStream(new MemoryStream(CType(ds.Tables(0).Rows(i)(0),Byte())) [/code]
Re: navigating through images in database
Programming
Software Development
15 Years Ago
by gianrocks
tnx adatapost ur code worked well but i am still getting errors. i modified the code and what i did is [CODE]PictureBox1.Image = Image.FromStream(New MemoryStream(CType(ds.Tables("images").Rows(inc).Item("Image"), Byte())))[/CODE] the code will work on the first two pictures, but then after that, it will prompt an error …
Re: Need Help :Picturebox Navigating ,Editing and Layer System
Programming
Software Development
13 Years Ago
by Oneryavuz
… questions : [COLOR="Green"][B][U]First of all
Navigating
[/U][/B] [/COLOR] [COLOR="Red"][B][U]1… am i wrong :) umm move rotate zoom ok i think
navigating
is finished [B][U][COLOR="Green"]Second Layer…
Navigating Forms
Programming
Software Development
17 Years Ago
by ongxizhe
I'm making a Windows Application in C#. How to [B]navigate from one form to another[/B] and [B]not losing data(s)[/B] from the previous form? For an example, I created [B]Form1[/B]. In Form1, there's [B]textBox1[/B] and [B]button1[/B]. By clicking [B]button1[/B] links you to [B]Form2[/B], and after [B]Form2[/B] is shown, text from [B]…
Re: Navigating Forms
Programming
Software Development
17 Years Ago
by scru
if you use form1 to call form two, you can do something like this inside form1: [code=C#] Form2 frmSec = new Form2(); frmSec.label1.Text = textbox1.Text; [/code] This method requires that the label1 modifier on Form2 be set to [B]public[/B]. Or, you can do it like this, some might feel this is a more correct way. [code=C#] //This is the…
Re: Navigating Forms
Programming
Software Development
17 Years Ago
by ongxizhe
What if I was to link [B]Form1[/B] and [B]Form2[/B] together without losing data(s) but when [B]Form2[/B] was already exist? What codes are to type in [B]Form1[/B] and [B]Form2[/B] to get them in connection? Example: By clicking [B]button1[/B] in [B]Form1[/B] will transfer you from [B]Form1[/B] to [B]Form2[/B] and along with the text in [B]…
Re: Navigating Forms
Programming
Software Development
17 Years Ago
by scru
If an Form2 already exists, then it may be wise to have a member variable in Form1 that refers to the instance of Form2. So when you press the button in the Form1, you can use that variable to manipulate the label in the Form2 instance. Consider: [code=C#] //FORM1 CODE: //assuming that the Form2 instance inside Form1 is named frmSec //insert into…
Re: Navigating Forms
Programming
Software Development
17 Years Ago
by ongxizhe
I'm kind of confused now. Do you mind to write the complete code?
Navigating SEOs
Digital Media
Digital Marketing
Search Engine Strategies
16 Years Ago
by pappajoe
Can anyone help with tips on finding an SEO. There are so many out there. Is it worth it? Tips? Anyone?
Re: Navigating SEOs
Digital Media
Digital Marketing
Search Engine Strategies
16 Years Ago
by JonathanD
I would check out this site: [url]http://www.topseos.com/[/url] Some good companies listed there that you can work with.
Re: Navigating SEOs
Digital Media
Digital Marketing
Search Engine Strategies
16 Years Ago
by Ken Sharpe
Anything that sounds tricky won't work. The best way to top the search engines is to write quality content consistently, and for a long time. You can help your chances by having clean, semantic, valid code. If you don't what that means, google all those words and you'll find a TON of information about the correct way to seo your site.
Navigating records thru session variables
Programming
Web Development
16 Years Ago
by preethi_ga
Hi, Im using ASP.NET as front end and SQL SERVER as backend. i navigate the records in this using session variables. but its not working. [code=asp.net]Imports System Imports System.Data Imports System.Data.SqlClient [/code] After Inherits im writing [code=asp.net] Dim con as SqlConnection Dim com as SqlCommand Dim adp…
Re: Navigating records thru session variables
Programming
Web Development
16 Years Ago
by reach_yousuf
Hi preety You can use dataset's row postion to navigate. Initial instance you can use dim intRowno as integer first button [code]Session("rowno") = "0" textbox1.text = Mydataset.tables(0).rows(0)("Columnname1").Tostring textbox2.text = Mydataset.tables(0).rows(0)("Columnname2").Tostring[/code…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC