English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Programming & Design - April 2007

[Selected]: All categories Computers & Internet Programming & Design

faster in d sense d max operating frequency or d least propagation delay

2007-04-22 07:18:54 · 4 answers · asked by san_2931 1

I'm looking to develop a software aplication for running on a PC. Thinking of using SQL for my database, PHP/HTML for pages but what is a good application lauguage to run the application portion? Any suggestions would be apprceiated. BTW, my background is mostly mainframe. Thanks

2007-04-22 05:59:15 · 2 answers · asked by gary h 1

I have a medical diary application.

There are two tables Patient Details and Appointments.

Patient Details is one record per patient, Appointments can be an unlimited number.

When I do a search by patient ("SELECT * FROM PatientDetails WHERE.....") this is fine but I want to be able to show when the patient last attended. This means pulling out the highest value for ApptDate field in Appointments within that query.

How do I do this?

2007-04-22 05:52:58 · 4 answers · asked by rodandalisonthompson 4

this is very unusual. The top technical scientists have tried this, including Bill Gates. For some reason no one can understand why this happens.

try to create a folder on your computer named 'con' it will not allow you to. anyone who manages to do it...Your a multi Millionairre ! Bill Gates will be wanting you !

2007-04-22 05:38:09 · 4 answers · asked by Anonymous

Choosing between Linux and Sql server 2005??
IT jobs require 3 years of experience so how do I get in??
I am between 2 choices:
Either learning Linux and try to learn as much as i can home but it might take me 2 years to be good and marketable.
Maybe less what do you guys think?

I am also considering learn SQL Server 2005 to become an assistant DBA.

But even if I have lab to practice both jobs positions
require 3 years of experience.

So my question is job wise what do you recommend me to learn ? Linux or SQL Server 2005?

And if the requirement are 3 years of experience how do I get into the field?

I am 49 so I need to get myself established soon.

Thanks.

2007-04-22 03:53:19 · 3 answers · asked by Roland 1

I have a database of patients at my office, and would like to send reminder cards every year after thier exam. Currently I do this by going through the database, and copy/paste to a blank database to print the labels.
What I would like to do is set up a query to do this for me. I messed around a little and got it set up. but I didn't know what to put in criteria.
The records that I want included:
Had an exam in the current month within the past 5 years.

2007-04-22 02:37:52 · 6 answers · asked by jim.walker0 2

4

Is there any website where VB.net software is available?

2007-04-22 00:22:01 · 4 answers · asked by saima n 1

I'm trying to validate the following code so it only accepts the 26 letters of the alphabet, no numbers or other illegal characters. How would I do this? I've already checked MSDN and several arrays. HELP!

Dim word As String
word = InputBox("Enter a word:", "Guessing Game!")

2007-04-21 20:52:25 · 3 answers · asked by fiftypercentrick 2

Am i right? Are they both one & same software?

2007-04-21 20:34:38 · 5 answers · asked by Reverse Swing 3

2007-04-21 18:55:00 · 1 answers · asked by zubair y 1

2007-04-21 18:26:22 · 4 answers · asked by Roxy 3

My friend has a lot of extra webspace on his account, and would be willing to give me a subdirectory of 20MB space and separate FTP access. Then I could design my own webpages using basic html, and load them up to that website.

As I frequently find a lot of good information on Yahoo Answers, I am wondering how I can make a webpage of my favorite Q&A from Yahoo Answers?

The major problem I see it that the URL addresses of the information on the Yahoo Answers site don't seem to be "stable." If you give someone a link, they email back and say that they got an error message.

So I am wondering what is the best way to organize this data into a webpage that I design and that I upload to my own server ..... ??

2007-04-21 17:19:08 · 4 answers · asked by Overseas E 3

becasue thats my major when i fo to college

2007-04-21 17:16:48 · 4 answers · asked by jamgal11 1

May I know the sentence expressing the following query?

SELECT course.course_code, title
FROM course, assignment
WHERE course.course_code = assignment.course_code
GROUP BY title, course.course_code
HAVING COUNT(*) >= ALL ( SELECT COUNT (*)
FROM assignment
GROUP BY course_code)


course
course_code title credit quota
c1 Logic 60 null
c2 Syntax 30 null
c3 Functions 60 null
c4 Semantics 60 24
c7 Pragmatics 30 20

assignment
student_id course_code assignment_no grade
s01 c4 1 74
s01 c4 2 78
s01 c4 3 70
s05 c2 1 78
s05 c2 2 63
s07 c4 1 91
s09 c2 1 92
s09 c2 2 76
s09 c3 1 80
s09 c3 2 81
s09 c4 1 85
s09 c4 2 80
s09 c4 3 71
s09 c7 1 74
s09 c7 2 73
s10 c3 1 48
s10 c3 2 50
s10 c4 1 45
s10 c4 2 47
s10 c4 3 45
s57 c2 1 73
s57 c2 2 69
s57 c3 1 56
s57 c3 2 72
s57 c3 3 81
s57 c4 1 71
s57 c4 2 77
s57 c4 3 67

2007-04-21 17:13:37 · 1 answers · asked by Anonymous

As this is a homework, so anyone who know the answer to my question, mind tell asap, thanks a lotsa!!

2007-04-21 16:48:03 · 4 answers · asked by Imaginarist... 1

I just set up a linux box and i'd like to enjoy it, what's there to do?

2007-04-21 16:20:57 · 4 answers · asked by xyphermedia 1

I am writing a routine for a point of sale system in a shop. They have a fairly simple and short stock list which fits on one screen. The user selects how many of an item they wish to sell and a JavaScript routine calculates the totals. I then POST this form to another PHP program where it needs to recover the information to print a receipt.

The problem is the JavaScript routine has some unusual PHP variable names which my program is auto building based on a flat file database.

To cut a long story short let's say one of my variables is called $PROD_KAY001_499 and it contains the value 2 which is the quantity the user entered.

If I say: echo $PROD_KAY001_499; it shows 2. No problem.

But what if I need to build that variable? Let's say I just did that and now $temp=$PROD_KAY001_499.

If I say: echo $temp; it shows '$PROD_KAY001_499' but I want to show the CONTENT of that variable, not the actual variable name itself.

Sorry if that was not all that clear, it's hard to explain...

2007-04-21 15:38:31 · 5 answers · asked by ZCT 7

everything else is fine but when i do that i get the hour glass thing and then nothing. when i close the window my computer looks like it is refreshing. what can i do.

2007-04-21 14:24:58 · 3 answers · asked by Jackie G 1

it is not showing up in hidden files/folders,,,and it`s still here,,,can`t seem to find it,,help!!!!!!!!!!!

2007-04-21 11:24:27 · 1 answers · asked by rhardfrumnc 4

If some one has seen both in a computer or has a knowledge about this matter, explain please

2007-04-21 09:29:08 · 4 answers · asked by Pink Panther 5

2007-04-21 08:48:27 · 2 answers · asked by Anonymous

In relation to computer hardware

2007-04-21 08:24:37 · 1 answers · asked by Thomas B 1

Hello All,

Here's what I need. I'll have some numbers in a table in MS word, and when I click on those numbers, they should be able to go to a certain area of text in the rest of the document associated with that number. I would like to know how to do this.

Thanks much!!!

2007-04-21 06:02:20 · 2 answers · asked by Riverblossom 2

How do I make my own search engine and make billions of people to use it? How do I start making it?

2007-04-21 05:53:19 · 3 answers · asked by Anonymous

Can you create programs that works on all platforms ( mac , linux & windows) without making seperate versions for each platform

2007-04-21 05:10:24 · 9 answers · asked by Andreu 2

Which one is better?? Paint Shop Pro XI or Paint Shop Pro X? Because I see the price are quite the same...

2007-04-21 02:43:52 · 3 answers · asked by Anonymous

I've got lookup list yeh another word Dropdownlist. I want the user to only select the data from the dropdpwnlist, they should not be able to enter any data themself if a dropdown list is avialable...

i hope this makes sense please help me !

2007-04-21 01:36:04 · 1 answers · asked by Anonymous

fedest.com, questions and answers