30
Apr
I need to make a program that doesn't return any values, so I have the ability to only use Pass by value or pass by reference (pointers)between the functions.
I have the ability to get my program to compile, but it doesn't give the right results, and I think I'm doing something wrong. I suspect it […]
Read the rest of this entry »
30
Apr
I was having an issue with a NIC subnet mask on a Sunfire V220. The computer acts as a node for a TETRA radio system. We’ve two nodes, one on the 172.16.4.0 network and the other on 172.16.5.0, in a static IP, non-routed network. Each node has it's own set of peripherals that need […]
Read the rest of this entry »
30
Apr
string = “James”
string = “peppers”
No matter the length of string I want to grab the last character.
I want to find out the value of the last character of a string, I don't want to delete it or anything else I just want to be able to put the value into a variable and then I’ll […]
Read the rest of this entry »
30
Apr
is possible to ORDER BY inside a loop?
any help will be grat, thanks
Answer: Why can't you just order your data by using the ORDER BY clause in your SQL statement? If you don't do it that way and go the PHP route, you can sort stuff in there too. You can either write your own […]
Read the rest of this entry »
30
Apr
It starts something like this….
.html and .htm are the extensions of the pages which are capable of seeing the output from any web browser.
1. “.htm ”
This was started in the early days state 16bit OS level where the name of the file and extension are limited to 8 chars and 3 chars respectively. The […]
Read the rest of this entry »
30
Apr
Virtually ALL web pages show up plain - white with only blue links. Even colored plain text shows black.
Backgrounds of any kind don't show up -
Everything is just plain and colorless, and for the most part graphicless.
Why??!
What’s wrong??!
=(
Answer: Hm really?
I was about to suggest Opera, too.
Open Firefox and choose Tools>Options
Then click the tab that says […]
Read the rest of this entry »
30
Apr
Hey,
I'm currently building a website in php with a mysql database. When im finished i would like to publish it on the internet, however there are no free providers out there who support a mysql database. I do have an old pc at home, is there any way i can set that one up to […]
Read the rest of this entry »
30
Apr
#! /usr/bin/perl
use strict;
use warnings;
@ARGV = (”11214_2008_9368_JobSheet_200.xml”);
while () {
if (/Remove colour consent form/) {
print “Find\n $_\n
Do it colour […]
Read the rest of this entry »
30
Apr
Here is my code.
#include
#include
#define MAX_ROWS 10
#define MAX_COLs 10
int main(void)
{
int i;
int j;
int addvalue [10][10];
printf(”\n***Add_table built***\n”);
for ( i = 0; i < 10; i )
for ( j = 0; j < 10; j )
[…]
Read the rest of this entry »
30
Apr
This is a case of not keeping to the rule. I admit it. After completing my access mdb file, I turn it into “mde” forgetting to save the original mdb. Later on I wanted to alter my mdb, not realising that it has been converted into “mde”. Is there any possible means I have the […]
Read the rest of this entry »