473,406 Members | 2,707 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Stars pattern program

I need the program to prompt the user to input an odd number between 3 and 79 and then the output will look like this:

for example if they input 5:
*
**
***
****
*****

or 9:
*
**
***
****
*****
******
*******
********
*********
Feb 25 '07 #1
26 6952
here is my first attempt:
Expand|Select|Wrap|Line Numbers
  1. import java.io.*;
  2. import java.util.*;
  3.  
  4. publc class MagicPrinter
  5. {
  6. publc static void main(String[] args);
  7. {
  8. String inputString;
  9. double num1;
  10. char a = "*";
  11.  
  12. //for the input stream
  13. InputStreamReader isr = new InputStreamReader(System.in);
  14. //needed to use ReadLine()
  15. BufferedReader br = new BufferedReader(isr);
  16.  
  17. System.out.println("How many lines? ";
  18. inputString = br.readLine();
  19.  
  20. do{
  21. for(num 1 == 1;num1>3; a++){
  22.   for(num1 ==1;num3<80;a++){
  23.   System.out.print(a++);
  24.  }
  25.    }
  26.     }
  27.  
  28.  
  29.  
Feb 25 '07 #2
abctech
157 100+
here is my first attempt:
Expand|Select|Wrap|Line Numbers
  1. import java.io.*;
  2. import java.util.*;
  3.  
  4. publc class MagicPrinter
  5. {
  6. publc static void main(String[] args);
  7. {
  8. String inputString;
  9. double num1;
  10. char a = "*";
  11.  
  12. //for the input stream
  13. InputStreamReader isr = new InputStreamReader(System.in);
  14. //needed to use ReadLine()
  15. BufferedReader br = new BufferedReader(isr);
  16.  
  17. System.out.println("How many lines? ";
  18. inputString = br.readLine();
  19.  
  20. do{
  21. for(num 1 == 1;num1>3; a++){
  22.   for(num1 ==1;num3<80;a++){
  23.   System.out.print(a++);
  24.  }
  25.    }
  26.     }
  27.  
Hello,
First of all taking one look at your program I can say you must be getting more than a few compile time errors!

-Giving a ';' after main()? That will make it abstract and its body will be ignored.

-A character literal needs to be enclosed in single quotes(' ') not double(" ").

-The method readLine() is capable of throwing an 'IOException'.This exception is a type of 'Java Checked Exception', such type of exceptions must be handled in a try-catch block or declared to be thrown.

- for(num1 == 1) is incorrect.
'==' is for comparision and '=' is for assignment.

Structure of a 'for' loop is :
for (initialization; termination; increment) {
statement(s)
}
The first expression of the for loop is for initialization, but instead if you carry out comparision you'll definitely get an error.

-num3<80 ?
What is num3?Where is it declared?

- There is no do-loop in Java, the loops that we have are for,while,do-while.

Please compile your program and take a good look at the exceptions you are getting, try to sort them out one by one first. If you don't understand any exception post it.

As for the logic:
say there are 3 lines then -
line 1: one *
line 2: two *'s
line 3: three *'s

See the connection between the line number and the corresponding number of stars in it.
Now generalize it.
Feb 25 '07 #3
Hello,
First of all taking one look at your program I can say you must be getting more than a few compile time errors!

-Giving a ';' after main()? That will make it abstract and its body will be ignored.

-A character literal needs to be enclosed in single quotes(' ') not double(" ").

-The method readLine() is capable of throwing an 'IOException'.This exception is a type of 'Java Checked Exception', such type of exceptions must be handled in a try-catch block or declared to be thrown.

- for(num1 == 1) is incorrect.
'==' is for comparision and '=' is for assignment.

Structure of a 'for' loop is :
for (initialization; termination; increment) {
statement(s)
}
The first expression of the for loop is for initialization, but instead if you carry out comparision you'll definitely get an error.

-num3<80 ?
What is num3?Where is it declared?

- There is no do-loop in Java, the loops that we have are for,while,do-while.

Please compile your program and take a good look at the exceptions you are getting, try to sort them out one by one first. If you don't understand any exception post it.

As for the logic:
say there are 3 lines then -
line 1: one *
line 2: two *'s
line 3: three *'s

See the connection between the line number and the corresponding number of stars in it.
Now generalize it.
Yeah I realized after posting I made a ton of errors. Here is what I have now
Expand|Select|Wrap|Line Numbers
  1. import java.io.*;
  2. import java.util.*;
  3.  
  4. public class MagicPrinter
  5. {
  6. public static void main(String[] args)
  7. {
  8. String inputString;
  9. String = num1;
  10. char a;
  11. a = '*';
  12.  
  13. //for the input stream
  14. InputStreamReader isr = new InputStreamReader(System.in);
  15. //needed to use ReadLine()
  16. BufferedReader br = new BufferedReader(isr);
  17.  
  18. System.out.println("How many lines? ");
  19. num1 = br.readLine();
  20.  
  21. //double num1 = Double.parseDouble(in.readLine());
  22. num1 = 0;
  23. do{
  24. System.out.println(a);
  25. a++;
  26. }while(num1<80);
  27. }
  28. }
  29.  
  30.  
Feb 25 '07 #4
abctech
157 100+
Yeah I realized after posting I made a ton of errors. Here is what I have now
Expand|Select|Wrap|Line Numbers
  1. import java.io.*;
  2. import java.util.*;
  3.  
  4. public class MagicPrinter
  5. {
  6. public static void main(String[] args)
  7. {
  8. String inputString;
  9. String = num1;
  10. char a;
  11. a = '*';
  12.  
  13. //for the input stream
  14. InputStreamReader isr = new InputStreamReader(System.in);
  15. //needed to use ReadLine()
  16. BufferedReader br = new BufferedReader(isr);
  17.  
  18. System.out.println("How many lines? ");
  19. num1 = br.readLine();
  20.  
  21. //double num1 = Double.parseDouble(in.readLine());
  22. num1 = 0;
  23. do{
  24. System.out.println(a);
  25. a++;
  26. }while(num1<80);
  27. }
  28. }
  29.  
  30.  
Colin,
Tell me how do we declare string literals in Java? And then check if you are doing it the right way.

Your variable 'num1' is a String or an int? You want the user to input the number of lines dont you? 1,2,3 etc are numbers(integers) not strings.

You can simply say:
Expand|Select|Wrap|Line Numbers
  1. DataInputStream input = new DataInputStream(System.in);
  2.  
  3. System.out.println("How many lines you have to print?");
  4. int num1  = Integer.parseInt(input.readLine());
I also din't quite understand the logic behing your while loop, you want to print lines uptill num1(i.e the number of lines entered by user) or uptill 80?

Here's a link to understand the various loops properly.

And here are links to some previous problems similar to yours:

http://www.thescripts.com/forum/thread598625.html
http://www.thescripts.com/forum/thread596997.html

Have a look and then try again.
Feb 25 '07 #5
Colin,
Tell me how do we declare string literals in Java? And then check if you are doing it the right way.

Your variable 'num1' is a String or an int? You want the user to input the number of lines dont you? 1,2,3 etc are numbers(integers) not strings.

You can simply say:
Expand|Select|Wrap|Line Numbers
  1. DataInputStream input = new DataInputStream(System.in);
  2.  
  3. System.out.println("How many lines you have to print?");
  4. int num1  = Integer.parseInt(input.readLine());
I also din't quite understand the logic behing your while loop, you want to print lines uptill num1(i.e the number of lines entered by user) or uptill 80?

Here's a link to understand the various loops properly.

And here are links to some previous problems similar to yours:

http://www.thescripts.com/forum/thread598625.html
http://www.thescripts.com/forum/thread596997.html

Have a look and then try again.
I want to print lines between odd numbers 3 and 79
Feb 25 '07 #6
Ok so I assigned num1 to be an integer. Then I used this after the input string:

Expand|Select|Wrap|Line Numbers
  1. num1 = Integer.parseInt(input.readLine());
and I get this error:

Expand|Select|Wrap|Line Numbers
  1. MagicPrinter.java:24: cannot find symbol
  2. symbol  : variable input
  3. location: class MagicPrinter
  4. num1 = Integer.parseInt(input.readLine());
  5.                         ^
  6. 1 error
  7.  
Feb 25 '07 #7
abctech
157 100+
Ok so I assigned num1 to be an integer. Then I used this after the input string:

Expand|Select|Wrap|Line Numbers
  1. num1 = Integer.parseInt(input.readLine());
and I get this error:

Expand|Select|Wrap|Line Numbers
  1. MagicPrinter.java:24: cannot find symbol
  2. symbol  : variable input
  3. location: class MagicPrinter
  4. num1 = Integer.parseInt(input.readLine());
  5.                         ^
  6. 1 error
  7.  
Have you declared and initialized variable input in your program? If you haven't how will the compiler recognize it ?!
Feb 25 '07 #8
Have you declared and initialized variable input in your program? If you haven't how will the compiler recognize it ?!

I dont really know what the variable input is for.. does that look correct though?
Feb 25 '07 #9
r035198x
13,262 8TB
Have you declared and initialized variable input in your program? If you haven't how will the compiler recognize it ?!
Post the code that you have now that is giving this error.
Feb 26 '07 #10
Ok I now get this error:
Expand|Select|Wrap|Line Numbers
  1. MagicPrinter.java:26: unreported exception java.io.IOException; must be caught or declared to be thrown
  2. inputString = br.readLine();
  3.                          ^
  4. 1 error
This is what I have for my program:
Expand|Select|Wrap|Line Numbers
  1.  
  2. import java.io.*;
  3. import java.util.*;
  4.  
  5. public class MagicPrinter
  6. {
  7. public static void main(String[] args)
  8. {
  9. String inputString;
  10. String n1;
  11. int num1;
  12. char a;
  13. a = '*';
  14.  
  15. //for the input stream
  16. InputStreamReader isr = new InputStreamReader(System.in);
  17. //needed to use ReadLine()
  18. BufferedReader br = new BufferedReader(isr);
  19.  
  20. System.out.println("How many lines? ");
  21. inputString = br.readLine();
  22.  
  23. StringTokenizer st = new StringTokenizer(inputString);
  24. n1 = st.nextToken();
  25.  
  26. num1 = Integer.parseInt(n1);
  27. num1 = 0;
  28. while(num1<=79) {
  29. System.out.println(a);
  30. a++;
  31. }
  32. }
  33. }
  34.  
Feb 26 '07 #11
here is my most recent code:
Expand|Select|Wrap|Line Numbers
  1. import java.io.*;
  2. import java.util.*;
  3.  
  4. public class MagicPrinter
  5. {
  6. public static void main(String[] args)
  7. throws java.io.IOException
  8. {
  9. String inputString;
  10. String n1;
  11. int num1;
  12. char a;
  13. a = '*';
  14. //for the input stream
  15. InputStreamReader isr = new InputStreamReader(System.in);
  16. //needed to use ReadLine()
  17. BufferedReader br = new BufferedReader(isr);
  18.  
  19. System.out.println("How many lines? ");
  20. inputString = br.readLine();
  21.  
  22. StringTokenizer st = new StringTokenizer(inputString);
  23. n1 = st.nextToken();
  24.  
  25. num1 = Integer.parseInt(n1);
  26. //double num1 = Double.parseDouble(in.readLine());
  27. num1 = 0;
  28. while(num1<=79) {
  29. System.out.println(a);
  30. a++;
  31. }
  32. }
  33. }
  34.  
The program compiles and when run it asks for how many lines.

But when you enter a number the program outputs the alphabet then followed by infinite lines of ?

Anyone know why?
Feb 26 '07 #12
r035198x
13,262 8TB
Ok I now get this error:
Expand|Select|Wrap|Line Numbers
  1. MagicPrinter.java:26: unreported exception java.io.IOException; must be caught or declared to be thrown
  2. inputString = br.readLine();
  3. ^
  4. 1 error
This is what I have for my program:
Expand|Select|Wrap|Line Numbers
  1.  
  2. import java.io.*;
  3. import java.util.*;
  4.  
  5. public class MagicPrinter
  6. {
  7. public static void main(String[] args)
  8. {
  9. String inputString;
  10. String n1;
  11. int num1;
  12. char a;
  13. a = '*';
  14.  
  15. //for the input stream
  16. InputStreamReader isr = new InputStreamReader(System.in);
  17. //needed to use ReadLine()
  18. BufferedReader br = new BufferedReader(isr);
  19.  
  20. System.out.println("How many lines? ");
  21. inputString = br.readLine();
  22.  
  23. StringTokenizer st = new StringTokenizer(inputString);
  24. n1 = st.nextToken();
  25.  
  26. num1 = Integer.parseInt(n1);
  27. num1 = 0;
  28. while(num1<=79) {
  29. System.out.println(a);
  30. a++;
  31. }
  32. }
  33. }
  34.  
You need to put a try-catch block around the code that creates the BufferedReader

BufferedReader br null;
Expand|Select|Wrap|Line Numbers
  1.  try { 
  2.        br = new BufferedReader(isr);
  3. }
  4. catch(IOException iO) {
  5.       iO.printStackTrace();
  6. }
  7.  
Feb 26 '07 #13
r035198x
13,262 8TB
here is my most recent code:
Expand|Select|Wrap|Line Numbers
  1. import java.io.*;
  2. import java.util.*;
  3.  
  4. public class MagicPrinter
  5. {
  6. public static void main(String[] args)
  7. throws java.io.IOException
  8. {
  9. String inputString;
  10. String n1;
  11. int num1;
  12. char a;
  13. a = '*';
  14. //for the input stream
  15. InputStreamReader isr = new InputStreamReader(System.in);
  16. //needed to use ReadLine()
  17. BufferedReader br = new BufferedReader(isr);
  18.  
  19. System.out.println("How many lines? ");
  20. inputString = br.readLine();
  21.  
  22. StringTokenizer st = new StringTokenizer(inputString);
  23. n1 = st.nextToken();
  24.  
  25. num1 = Integer.parseInt(n1);
  26. //double num1 = Double.parseDouble(in.readLine());
  27. num1 = 0;
  28. while(num1<=79) {
  29. System.out.println(a);
  30. a++;
  31. }
  32. }
  33. }
  34.  
The program compiles and when run it asks for how many lines.

But when you enter a number the program outputs the alphabet then followed by infinite lines of ?

Anyone know why?
That is what you told it to print

while(num1<=79) {
System.out.println(a);
a++;
if a is 'a', a++ makes a 'b'.

Do not use char for this. Use string or StringBuilder

if you have
Expand|Select|Wrap|Line Numbers
  1. String string = "*";
To add another star you simply do
Expand|Select|Wrap|Line Numbers
  1.  string = string + "*"; 
Feb 26 '07 #14
What is the difference?
Feb 26 '07 #15
DeMan
1,806 1GB
not a lot.
Feb 26 '07 #16
r035198x
13,262 8TB
What is the difference?
char and String are different. char is a primitive type while String is class Type.
char can only hold one char value. You cannot use char to represent

****. For that you need the String type. You may want to find some time to read this one day
Feb 26 '07 #17
DeMan
1,806 1GB
and for the record (before everyone jumps in)....the "not a lot" was in response to a thread entitled "a" that said "what's the difference" without the preceding discussion.....
My Bad!!!!
Feb 26 '07 #18
r035198x
13,262 8TB
and for the record (before everyone jumps in)....the "not a lot" was in response to a thread entitled "a" that said "what's the difference" without the preceding discussion.....
My Bad!!!!
I just merged the threads.
Feb 26 '07 #19
DeMan
1,806 1GB
I gathered someone had.....I just didn't want to look anymore stupis than I already have ;)
Feb 26 '07 #20
abctech
157 100+
Hi,
Couldn't resist, remembered the times when I just started with programming and would be equally confused about these * programs.

OP,
I've used Thread.sleep() so you can actually see what output you are getting due to using char a = '*' ; This method will slow your output a bit and allow you to take a good look at every line.

Expand|Select|Wrap|Line Numbers
  1. import java.io.*;
  2. import java.util.*;
  3.  
  4. public class MagicPrinter
  5. {
  6.     public static void main(String[] args)throws IOException,InterruptedException
  7.     {
  8.         String inputString;
  9.         String n1;
  10.         int num1;
  11.         char a = '*';
  12.  
  13. //for the input stream
  14.         InputStreamReader isr = new InputStreamReader(System.in);
  15. //needed to use ReadLine()
  16.         BufferedReader br = new BufferedReader(isr);
  17.  
  18.         System.out.println("How many lines? ");
  19.         inputString = br.readLine();
  20.  
  21.         StringTokenizer st = new StringTokenizer(inputString);
  22.         n1 = st.nextToken();
  23.         System.out.println("n1: " + n1);        
  24.  
  25.         num1 = Integer.parseInt(n1);
  26.         System.out.println("num1: " + num1);
  27.         num1 = 0;
  28.         while(num1<=79) 
  29.         {
  30.             System.out.println(a);
  31.             Thread.sleep(200);
  32.             a++;
  33.  
  34.         }
  35.     }
Execute the above program first and then read this explanation -

The Ascii value of '*' is 42, so when you say System.out.println(a) in your while loop, you will get a star in the first line of your output which is fine, but then in the very next line of your while by saying a++ you are actually incrementing the ascii value internally. So now the value has become 43 and 43 represents a '+' which will be the o/p on the second line. Then again the while loop proceeds executing a++ thus making a = 44 which represents a ',' which is the output on your third line..and so on..Thats why your program outputs a series of characters followed by infinite lines of ?....

Hope you see the output of the above program first, understand it and then change your logic accordingly. We will keep giving you pointers wherever you need help.
Feb 26 '07 #21
Ok so I got the program how it should be the only problem is that it doesnt produce the right output. When ran it prompts the user "How many lines?" But then when you put in a number it doesnt do anything, the cursor just moves to the next line and stays there. I have to turn this in tomorrow morning so if anyone knows what is going wrong I would appreciate the help. I also changed it to a for loop. The part where the mistake is has to be in the loop but I can't for the life of me figure it out.

Expand|Select|Wrap|Line Numbers
  1.  
  2. import java.io.*;
  3. import java.util.*;
  4.  
  5. public class MagicPrinter
  6. {
  7. public static void main(String[] args)
  8. throws java.io.IOException
  9. {
  10. String inputString;
  11. int num1;
  12. int a =1;
  13. int i;
  14. int j;
  15.  
  16. //for the input stream
  17. InputStreamReader isr = new InputStreamReader(System.in);
  18.  
  19. //needed to use ReadLine()
  20. BufferedReader br = new BufferedReader(isr);
  21.  
  22. System.out.print("How many lines? ");
  23. inputString = br.readLine();
  24.  
  25. num1 = Integer.parseInt(br.readLine());
  26. num1 = 0;
  27. for(i =1; i<num1; i++){
  28. for(j = i; j<0;j--){   
  29. System.out.print("*");
  30. }
  31. System.out.println();
  32. }
  33. }
  34. }
  35.  
Feb 27 '07 #22
Actually instead of assigning "*" to a character I just used it in the output.
Feb 27 '07 #23
r035198x
13,262 8TB
Actually instead of assigning "*" to a character I just used it in the output.

num1 = Integer.parseInt(br.readLine());
That is fine so far. Maybe you want to add error handling (what if the user enters something not a number?)

num1 = 0;
Now that's very bad. You have just thrown away the value that we want. Remove that line


for(i =1; i<num1; i++){
for(j = i; j<0;j--){
System.out.print("*");
}
You don't need two for statements.

You just need one for statement that prints the stars like this

Expand|Select|Wrap|Line Numbers
  1.  String stars = "*"; 
  2. for(int i = 0;i < num1;i++) {
  3.     //print stars
  4.     //print a space
  5.     //add a star to stars use the + operator
  6.     //skip a line
  7. }
  8.  
Feb 28 '07 #24
That is fine so far. Maybe you want to add error handling (what if the user enters something not a number?)


Now that's very bad. You have just thrown away the value that we want. Remove that line




You don't need two for statements.

You just need one for statement that prints the stars like this

Expand|Select|Wrap|Line Numbers
  1.  String stars = "*"; 
  2. for(int i = 0;i < num1;i++) {
  3.     //print stars
  4.     //print a space
  5.     //add a star to stars use the + operator
  6.     //skip a line
  7. }
  8.  
I took out num1 = 0;

But I have to keep the 2 "for" statements so it does a loop. How can I get it to work? I cannot find anything wrong
Feb 28 '07 #25
r035198x
13,262 8TB
I took out num1 = 0;

But I have to keep the 2 "for" statements so it does a loop. How can I get it to work? I cannot find anything wrong
Ah so you're online. Won't be long before you complete this now.

No you do not need 2 for loops
Just fill in the codes for lines marked // in the for that I gave you
Expand|Select|Wrap|Line Numbers
  1.  
  2. for(int i = 0;i < num1;i++) {
  3. //print stars
  4. //print a space
  5. //add a star to stars use the + operator
  6. //skip a line
  7. }
  8.  
e.g
for //print stars, replace with

Expand|Select|Wrap|Line Numbers
  1. System.out.println(stars);
Feb 28 '07 #26
r035198x
13,262 8TB
Ah so you're online. Won't be long before you complete this now.

No you do not need 2 for loops
Just fill in the codes for lines marked // in the for that I gave you
Expand|Select|Wrap|Line Numbers
  1.  
  2. for(int i = 0;i < num1;i++) {
  3. //print stars
  4. //print a space
  5. //add a star to stars use the + operator
  6. //skip a line
  7. }
  8.  
e.g
for //print stars, replace with

Expand|Select|Wrap|Line Numbers
  1. System.out.println(stars);
Just a point of correction


Expand|Select|Wrap|Line Numbers
  1.  
  2. for(int i = 0;i < num1;i++) {
  3. //print stars
  4. //add a space to stars use the + operator
  5. //add a star to stars use the + operator
  6. //skip a line
  7. }
  8.  
Feb 28 '07 #27

Sign in to post your reply or Sign up for a free account.

Similar topics

12
by: Miha Kovac | last post by:
Hi, can anybody help me with this one please. How can I make a glittering stars effect for my background? Please help, TIA M
3
by: kittykat | last post by:
Hi, I was wondering if you could help me. I am writing a program in C++, and the problem is, i have very limited experience in this language. I would like my user to enter a specific pattern, and...
6
by: pitachu | last post by:
Hi, I'm not an expect in .NET, so would anyone know an answer a design pattern for the following? There are many customers that require minor customizations to the program I will be...
34
by: Steven Nagy | last post by:
So I was needing some extra power from my enums and implemented the typesafe enum pattern. And it got me to thinking... why should I EVER use standard enums? There's now a nice little code...
11
by: td0g03 | last post by:
Hello, I just have a few questions. The first one be how would you print a pattern. I could use the if else, but I remember my teacher talking about something like for(i=1;i<=size;i) ...
1
by: halekio | last post by:
Hi all, Please bear with me as I've only started programming in C# 2 weeks ago and this is my first contact with OOP. I ran into a situation where I needed to catch an event in an object that...
2
by: darween | last post by:
How To write a full program to ask the users to enter a number , which indicates the number / level of stars that he / she wishes to display
2
by: hogcia | last post by:
Hello! I've got a little problem - I'm writing a program in C++, which should compare a text input from keyboard with a regular expression and return what parttern was recognized and where. The...
0
by: bs866806 | last post by:
Why do many people look to movie stars for answers to some of life's most challenging questions? While we have great respect for the art of acting, as explicated from Stanislavsky to Strasberg,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.