Tech Support > Computers & Technology > Programming
Byte Order
Posted on July 23rd, 2003 | 2 Comments

Hello, Are the bits in a byte arranged from-left-to-right (or from-right-to-left) depending on the byte order of the host? Example: Lets say this unsigned short integer is represented like this in...

class naming in C++
Posted on July 23rd, 2003 | 24 Comments

Why many people like attach the prefix "C" from his class name? for example, class CMyClass; I don't konw why it needed. Just in C++, A class is a type. There are no built-in type names and no...

Pointers mass
Posted on July 23rd, 2003 | 8 Comments

Hello all. look at this binary not balanced tree... (A) Dad (B) (C) LSun RSun (D) (E)

working with visual basic and omnipage 11?
Posted on July 23rd, 2003 | 0 Comments

i would like to know if it's posible to use omnipage 11 or similar with microsoft visual basic 6.0. i would like to use it as microsoft word or other applications.thanks,

api porting and compliance
Posted on July 23rd, 2003 | 0 Comments

hello friends, I am working on providing api conformance and compatibility to various protocol stacks of UMTS network that will run on an embedded cards system. I am in os team and my work is to...

Re: [C/General] optimizing ifs
Posted on July 23rd, 2003 | 4 Comments

copx wrote: What platform? x86? MMX supports saturation of variables. See also http://www.df.lth.se/~john_e/fr_gems.html for a straight x86 implementation that may be converted to...

Re: Best c++ random number generator?
Posted on July 23rd, 2003 | 0 Comments

In article <TUeGa.1107$cb1.113452052@newssvr13.news.prodigy.com>, BCC wrote: http://www.random.org -- Wellu Mäkinen <wellu@NOSPAMwellu.org> gpg_key http://www.wellu.org/key.pgp No tears please,...

help on algorithm (recursion)
Posted on July 23rd, 2003 | 16 Comments

i need help trying to solve the following problem. the algorithm to use would be much appreciated. having it in java would be ideal. the input is any number (1..N) factor types. each factor type...

[gtkmm] change font size of a widget
Posted on July 22nd, 2003 | 0 Comments

Hi! I'm trying all night to change the font size of a Gtk::Statusbar (or any other Widget. <cite> Pango::FontDescription...

//OT Lease administration program.
Posted on July 22nd, 2003 | 0 Comments

Was wondering if anyone is aware of a lease administration program for M$ Win that is for equipment leases? I hate to write programs I can buy for a couple hunderd. Need to do the following: Print...

C newbie
Posted on July 22nd, 2003 | 4 Comments

Hello good people why does this code core dump?? #include<stdio.h> main (int argc, char argv) { int i; printf("Your arguments\n"); for (i=0; i<argc; i++) printf("%s\n",argv);

PHP help with uploading files
Posted on July 22nd, 2003 | 1 Comments

We're running PHP 4.1.2 on our server, and I want to write some code to upload a file. I'm using the copy($HTTP_POST_FILES,"path".$HTTP_POST_FILES). I have it printf to view the name and temp name...

Beginner Win32 / C question
Posted on July 22nd, 2003 | 3 Comments

Hello, How difficult is it to write an interface for my program to control another application? IE a piece of code that catches other programs' text and graphical output and converts that to a...

Re: [C/General] optimizing ifs
Posted on July 22nd, 2003 | 0 Comments

copx <invalid@invalid.com> wrote: I assume that a and b are members of some set and v,x,y,z are dimension-less variables. If a and b are mostly random, then those conditions are taken very rarely....

Re: [C/General] optimizing ifs
Posted on July 22nd, 2003 | 9 Comments

copx wrote: That's not optimized at all! It's conceptually more restrictive. (a == b), suggests that the compiler determine equivalence, in the way that the compiler sees most fit. Concerning (a ==...

Re: C++ STL programming - please help
Posted on July 22nd, 2003 | 1 Comments

sportvette wrote: If you would like a reference to a vector, make the member a reference to a vector. It's that simple. E.g.: class MyClass { public: typedef std::vector<int> Vector;

Re: Graphical routines
Posted on July 22nd, 2003 | 2 Comments

In article <bfhess$u31$1@bagan.srce.hr>, Dzokica <dzokica@hotmail.com> wrote: ... What kind of system is this for? What kind of video board/mode? That information will help out a great deal. If...

Learning programming
Posted on July 22nd, 2003 | 8 Comments

Years a go when I was at college I learned to program in Cobol, and qbasic. I've almost forgot as much as I know. Can someone point me in the direction of a 'nice' programming language to learn and...

Being prompted to download ASP page that should just execute in the background for web-based AICC interoperability
Posted on July 22nd, 2003 | 0 Comments

Thanks in advance for any help... I am attempting to interoperate our web-based LMS with a certain courseware vendor's web-based courseware using ASP. When I am testing from the browser and I exit...

Resizing hash tables
Posted on July 21st, 2003 | 10 Comments

I recently ran across a situation in which a hash table might have been handy (but ended up being more work than it was worth). Something I was wondering about, though: Do there exist hash...