search for: bcb5

Displaying 3 results from an estimated 3 matches for "bcb5".

Did you mean: bb5
2010 Jun 22
0
BCB5 CGI.EXE in Ubuntu Lucid 64bit
Hi All, I am trying to use an exiting CGI.EXE program on 64bit Ubuntu Lucid. I have made a test program with the compiler (Borland C++Builder 5 ? BCB5) that just starts prints and closes. Code: #include <vcl.h> #include <conio.h> #pragma hdrstop #pragma argsused int main(int argc, char* argv[]) { cprintf("small test"); return 0; } Launched from Bash Script&#058; Code: before="$(date +%s%N)&quot...
2000 Aug 31
2
More information on exception
The following block of code produces an exception. The testnew.ogg file is 10 seconds, containing pure silence encoded using mode E: http://www.cs.mun.ca/~chris3/testnew.ogg Other files and modes can cause the exception, but many files work fine. #include <stdio.h> #include "vorbis/vorbisfile.h" int main() { OggVorbis_File ov, ov2; FILE *f, *f2; f
2007 Feb 28
2
Fixture name not available as class variable in spec
Hi there, I can''t seem to access the fixture name as a class variable from my specs. I have to set the variable in the spec setup. ... [fixtures] my_fixture: id: 1 ... [rpsec] @my_fixture.id.should == 1 ... [error] You have a nil object when you didn''t expect it! The error occurred while evaluating nil.id ... [my setup] RSpec-0.7.5.1 (r1395) - BDD for Ruby Rails