473,511 Members | 16,660 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to create Balloting of a Housing Project Plots....

102 New Member
Hello dear friends

I want an idea for How to create Balloting of a Housing Project Plots....

There are two files.... one for Plot Numbers and other for Customers details...

What to do for balloting ... looking for an idea or any demo...
thanks
irsmalik
Jan 27 '21 #1
4 1844
twinnyfo
3,653 Recognized Expert Moderator Specialist
irsmalik,

I'm not sure I understand what you mean by "balloting". I can only imagine that the Plot and Customer tables are related in some way, but until we understand the purpose, we will be unable to hepp!

Thanks!
Jan 27 '21 #2
irsmalik
102 New Member
Dear Mr Twinnyfo

Sorry I could not explain.... Basically this is the balloting of housing scheme.... there are 500 plot in a residential scheme. The location is one the most attractive place... so the customers are more than 4000.... now we have to make a system that computer pick plot from one table and pick one customer from other table and should be save in an other table / query for printing purposes.

This is almost sequential number type project... but I have no idea how to create this sequential type query or vba code....
hope I made clear myself....
thanks
irsmalik
Jan 28 '21 #3
isladogs
457 Recognized Expert Moderator Contributor
Crossposted at AWF combine-records-in-a-query - post #23 onwards
Jan 28 '21 #4
twinnyfo
3,653 Recognized Expert Moderator Specialist
irsmalik,

In general (and I'm not going to build this for you), in your Plots table, add a field for "Matched" and in your Customers Table add a field for "Matched". These would be Yes/No fields.

When you are "balloting" off your plots (in the U.S. we would use the word "raffle" or "lottery"), in your queries:

For the Lots:
Expand|Select|Wrap|Line Numbers
  1. SELECT LotNumber 
  2. FROM tblLots 
  3. WHERE NOT Matched;
For the Customers:
Expand|Select|Wrap|Line Numbers
  1. SELECT Customer 
  2. FROM tblCustomers 
  3. WHERE NOT Matched;
Using both recordsets, find out the number of records, generate a random number based upon the number of records for each recordset. Then, RandomLotNumber gets matched to RandomCustomerNumber, update both of those records to Matched = True.

Repeat until there are no more lots. Your actual project will be not much more involved than that. You will just need to keep track of which customer is matched with which lot.

Hope this hepps!
Jan 28 '21 #5

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

Similar topics

2
2179
by: Ramil Domingo | last post by:
Hi All, I would like to know how to create a setup and deployment project for all my source code solution with varying projects such as VB.NET, C#, ASP.NET, Web Services, etc. so that I could...
4
1682
by: Bruno van Dooren | last post by:
Hi, i have worked with visual studio for a long time, and would like to have a project template that represents a custom project that is used a lot. (Visual studio .NET 2003) the goal is that...
2
1211
by: David Bartosik - MS MVP | last post by:
since installing vs 2003 (alongside vs 2002) I have been unable to create a web project with it. New project, C#, web app, then keep the default web ap name or not, either way, I get the very...
4
1950
by: Paul Wilkinson | last post by:
Sorry if this is a multiple post, but Google crashed when I posted. I'll be briefer this time. I've seen plenty of posts on this topic, but I'm still searching for a solution. I can't create...
6
1228
by: David Thielen | last post by:
Hi; On my home computer (work computer is fine), when I create a new ASP .NET project, it takes minutes (no exageration) for it to create the project. It is paused forever on a dialog that says...
1
1046
by: TZ | last post by:
Hi All Iam trying to Create a New Project using VB.Net/ASP.Net. and Iam getting the following error The default web access mode for this project is set to file share,but the project folder at...
0
933
by: Arvan[ÑÛÀá³ÉÊ«] | last post by:
I installed Visual Studio.net 2005 CHS Team Suite.Right now I wanna create a webste project,when i click "File","New","Website",I can't find any asp.net project templates! But here C:\Program...
0
922
by: Arvan | last post by:
I installed Visual Studio.net 2005 CHS Team Suite.Right now I wanna create a webste project,when i click "File","New","Website",I can't find any asp.net project templates! But here C:\Program...
3
2398
by: DBLWizard | last post by:
Howdy All, Is it possible to have Visual Studio 2005 create a project form an existing hosted website? In other words I want to be able connect via ftp to my website structure and have it pull...
2
7472
by: =?Utf-8?B?SmltIFdhbHNo?= | last post by:
I'm new to .NET development, although I have worked with VS2005 and VC++ for a while. A frequent task for me is to create a new project for a new version of my program, without destroying the...
0
7138
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
7423
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...
0
7510
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...
1
5066
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...
0
3225
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3213
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1576
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 ...
1
781
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
447
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...

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.