Questions tagged [fixed-width]

Fixed layouts are layouts that start with a specific size, determined by the Web designer. They remain that width, regardless of the size of the browser window viewing the page. Fixed width layouts allow a designer more direct control over how the page will look in most situations. They are often preferred by designers with a print background, as they allow the designer to make minute adjustments to the layout and have them remain consistent across browsers and computers.

source: http://webdesign.about.com/od/layout/g/bldeffixedlyot.htm

Fixed Width Text File Definition: Above all, a fixed width text file is a file that has a specific format which allows for the saving of textual information/data in an organized fashion. Fixed width text files are special cases of text files where the format is specified by column widths, pad character and left/right alignment. Column widths are in units of characters. So if you have data in a text file where the first column always has exactly 10 characters, and the second column has exactly 5, the third has exactly 12 (and so on), then you have a fixed width text file.

Each row (paragraph) contains one record of information; each record can contain multiple pieces of data (fields), each data field (column) has a precise number of characters. The data is padded with spaces (or any character you specify) if it does not completely use all the characters allotted to it. Further, each piece of data can be left or right justified, meaning the padding of characters can occur on either side.

source: http://www.softinterface.com/Convert-XLS%5CFeatures%5CFixed-Width-Text-File-Definition.htm

462 questions
0
votes
1 answer

SSIS define EOL (or row delimiter)

This is a silly question but it is driving me nuts: why can't I define row delimiters in SSIS, just HEADER delimiters? Here is my situation: my file contains records of varying sizes: So, I am unable to define a row delimiter for my file. Further,…
LearnByReading
  • 1,813
  • 4
  • 21
  • 43
0
votes
2 answers

Parsing Cobol fields description from Java

I have to parse a text like this: 000001 01 ROUTINE_NAME. 000002 * 000003 05 ROUTINE_NAME-INPUT. …
Vitaly Olegovitch
  • 3,509
  • 6
  • 33
  • 49
0
votes
2 answers

Fixed width and height of the UIImage using Swift (AutoLayout)

I am trying to put my image at the center & want to keep the width & height of the image fixed. I have tried adding constraints : equal width, equal height and have also added a constraint to keep some padding below the label. When I run it, the…
sau123
  • 352
  • 5
  • 18
0
votes
1 answer

How can I apply an SVGMatrix to an array of points?

Are there built-in libraries to multiply a vector of points by an SVGMatrix? I have an SVG drawing that has been scaled, and I want to annotate that drawing in its original coordinate system with a line that has a fixed width in screen space. (I.e.…
MattD
  • 1,324
  • 4
  • 14
  • 28
0
votes
1 answer

CSS - Fixed width layout

I'm writing the code for a fixed width design and I have a very simple problem that I can't seem to get around:
content
If the browser window…
0
votes
1 answer

Matlab to read in fix-width text file

I have a text file like below: TestData 6.84 11.31 17.51 22.62 26.91 31.98 36.47 35.85 28.47 20.57 10.50 6.37 test1 0.24 2.62 4.94 7.17 10.39 15.37 18.73 18.29 12.26 …
James
  • 99
  • 9
0
votes
0 answers

Fixed width records in one line

I am currently working on a use case in which all the fixed width input records are present in one line. This file is huge enough to span multiple blocks on the hadoop cluster. How can i achieve this functionality to correctly read all records?
0
votes
2 answers

Viewing fixed page layout on mobile devices

I am using fixed page layout of my website (http://www.oatmeeel.com). It works fine on desktop browsers but not on mobile devices. The website is scaled to fit the browser but the format of some components change. Help please? Thank you!
0
votes
1 answer

Fixed page layout HTML

I am really new to web design, so please help me out! I am trying to get a fixed page layout for my personal website http://oatmeeel.com/. I used fixed width in px and html {min-width: 1440px}. This works fine in MAMP localhost (image 1). The page…
0
votes
1 answer

R Reading fwf files with different width spacing in dataset

I've got stuck up while reading fwf files. My issue is that I do not have uniform spacing with each column. It seems that each row has a different width. How can I correct this? Example here: NAME MARKS ABC 100 BCA 90 I appreciate any…
0
votes
1 answer

2 fixed width columns and fluid content area bootstrap

Is it possible to have 2 fixed width sidebars with a fluid centered content area using bootstrap Please take a look at the screenshot link and you can check the code I've tried.
0
votes
1 answer

unpack_from() des not work with big files

I try to read data from some fixed width formatted files (from here) using python3. If I am preselecting just a few lines it works fine, but if I want to go through the hole file( with about 1000 lines and 611 blocks per line a 4 chars = 2444…
LittleByBlue
  • 436
  • 9
  • 18
0
votes
1 answer

Complex fixed width import MYSQL

I have some huge files which I have to import to the DB. They have no separators so would be fixed width. The thing is that I'd like to have the avg of some of the fields as one column, and only from the ones which are not 0. example text(no spaces…
0
votes
1 answer

I am trying to decrease the width of a text using arrays in java, but java is returning a single error

I am trying to decrease the width of a text, and in line 19 of my code java returns the error cannot find symbol. Here is my code up to the line containing the error: public class FixedWidthPrinting{ public static void print(String[]…
0
votes
1 answer

Excel 2010 Text File Import Fixed Column Width

I need to automate the import of .txt file and set column widths to specific criteria. I know that it's possible for doing this with data that is delimited, but i've yet to find a source for fixed width. Any suggestions?
Joseph
  • 51
  • 8