Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
columns
- Page 1
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
2 Days Ago
by usmanmalik57
…('[]').split(',') for item in outputs] # Create an empty DataFrame with
columns
for each subject, initializing with 0s df = pd.DataFrame(0…, index=range(len(parsed_data)),
columns
=subjects) # Populate the DataFrame with 1s based on the presence…
Re: Buggy career talk :-P
Programming
3 Weeks Ago
by Reverend Jim
… am going. In the age of 80 column punch cards,
columns
73-80 were reserved for sequence numbers. Supposedly there existed…
Re: Remove link frame around picture in Datagrid
Programming
Web Development
2 Months Ago
by Zinavo_1
To remove the link frame around a picture in a DataGrid, you can set the BorderStyle property of the ImageColumn to None or use CSS to remove the border around the image.
columns
Programming
Software Development
14 Years Ago
by kim.beaul
Please help, I have only been using Java 2 weeks. I am to ask the user how many
columns
he wants and then print an ascii table in that many
columns
. So far I can get the program to print the ascii table in one column. How do I specify the number of
columns
I want? Thanks Kim
Re: columns
Programming
Software Development
14 Years Ago
by jon.kiparsky
…? What will they think of next? "To print in
columns
, use a 3-d printer to make tall round things… round things intended to hold up buildings. Voila, printing on
columns
. For best results, don't make your tall round things…
Re: columns
Programming
Software Development
14 Years Ago
by sa_coder
Set the number of
columns
to c. Create a for loop (or while) to go from x to y, being the range of ascii to print. Inside the loop, have a counter to go from 1 to c. Print each character out and then increment your counter. When the counter = c, newline and reset the counter. That should take care of things. Hope this helps.
Re: columns
Programming
Software Development
14 Years Ago
by jon.kiparsky
…[2], [...]); //loop through a 2d array and print it in
columns
for (int i = 0; i < data.length; i++) { System…
CSS grid different number of columns
Programming
Mobile Development
4 Years Ago
by SimonIoa
 I … in the image. Any help? CSS .newspaper1 {
columns
: 100% 1; border-style:solid } .newspaper1 {
columns
: 2; border-style:solid } HTML <div…
Columns in txt
Programming
Software Development
16 Years Ago
by zourlas
… it is the first time i want to write 2
columns
of data in a txt file.....The first column will… digits).I would like to have 2 "tidy"
columns
say i have [CODE]ofstream file; file.open("text…
columns in GridView
Programming
Web Development
15 Years Ago
by sakhi kul
Hi to all, I have table student in which I inserting first name,middle name, last name in 3 different
columns
. but when i want to show it in gridview I want to join three
columns
into only one heading "Name". Is it possible...? or any other way to show it..?
Re: columns in GridView
Programming
Web Development
15 Years Ago
by Kusno
… inserting first name,middle name, last name in 3 different
columns
. but when i want to show it in gridview I… want to join three
columns
into only one heading "Name". Is it possible…
Columns addition
Programming
Databases
15 Years Ago
by ultras
I have two
columns
with stirngs ( "String1" and "String2) . How to make string inputed in text field ($search) to be comparative with sum of the both strings ("String1String2") Something like as: [CODE]" SELECT id, string1, string2, FROM table WHERE string1+string2 LIKE '%$search%' "[/CODE]
Re: Columns addition
Programming
Databases
15 Years Ago
by kylegetson
if your looking to concatinate (combine) two strings, in php, use the dot (.). [CODE] $a = "string1"; $b = "string2"; $combinedStrings = $a . $b; [/CODE] But it looks to me like your trying to combine the strings in the wrong place, unless you have a column with the name of two of your other
columns
combined?
Re: Columns addition
Programming
Databases
15 Years Ago
by almostbob
[code=sql]select * ( Concat(string1,' ',string2) as searchme ) from table where searchme like "$search"[/code]text string single space between the
columns
else you get BrownCow which wont match brown cow
Re: Columns addition
Programming
Databases
15 Years Ago
by ultras1
… "$search"[/code]text string single space between the
columns
else you get BrownCow which wont match brown cow[/QUOTE…
Re: Columns addition
Programming
Databases
15 Years Ago
by ultras1
… WHERE searchme LIKE '$search' " ;[/CODE] artist and song are
columns
in my table. I get this error : [CODE=php] You…
Re: Columns addition
Programming
Databases
15 Years Ago
by ultras1
… WHERE searchme LIKE '$search' " ;[/CODE] artist and song are
columns
in my table. I get this error : [CODE=php] You…
Columns problem
Programming
Databases
12 Years Ago
by HunainHafeez
i have tblScrutiny ,
COLUMNS
: teamid name userid now confusion is that every team has many members, so how how would i mention them, like e.g i mention 1 member in teamid =1 , then in next row the teamid changes (identity=ON) , so how to mention 2nd member ?
Columns Into Rows
Programming
Databases
12 Years Ago
by M.Waqas Aslam
Dear All! I want to get my
columns
value into rows . i am taking sum of qty of …
Re: how to makr columns in ms access
Programming
Databases
17 Years Ago
by MidiMagic
Columns
of what, in what kind of file?
Re: CSS grid different number of columns
Programming
Mobile Development
4 Years Ago
by Dani
…Foo </div> <div class="
columns
"> <div> Foo </div… .full-width { background-color: pink; } .
columns
{
columns
: 2; border: 0; padding: 0; } .
columns
div { background-color: green; } Something else …
Re: CSS grid different number of columns
Programming
Mobile Development
4 Years Ago
by SimonIoa
…;head> <style> .grid { display: grid; grid-template-
columns
: repeat(2, 1fr); grid-gap: 2px; border-style: solid } .span…;/h1> <p>This grid layout contains six
columns
and three rows:</p> <div class="…
Re: CSS grid different number of columns
Programming
Mobile Development
4 Years Ago
by Dani
> SimonIoa commented: what do you mean with div above the
columns
? +5 Exactly what I posted in my code snippet. Where the top and bottom divs are not part of
columns
.
Re: CSS grid different number of columns
Programming
Mobile Development
4 Years Ago
by SimonIoa
…. Really what's wrong with this. (video should take two
columns
) <div class="grid-container"> <div…> .grid-container { display: grid; background-color: #2196F3; grid-template-
columns
: 50% 50%; } .item1 { grid-area: 1 / span 2 / span 2…
Re: CSS grid different number of columns
Programming
Mobile Development
4 Years Ago
by Dani
What's the purpose of it being column-count 1 instead of just a regular div above the
columns
?
Re: CSS grid different number of columns
Programming
Mobile Development
4 Years Ago
by AndreRet
…;/h1> <p>This grid layout contains six
columns
and three rows:</p> <div class="…
Re: columns
Programming
Software Development
14 Years Ago
by fpaquin
If you are on the web, use DIV to construct your table instead of TABLE. Use the CSS "float: left;" to display your DIV side-by-side. [url]http://www.yourhtmlsource.com/stylesheets/csslayout.html[/url]
Re: columns
Programming
Software Development
14 Years Ago
by jon.kiparsky
Oh, dear. No, I'm afraid this is a Java forum. You know, Java, the programming language? The one that isn't HTML, the markup language? Oh, never mind...
Re: columns
Programming
Software Development
14 Years Ago
by sa_coder
What is your solution then Jon? I thought it was a viable one, but I guess not.
Re: columns
Programming
Software Development
14 Years Ago
by gazzatav
Most of this is already covered here [URL="http://www.daniweb.com/forums/thread95601.html"]http://www.daniweb.com/forums/thread95601.html[/URL].
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