Questions tagged [freeform]

The free form layout was introduced in Fortran 90. This source-code dialect for Fortran allows overcoming the limitations of the (previous) fixed format (either 77 or 132 columns). There are some differences between the two, for instance continuation lines. Fortran compilers typically rely on the source code suffix (i.e. file extension) to determine whether to use one or another dialect.

43 questions
119
votes
5 answers

Why doesn't the compiler report a missing semicolon?

I have this simple program: #include struct S { int i; }; void swap(struct S *a, struct S *b) { struct S temp; temp = *a /* Oops, missing a semicolon here... */ *a = *b; *b = temp; } int main(void) { struct S…
Some programmer dude
  • 363,249
  • 31
  • 351
  • 550
4
votes
1 answer

Implementing free form drawing in a paint app

I'd like to pick your brains on how to implement freeform drawing in a paint app. Given that the command object would encompass the click down, the arbitrarily dragging around, and the release, how would this be necessarily stored in the command…
Joey
  • 7,457
  • 12
  • 50
  • 103
4
votes
1 answer

Lasso tool in html5 canvas

I'm trying to build a freeform lasso tool to clip an image inside canvas. I'm using fabric.js to draw the shape. var canvas = document.getElementById('c'); var ctx = canvas.getContext('2d'); var img =…
Pontus
  • 71
  • 1
  • 4
3
votes
3 answers

How to crop only certain area using HTML5 + Javascript or server side language?

Before asking my question, I have a test page to make it everyone understand my question better. The URL is http://iamthemoon.com/crop/ You can move the red selection. I like to crop only the area of red selection. I thought it could be done easily…
Moon
  • 20,835
  • 65
  • 174
  • 263
3
votes
5 answers

Freeform Reporting tool

I am looking for free form reporting tool. Free/open source is preferred. It should work without a data source and one should be able to print at any place on a page. I need this because I am using an age old but very fast semi RDBMS which does not…
Yogi Yang 007
  • 4,668
  • 10
  • 50
  • 71
3
votes
2 answers

Can NetBeans auto-build java free-form (Ant) projects?

After every save I need to right-click on the project in the project browser and click on build. Is there a way to configure NetBeans to auto-build the project when I save a file?
ufk
  • 26,596
  • 55
  • 202
  • 346
3
votes
3 answers

Mapping freeform XML/JSON to Moxy/JAXB annotated class

I'm trying to find a way to correctly map the following XML/JSON document to an equivalent JAXB/Moxy annotated class. NOTE that the model element of the document, which in my example describes a person, is freeform, i.e. might be any kind of XML…
Mirko Luchi
  • 321
  • 3
  • 4
2
votes
4 answers

How to categorize and tabularize free-form answers to a question in a survey?

I want to analyze answers to a web survey (Git User's Survey 2008 if one is interested). Some of the questions were free-form questions, like "How did you hear about Git?". With more than 3,000 replies analyzing those replies entirely by hand is out…
Jakub Narębski
  • 268,805
  • 58
  • 209
  • 228
2
votes
1 answer

Is it posible to use free form shapes as windows in OSX?

I want to use a free form shape (e.g. A partially transparent image) as a window backgound without the standard close and maximise buttons. Like the widgets do. Is that possible in OSX? I could not find any info on that or an app that uses…
david
  • 3,304
  • 4
  • 26
  • 39
2
votes
1 answer

gfortran does not recognize comments in .h file that begin with 'c' in first column

I am trying to include a file 'a.h' into a Fortran program 'b.f' The contents of the files are as follows: a.h c This is a comment k = 10 100 format( I5 ) b.f program test_include include 'a.h' write(*,100) k end program…
user5618107
2
votes
1 answer

What's the difference between free-form and non-free-form JSON?

I'm confused what free-form JSON means. Does it mean you can put any types as values in {}? I thought all JSON are like that (i.e. {'hi':123, 'abc':{'d':[1,2,3],'e':'yay'}}). So what does free-form JSON mean. Is this a redundant term? Is there such…
Popcorn
  • 4,710
  • 10
  • 45
  • 80
2
votes
2 answers

How to generate freeform rdlc reports with one page per row

Given a data set containing multiple rows, from within a .NET console application I need to generate a report on a single page for each row, sending those pages directly to the printer. I am attempting to use Microsoft Report for this by attaching…
Joe
  • 73
  • 2
  • 10
1
vote
2 answers

iPhone: Freeform XIB file doens't fit in iPhone view

I have created XIB file in freeform size because I need many controls to add. I have done it but when I push my view controller, it doesn't have automatic scrollbar on iPhone display and my view gets cropped! How to get my full view displayed on…
AlienMonkeyCoder
  • 7,314
  • 11
  • 69
  • 138
1
vote
0 answers

How to best optimize queries searching for free form varchar strings in Oracle 11.2?

First, I'm currently using: Oracle SQL Developer Version 17.2.0.188 Oracle Database 11g 11.2.0.40.0 I have some important values a description column that are entered free-form. While there are probably 30 descriptions, these are entered in…
Katie Gray
  • 11
  • 3
1
vote
1 answer

Universal width when using freeform

I used the freeform option on my scrollview and parent view so that I can use the storyboard builder to add labels and textfields. Now I am having trouble getting everything entered horizontally when simulating. It's different on every device. I…
KnijnOps
  • 437
  • 5
  • 11
  • 33
1
2 3