473,785 Members | 2,738 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

tiling two objects vertically

Hi everyone,

I have a main menu that opens a report and a form that I would like to
display at the same time (while hiding the main menu).

So far, I made the form a pop-up and the report a preview so that both are
visible. The form is really small so it works.

However, it would be much better if I could tile the report and the form
vertically where the form takes up about 5cm and the report the rest of the
screen.

I have been trying for a while, but can't find a solution.

Thank you for reading this, it would be cool to hear if anyone has an idea

Nicolaas


---
Please immediately let us know (by phone or return email) if (a) this email
contains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.687 / Virus Database: 448 - Release Date: 16/05/2004
Nov 12 '05
16 2657
Forms allow you to group data in headers, a form can not

e.g.
***Day***
~~~Period of the day~~~
---RoomB---
Reservation details #1
Reservation details #2
Reservation details #3
---RoomA---
Reservation details #4
Reservation details #5
Reservation details #6
"Bradley" <br*****@REMOVE THIScomcen.com. au> wrote in message
news:BB******** **********@news-server.bigpond. net.au...
WindAndWaves wrote:
Hi Bri

I think this may be a good idea.

Also, Bradley and salad, the reason why I would like to do it is
because the report shows the booking information (for the restaurant)
and the form allows the person to make the booking.


Surely this information can be represented in a form?
I can't make the report into a form, because the report is perfect
and vice versa.


Please explain what you mean by "perfect"? :) What prevents the
information being communicated on a form? (either in a similar format of
in a different way).
Asking why may help though because it allow you to think of other
ways to solve the actual problem. THat is, my problem is to let the
waiter make a booking while seeing the other bookings.. rather than
displaying two at the same time (that is just a solution really).


That was my reason for asking. I's sure a form based solution can be
used for this.

Bradley
"Bri" <no*@here.com > wrote in message
news:1CSqc.5391 52$Ig.55968@pd7 tw2no...
Nicolaas,

In the OnOpen Event of the form and report use
DoCmd.MoveSize [right][, down][, width][, height] (in Twips,
1440/inch) See the Help for more info.

Bri

WindAndWaves wrote:
Hi everyone,

I have a main menu that opens a report and a form that I would like
to display at the same time (while hiding the main menu).

So far, I made the form a pop-up and the report a preview so that
both are visible. The form is really small so it works.

However, it would be much better if I could tile the report and the
form vertically where the form takes up about 5cm and the report
the rest of the screen.

I have been trying for a while, but can't find a solution.

Thank you for reading this, it would be cool to hear if anyone has
an idea

Nicolaas


---
Please immediately let us know (by phone or return email) if (a)
this email contains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.687 / Virus Database: 448 - Release Date: 16/05/2004

---
Please immediately let us know (by phone or return email) if (a) this
email contains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.687 / Virus Database: 448 - Release Date: 16/05/2004


--
regards,

Bradley

---
Please immediately let us know (by phone or return email) if (a) this email
contains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.688 / Virus Database: 449 - Release Date: 18/05/2004
Nov 12 '05 #11
WindAndWaves wrote:
Forms allow you to group data in headers, a form can not
I assume you meant reports can group data in headers? :)
e.g.
***Day***
~~~Period of the day~~~
---RoomB---
Reservation details #1
Reservation details #2
Reservation details #3
---RoomA---
Reservation details #4
Reservation details #5
Reservation details #6
You can achieve this in a form... although granted it may not be as
simple.. but some of the nicest solutions (for the client) aren't the
simplest :)

Ideas...?
- use the Treeview control?
- use subforms with a subform?
- build a query that displays the data (simplest way may be to write it
to a temp table?)

I'm sure there are many others. As a general rule for me is if you are
enquiring the data on the screen a form is best.

Bradley

"Bradley" <br*****@REMOVE THIScomcen.com. au> wrote in message
news:BB******** **********@news-server.bigpond. net.au...
WindAndWaves wrote:
Hi Bri

I think this may be a good idea.

Also, Bradley and salad, the reason why I would like to do it is
because the report shows the booking information (for the
restaurant) and the form allows the person to make the booking.


Surely this information can be represented in a form?
I can't make the report into a form, because the report is perfect
and vice versa.


Please explain what you mean by "perfect"? :) What prevents the
information being communicated on a form? (either in a similar
format of in a different way).
Asking why may help though because it allow you to think of other
ways to solve the actual problem. THat is, my problem is to let the
waiter make a booking while seeing the other bookings.. rather than
displaying two at the same time (that is just a solution really).


That was my reason for asking. I's sure a form based solution can be
used for this.

Bradley
"Bri" <no*@here.com > wrote in message
news:1CSqc.5391 52$Ig.55968@pd7 tw2no...
Nicolaas,

In the OnOpen Event of the form and report use
DoCmd.MoveSize [right][, down][, width][, height] (in Twips,
1440/inch) See the Help for more info.

Bri

WindAndWaves wrote:
> Hi everyone,
>
> I have a main menu that opens a report and a form that I would
> like to display at the same time (while hiding the main menu).
>
> So far, I made the form a pop-up and the report a preview so that
> both are visible. The form is really small so it works.
>
> However, it would be much better if I could tile the report and
> the form vertically where the form takes up about 5cm and the
> report the rest of the screen.
>
> I have been trying for a while, but can't find a solution.
>
> Thank you for reading this, it would be cool to hear if anyone has
> an idea
>
> Nicolaas
>
>
>
>
> ---
> Please immediately let us know (by phone or return email) if (a)
> this email contains a virus
> (b) you are not the intended recipient
> (c) you consider this email to be spam.
> We have done our utmost to make sure that
> none of the above are applicable. THANK YOU
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.687 / Virus Database: 448 - Release Date: 16/05/2004
>
>


---
Please immediately let us know (by phone or return email) if (a)
this email contains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.687 / Virus Database: 448 - Release Date: 16/05/2004


--
regards,

Bradley

---
Please immediately let us know (by phone or return email) if (a) this
email contains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.688 / Virus Database: 449 - Release Date: 18/05/2004


--
regards,

Bradley
Nov 12 '05 #12
WindAndWaves wrote:
Forms allow you to group data in headers, a form can not

e.g.
***Day***
~~~Period of the day~~~
---RoomB---
Reservation details #1
Reservation details #2
Reservation details #3
---RoomA---
Reservation details #4
Reservation details #5
Reservation details #6


Doable in a form. Depends on your skill level.

Nov 12 '05 #13
Bradley wrote:
A fruitless question. Why someone wants to do something is
irrelevent.

Not at all! Knowing why allows you to determine if there is a better way
of doing it. You must always understand why a client needs something.
It's an important part of the analysis.

<snip>

True enough. However, why someone wants to do something, especially in
NG questions, is most often irrelevant. There may be reasons why they
want to do it one way and not another. I have posed questions before
and the people answering me tend to wonder why I want to do something
more than simply answering a question. When the question is about
methods then you get into a long drawn out explanation of why you want
to do something. If it is a question by someone that is a relative
newbie to a feature of the system, OK. But if someone knows the product
and how it works, there may be underlying reasons why a way of
implementing something is done.

In my responses, because I have asked in the past for some advice
normally beyond the scope of what I know of a product, I tend to not
focus on why something is being requested one way but answering the
question. IOW, I may provide a recommendation for a better method to
accomplish a task I may think may assist, but as to why they want to do
something I tend to find a waste of time.

Nov 12 '05 #14
Bradley wrote:
Salad wrote:
Bradley wrote:
WindAndWav es wrote:
Thanks Bradley

I tried that, but it seems that only reports can be embedded as
subreport s and forms only as subforms. We are mixing here, that is
a subreport in a form does not work

I think I need to set the size of each window or something like
that, but I am not sure how.
Hmm, ok.

The next question I have is "why?". Why do you need both open at
once? Can't you put the control of your form on the report? (Haven't
tried it myself:)


A fruitless question. Why someone wants to do something is
irrelevent.

Not at all! Knowing why allows you to determine if there is a better way
of doing it. You must always understand why a client needs something.
It's an important part of the analysis.

<snip>

True enough. However, why someone wants to do something, especially in
NG questions, is most often irrelevant. There may be reasons why they
want to do it one way and not another. I have posed questions before
and the people answering me tend to wonder why I want to do something
more than simply answering a question. When the question is about
methods then you get into a long drawn out explanation of why you want
to do something. If it is a question by someone that is a relative
newbie to a feature of the system, OK. But if someone knows the product
and how it works, there may be underlying reasons why a way of
implementing something is done.

In my responses, because I have asked in the past for some advice
normally beyond the scope of what I know of a product, I tend to not
focus on why something is being requested one way but answering the
question. IOW, I may provide a recommendation for a better method to
accomplish a task I may think may assist, but as to why they want to do
something I tend to find a waste of time.

Nov 12 '05 #15
Salad wrote:
Bradley wrote:
Salad wrote:
Bradley wrote:

WindAndWaves wrote:
> Thanks Bradley
>
> I tried that, but it seems that only reports can be embedded as
> subreports and forms only as subforms. We are mixing here, that
> is a subreport in a form does not work
>
> I think I need to set the size of each window or something like
> that, but I am not sure how.
Hmm, ok.

The next question I have is "why?". Why do you need both open at
once? Can't you put the control of your form on the report?
(Haven't tried it myself:)

A fruitless question. Why someone wants to do something is
irrelevent.

Not at all! Knowing why allows you to determine if there is a better
way of doing it. You must always understand why a client needs
something. It's an important part of the analysis.

<snip>

True enough. However, why someone wants to do something, especially
in NG questions, is most often irrelevant. There may be reasons why
they want to do it one way and not another. I have posed questions
before and the people answering me tend to wonder why I want to do
something more than simply answering a question. When the question
is about methods then you get into a long drawn out explanation of
why you want to do something. If it is a question by someone that is
a relative newbie to a feature of the system, OK. But if someone
knows the product and how it works, there may be underlying reasons
why a way of implementing something is done.


The reply from the person whom I asked shows exactly why it was a
fruitful question to pose. :)
In my responses, because I have asked in the past for some advice
normally beyond the scope of what I know of a product, I tend to not
focus on why something is being requested one way but answering the
question. IOW, I may provide a recommendation for a better method to
accomplish a task I may think may assist, but as to why they want to
do something I tend to find a waste of time.


Everything a clients wants starts with a purpose (which is the "why").

Sure, I may think of a solution and then seek help in implementing it if
I have trouble. But if I also explain the "why" I may learn a whole new
way of looking at it at the problem at same time:) (ie. instead of
focusing on a single problem, look at the entire issue).

Holistic development LOL
-
regards,

Bradley
Nov 13 '05 #16
Bradley wrote:
In my responses, because I have asked in the past for some advice
normally beyond the scope of what I know of a product, I tend to not
focus on why something is being requested one way but answering the
question. IOW, I may provide a recommendation for a better method to
accomplish a task I may think may assist, but as to why they want to
do something I tend to find a waste of time.

Everything a clients wants starts with a purpose (which is the "why").

Sure, I may think of a solution and then seek help in implementing it if
I have trouble. But if I also explain the "why" I may learn a whole new
way of looking at it at the problem at same time:) (ie. instead of
focusing on a single problem, look at the entire issue).


I was on a MS Word NG, requiring something beyond the skill set or
knowledge scope of most people there. So I spent more time answering
why I needed to do something than attempting to get an answer to the
problem. I finally had someone that stepped up to the plate, looked at
my code, told me a couple of mods, and away I went. It was a real
esoteric requirement that 99.9999% of the people will ever need to do.

Recently I had a similar thing on the FoxPro newsgroup. I'm spending
time relaying why I'm doing something and inend didn't get an answer. I
decided that it was fruitless for them to attempt to understand the why.
It had no bearing on the problem.

I think if we spent time questioning why people want to add, edit, or
delete records instead of simply giving them a solution or an attempted
solution we'd never get anywhere. If something is obviously off base
I'll bring it up, but sometimes a detailed explanation of a problem
leaves out too many details, so we do our best with what limited
knowledge we have. I'll even help people continue on with concepts I
consider moronic. It's no skin off my back.

Anyways, my negative attitude comes from experiences on other groups. I
need holistic development therapy

Holistic development LOL


:-)

Nov 13 '05 #17

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

19
5749
by: George Ziniewicz | last post by:
.. I try to use CSS when possible, though I am still learning and don't maximize its use. In particular, I still use a table to provide for a centered image in a few slideshows (though table vertical align doesn't work in Mozilla): http://zintel.com/homepics.html I've used combinations of <center>, style align 'center', table cell align, valign and height='100%' to get what I want, but I wonder if CSS can do it by itself.
27
9257
by: FL | last post by:
Hi Everyone, I know howto center a block using margin-left: auto ; margin-right: auto ; but I'm trying to center vertically a box, any idea to solve this?
0
1088
by: Jim Hubbard | last post by:
By true tiling I do not mean the Vertical tiling or horizontal tiling like .... 1 2 3 4 or
8
3775
by: Ron Holmes | last post by:
I want to place a background image on a windows form. Is there a way to prevent the image from Tiling without using an image box resized to the size of the form? I am using Visual Studio 2003 .NET. This is an easy thing to do in VB6.
1
959
by: Jim Hubbard | last post by:
By true tiling I don't mean the vertical or horizontal tiling that is normally though of like... 123 or 1 2 3
3
9396
by: Sridhar | last post by:
Hi, I have created a user control which has the html code as follows <TABLE id="ToolBarTable" cellSpacing="0" cellPadding="0" width="100%" border="0"> <tr> <td align="right" bgColor="#000000"><IMG src="../Images/image1"> </td> </tr> <TR>
3
3243
by: Viken Karaguesian | last post by:
Hello all, I need somehelp with background tiling. I have a sneaking suspicion that what I want to do is not possible, but I'll ask anyway. :>) First some background: Here's the site in question: www.sayatnova.com (I'm sure many of you have seen this before as I've often asked for help). I've come a long way since I first created the site many moons ago and I'm trying to convert it to a (1) Table-less, (2) Frame-less and (3) Validated...
5
5044
by: Peter Lapic | last post by:
I have to create a image web service that when it receives an imageid parameter it will return a gif image from a file that has been stored on the server. The client will be an asp.net web page that calls the web service to render a vertical strip of images. After doing some research I am unable to find some vb.net code that can assist in what I want to achieve. The closest thing I found was
0
1247
by: kirby.urner | last post by:
Probably a fault line or cultural divide between acutely differing schools of thought, is in this area of tiling or mosaic making. Some schools consider this a stupid waste of time, others a core topic, whereas a 3rd group stays more neutral on the issue, and a tiny 4th group has no idea what I'm talking about. I'm in the second group (core topic) as tiling is to spacefilling as figurate are to polyhedral numbers. We may start in a...
0
9643
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10319
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10147
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10087
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8971
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7496
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
1
4046
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3645
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2877
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.