Forum: Windows Software Aug 22nd, 2008 |
| Replies: 2 Views: 285 Need help Can anyone steer me in the right direction here as to how I go about creating a form in access based on more than one table. |
Forum: IT Professionals' Lounge Aug 5th, 2008 |
| Replies: 2 Views: 671 Is this correct ? I was wondering if this code was correct or not. I am trying to copy all the files and subdirectories in one directory to a newly created directory.
cp -R dir/*newdir/*
any suggestions? |
Forum: Shell Scripting Aug 3rd, 2008 |
| Replies: 4 Views: 533 Re: How does this look Also I need some help here with this code. I need to create a bash script that will copy all the files and subdirectories in one directory to a newly created directory. Here's what I came up with. ... |
Forum: Shell Scripting Aug 3rd, 2008 |
| Replies: 4 Views: 533 |
Forum: Shell Scripting Aug 3rd, 2008 |
| Replies: 4 Views: 533 How does this look I was wondering how this looks. I am trying to create a script that will produce a text file that has a list of the files in the present working directory. How do you go about testing this... |
Forum: Visual Basic 4 / 5 / 6 Jul 25th, 2008 |
| Replies: 2 Views: 232 Need your opinion: O.k. this is my first scripting class and I need someone's opinion on this code. I need to write a code for a modularized program that will:
1.) read each record from the inventory database
2.)... |
Forum: VB.NET Jul 24th, 2008 |
| Replies: 1 Views: 201 Code I need to sum and print the total retail value of the inventory in the store. Here is the code I came up with but it seems to be wrong. Any suggestions?
Totalretailvalue = (fldQuantity *... |
Forum: VB.NET Jul 24th, 2008 |
| Replies: 7 Views: 350 Re: Is this correct Hey I was wondering if this is correct or not. I need to read each record from the inventory database. Print a price tag for each item in inventory. Count & print the total number of tags printed.... |
Forum: VB.NET Jul 24th, 2008 |
| Replies: 7 Views: 350 |
Forum: VB.NET Jul 24th, 2008 |
| Replies: 2 Views: 520 Reading records from the inventory database: I was wondering if anyone knew how to code to read a record from an inventory database? I think you need to use a while loop.
while read rcd1 rcd2 rcd3
do
that's all I got so far. I am really... |
Forum: VB.NET Jul 23rd, 2008 |
| Replies: 5 Views: 245 Re: Missing something The question is how to do it. I don't know . I am really getting frustrated with this class. |
Forum: VB.NET Jul 23rd, 2008 |
| Replies: 5 Views: 245 |
Forum: VB.NET Jul 23rd, 2008 |
| Replies: 5 Views: 245 Missing something I need some help here I guess I am suppossed to put this code inside a while loop. Don't have a clue this is my first scripting class.
if (x <=20 and >=25 ) then
print x
Else
If (x <=40 and... |
Forum: VB.NET Jul 22nd, 2008 |
| Replies: 7 Views: 350 Re: Is this correct So here's the question. I need to write the pseudocode for a program that uses a single while...loop to print the numbers from 20 to 25 and from 40 to 45. Your loop will have at least one nested... |
Forum: VB.NET Jul 22nd, 2008 |
| Replies: 7 Views: 350 Is this correct Write the pseudocode for a program that uses a single while loop to print the numbers from 20 to 25 and from 40 to 45. your loop will have at least one nested "if" statement that will determine when... |
Forum: VB.NET Jul 22nd, 2008 |
| Replies: 1 Views: 149 Confused This is my first scripting class and I am a little confused about nesting if statements. I need help on when numbers should be printed. |