Tagged Questions
The numbered tag has no wiki summary.
3
votes
3answers
114 views
Generating a numbered list with VB6
I'm a novice using VB6 to try and create a basic text file program. Basically in my work I create lots of text files with headings and then variable data so to save me manually typing the document ...
2
votes
3answers
478 views
How do I keep Numbered Lists indented in html/css?
How do you keep numbered lists indented using HTML/CSS? I have a page where the digits are not indented and it does not look good.
Here is a sample page: ...
1
vote
1answer
39 views
JQuery wrap divs with numbered classes
This is somewhat tricky, assuming this scenario:
<div class='top'>
<div id='page1' class='in'>
Mickey
</div>
<div id='page2' class='in'>
Donald
...
1
vote
3answers
126 views
calling numbered function name in loop using java reflection
i have a problem as :
MyFirstClass.java
public class MyFirstClass{
String strParam;
MySecondClass secClass;
//getters and setters
}
MySecondClass.java
public class MySecondClass{
String ...
1
vote
4answers
278 views
Created a numbered list with For Loop
You would think I would get this done in 10 seconds, but I've spent 1/2 hour and am getting nowhere..Here is what I have/want:
<table>
<% i=0 %>
<% for name in @names%>
...
1
vote
3answers
101 views
Cross-database queries with numbered database name
I'm a bit of a novice when it comes to SQL Server 2005. I have a database containing most of the stored procedures and tables (we'll call it 'GrandDatabase'). Each user has its own separate database ...
0
votes
1answer
169 views
JSF 2 Mojarra — Can I configure the app to always use numbered XML entities instead of named entities?
I'm noticing that mojarra outputs named html entities in many cases as opposed to numbered entities. This seems to cause issues when using an application/xhtml+xml content type. I looked through some ...
0
votes
2answers
255 views
How to number a sorted list in XSLT
I used xsl:sort in apply-templates to sort the elements and I would like to have them also numbered, but if I try to use xsl:number, then it just gives the original position, not the one after ...
0
votes
3answers
525 views
How do I make ordered list using javascript?
Lets say I have this
<ol>
<li>V1 One</li>
<li>V1 Two</li>
<li>V1 Three</li>
<li>V1 Four</li>
</ol>`
I want to make an ordered ...
0
votes
2answers
312 views
How to create a bulleted or numbered list with Qt?
How to create a bulleted or numbered list in QTextEdit with Qt by clicking a button? Also it is necessary that make a list the paragraphes which are selected by clicking the same button. And when the ...
0
votes
4answers
147 views
Renumbering numerically ordered div ID's when adding one in the middle with Javascript
I'm developing an application with javascript. What I need is to have divs with id's (1,2,3...) and be able to insert a div between, for example, 2 and 3, with jquery, and then have that be the new ...