Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 186 results for
multipage
- Page 1
multipage libtiff using opencv
Programming
Software Development
10 Years Ago
by rshalev
… use any libtiff function (I am trying to read a
multipage
tiff file but opencv does not support it). So, I… a separate folder and wrote a function to read the
multipage
tiff file, but now I cannot combine the opencv program…
Multipage asp.net password protected website template
Programming
Web Development
2 Years Ago
by Mustafa Kaan
Hi, I am .net developer. I need a
Multipage
asp.net password protected website template or sample. Thanks Kaan
Convert Multipage File
Programming
Software Development
18 Years Ago
by RayWigley
Hi, I have a
multipage
rtf file called Invoice.rtf that I want to cnovert into single page rtf documents called invoice1.rtf, Invoice2.rtf etc etc. Can anyone suggest a way to do this please.
PHP and MySQL Multipage form
Programming
Web Development
17 Years Ago
by pancgom
Hi, I am trying to build a
multipage
php form using mysql as the backend much like the ones in monster.com. First page with the personal details Second page with educational details Third page with work experience details Can some one please give me a thread or a link or a source for me to get started. Thanks much for the help.
Multicolumn text flowing multipage sliding
Programming
Web Development
13 Years Ago
by indianbaski
Dear All, Hi.. I need help… Multicolumn text flowing through
multipage
sliding, should calculate total column, gap, text size, image size …
Changing navigation on a multipage website
Digital Media
UI / UX Design
12 Years Ago
by def6054
… and easy way to update a navigation bar on a
multipage
website. I want the page to show where you are…
Reading multipage tiff using Boost/GIL
Programming
Software Development
10 Years Ago
by rshalev
…++. As I was searching for a library that can read
multipage
tiff, I found that it can be done using Boost…
Re: Multipage asp.net password protected website template
Programming
Web Development
2 Years Ago
by Dani
Here's a random article I stumbled upon after a Google search: https://www.c-sharpcorner.com/article/how-to-create-login-page-in-asp-net-web-application-using-c-sharp-and-sql-server/ If you do a google search for ["asp.net login system"](https://www.google.com/search?q=asp.net+login+system&rlz=1C5CHFA_enUS979US979&oq=asp.net…
multipage form to mail
Programming
Web Development
15 Years Ago
by Tracie-marie
I have a multi page form that uses hidden fields to pass the submitted data. The final page displays the results to the user, this is working fine. If the user is happy they submit the form which is then emailed to me and they are forwarded to a thank you page. There must be something wrong with my code as there is no redirecting to the …
Re: multipage form to mail
Programming
Web Development
15 Years Ago
by compusolver
I'll admit that I'm not going to take the time to study this much code, but I can get you on the right path to figuring out the problem. By the way, once this code works, the screen that shows results to the user will no longer display since the user will be redirected. You may want to move that display to the "Thank You" page.. …
Re: multipage form to mail
Programming
Web Development
15 Years Ago
by Tracie-marie
[QUOTE=compusolver;1117093]I'll admit that I'm not going to take the time to study this much code, but I can get you on the right path to figuring out the problem. By the way, once this code works, the screen that shows results to the user will no longer display since the user will be redirected. You may want to move that display to the "…
Re: multipage form to mail
Programming
Web Development
15 Years Ago
by JRM
you have a problem with the catenation of the string variables into the text. I'll show you a first line example, U fix the rest of it! [CODE] //the plain text is in quotes with the cat operator on either side of the var. $body = "A coach". $coach." submitted the assessment"; [/CODE] That should fix that part of it. i didn'…
Re: multipage form to mail
Programming
Web Development
15 Years Ago
by compusolver
Sorry, but that is wrong. Your example is correct, but so is the original poster's usage. You can do: $body = "A coach $coach submitted the assessment."; PHP intuitively translates $coach into its value, unlike some other languages.
Re: multipage form to mail
Programming
Web Development
15 Years Ago
by compusolver
I meant to say "even though the variable is within quotes, php will translate it into its value". Note that this only works for double quotes. If single quotes are used, then the variable will not be interpreted, but merely used as '$coach'. Either way, it would not be an error and would not interrupt the program, which is the problem …
Multipage report
Programming
Software Development
12 Years Ago
by dipankar_pr
1. database in access 2. ADO is in use 3. Datareport is designed. 4. I have 40 records in Recordset. 5. I want create one page per record in recordset. It just create one page report for only first record Private Sub Command1_Click() Dim cnString As String Set rs = New ADODB.Recordset cnString = "Select * from Main&…
Re: Multipage report
Programming
Software Development
12 Years Ago
by AndreRet
Change this part... Set DataReport1.DataSource = rs If Not rs.EOF Then DataReport1.Sections(4).ForcePageBreak = rptPageBreakAfter DataReport1.Show rs.MoveNext End If to ... If Not rs.EOF Then Set DataReport1.DataSource = rs DataReport1.…
Re: Multipage report
Programming
Software Development
12 Years Ago
by dipankar_pr
Each record row contain marks of a student and I like to create a marksheet for each shudent as datareport page.
Re: Multipage report
Programming
Software Development
12 Years Ago
by AndreRet
I see. No problem then. Did my above answer solve the problem though?
Re: Convert Multipage File
Programming
Software Development
18 Years Ago
by sosco
well it is a posibility! if we speak about programming! you can load the rtf page in VB and after that try to delimitate de invoices! if you have one invoice / page it is easy cose you will delimitate the pages and after that for each page you will save it in a new document rtf format! but if the text have no delimiter you will must purge all the …
Re: PHP and MySQL Multipage form
Programming
Web Development
17 Years Ago
by buddylee17
Basically, how it works is you use a form on each page.: page1.php [code=html] <form method="post" action="page2.php"> First Name:<input type="text" name="first_name" /><br> Last Name:<input type="text" name="last_name" /><br> <input type="…
Re: PHP and MySQL Multipage form
Programming
Web Development
17 Years Ago
by somedude3488
i use a session array to hold the values and at the very end pull the data from the array and process it into a database.
Re: PHP and MySQL Multipage form
Programming
Web Development
17 Years Ago
by ultra vires
I would go with sessions too . They are a better and neat way of doing this. To start a session [CODE] session_start(); [/CODE] To write variables into session [CODE] $_SESSION[variable_name] = variable_value; [/CODE] To end a session [CODE] session_destroy(); [/CODE] remember to use session_start() at the top of every page …
Re: PHP and MySQL Multipage form
Programming
Web Development
17 Years Ago
by buddylee17
Yes, the session would work. Cookies would work as well. The code I posted was meant to build a basic understanding of passing variables from page to page.
Re: Multicolumn text flowing multipage sliding
Programming
Web Development
13 Years Ago
by twiss
Well, post what you tried?
Re: Multicolumn text flowing multipage sliding
Programming
Web Development
13 Years Ago
by indianbaski
thanks..I tried to implement like site of http://www.arpia.be/arpia2/ ( but the blank pages keep on sliding) I need support in this.. thanks
Re: Multicolumn text flowing multipage sliding
Programming
Web Development
13 Years Ago
by twiss
What code do you use? Do you have it live somewhere?
Re: Multicolumn text flowing multipage sliding
Programming
Web Development
13 Years Ago
by indianbaski
I have attached the js and css, if you can give any suggestion. All the link files already available in arpia site itself. thanks
Re: Changing navigation on a multipage website
Digital Media
UI / UX Design
12 Years Ago
by soapyillusion
The easiest way is to use a style sheet in css and link to each page like so: <link rel='stylesheet' type='text/css' href='stylesheet1.css'> Copy and paste that navbar. Just make sure you use the same id's on each page Or you could go a little more advance and create a template. Which im not so familar with. (more work then i'd …
Re: Changing navigation on a multipage website
Digital Media
UI / UX Design
12 Years Ago
by def6054
well thats kind of the issue in another way. then you would have multiple css sheets to maintain.
Re: Changing navigation on a multipage website
Digital Media
UI / UX Design
12 Years Ago
by JorgeM
You can have one style sheet, then if you want to apply a different style to a link in the navigation to show the user the page they are on, on each page, apply a different ID. For example, on page 1, <div class="nav"> <ul> <li id="current"><a href="some_url/">…
1
2
3
4
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