473,657 Members | 2,832 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to refresh main project window

HI

How can I refresh the main project window in code in ms access 2000

For example, I create a new table, but when I minimize the form, the table
is not there until I do F5 (refresh).
I do the db.TableDefs.Re fresh, but I guess this is not applied to the
project window for tables

thanks


Nov 12 '05 #1
3 11781
Hi, Danny.

Use the RefreshDatabase Window( ) method of the Application object to show
new objects that you have created in VBA code. The TableDefs.Refre sh( )
method will refresh the TableDefs collection after an append or deletion of
a TableDef object, but doesn't force a refresh of the database window
itself.

HTH.
Gunny

Coming soon:
For your Microsoft Access, database development and maintenance needs, see:
http://www.softomagixly.com

"Danny" <dannywork5@ZER O_SPAMhotmail.c om> wrote in message
news:kD******** ************@ne ws4.srv.hcvlny. cv.net...
HI

How can I refresh the main project window in code in ms access 2000

For example, I create a new table, but when I minimize the form, the table
is not there until I do F5 (refresh).
I do the db.TableDefs.Re fresh, but I guess this is not applied to the
project window for tables

thanks

Nov 12 '05 #2
This is great. Thanks.

I have another question.
How can I make sure I remove all memory variables and such in code when I
close databases and forms.

Thanks

"'69 Camaro" <Ze*******@Zero Spam.com> wrote in message
news:c2******** @library1.airne ws.net...
Hi, Danny.

Use the RefreshDatabase Window( ) method of the Application object to show
new objects that you have created in VBA code. The TableDefs.Refre sh( )
method will refresh the TableDefs collection after an append or deletion of a TableDef object, but doesn't force a refresh of the database window
itself.

HTH.
Gunny

Coming soon:
For your Microsoft Access, database development and maintenance needs, see: http://www.softomagixly.com

"Danny" <dannywork5@ZER O_SPAMhotmail.c om> wrote in message
news:kD******** ************@ne ws4.srv.hcvlny. cv.net...
HI

How can I refresh the main project window in code in ms access 2000

For example, I create a new table, but when I minimize the form, the table is not there until I do F5 (refresh).
I do the db.TableDefs.Re fresh, but I guess this is not applied to the
project window for tables

thanks


Nov 12 '05 #3
> How can I make sure I remove all memory variables and such in code when I
close databases and forms.
Unfortunately, no bell goes off to alert you that you've forgotten to
release memory for objects that are no longer in scope. You'll have to do a
visual check in your code to make sure that variables for all objects have
been closed and set to "Nothing" before going out of scope.

For example, if you have a DAO.Recordset object based upon a Database
object, then you would need to close the DAO.Recordset object and set the
variable to "Nothing" first before doing the same for the Database object.
If you were to set the Database object variable to "Nothing" before you
tried to close the DAO.Recordset object, then you would get an "Object
invalid or no longer set" error message and would be unable to release the
memory for the DAO.Recordset object.

It's a good idea to release the memory for these objects as soon as your
code is finished with them, but you also need to make sure that your
error-handing routines handle the release of memory for the objects that
your procedures use. To make this simpler to maintain, many VB programmers
delay releasing the memory for the objects until the very end of the
procedure, where the error handler will also redirect the logic to flow
through after an error is handled. That way, programmers only have to code
memory releases for each object once for each procedure, and they know
exactly where to look for that visual check when code changes are made
later.

HTH.
Gunny

Coming soon:
For your Microsoft Access, database development and maintenance needs, see:
http://www.softomagixly.com

"Danny" <dannywork5@ZER O_SPAMhotmail.c om> wrote in message
news:g9******** ************@ne ws4.srv.hcvlny. cv.net... This is great. Thanks.

I have another question.
How can I make sure I remove all memory variables and such in code when I
close databases and forms.

Thanks

"'69 Camaro" <Ze*******@Zero Spam.com> wrote in message
news:c2******** @library1.airne ws.net...
Hi, Danny.

Use the RefreshDatabase Window( ) method of the Application object to show
new objects that you have created in VBA code. The TableDefs.Refre sh( )
method will refresh the TableDefs collection after an append or deletion

of
a TableDef object, but doesn't force a refresh of the database window
itself.

HTH.
Gunny

Coming soon:
For your Microsoft Access, database development and maintenance needs,

see:
http://www.softomagixly.com

"Danny" <dannywork5@ZER O_SPAMhotmail.c om> wrote in message
news:kD******** ************@ne ws4.srv.hcvlny. cv.net...
HI

How can I refresh the main project window in code in ms access 2000

For example, I create a new table, but when I minimize the form, the

table is not there until I do F5 (refresh).
I do the db.TableDefs.Re fresh, but I guess this is not applied to the
project window for tables

thanks

Nov 12 '05 #4

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

Similar topics

3
5169
by: J P Singh | last post by:
Hi Guys Wonder if someone can help me with this. I have a form where a user clicks a button which gives them a pop up windows to allow them to add the data. The user adds the data and click save. The pop window closes and refreshs the parent window to allow the entered data to be displayed. It was all working okay until couple of days back when it stopped.
3
4777
by: MEM | last post by:
Hello, I'd like to refresh the main or top most browser window from a child window. Specifically, child popup A is opened by a main browser window then child popup B is opened from within child popup A. How do i refer to the very first parent window? Visual...
2
2041
by: Senna | last post by:
Hi everyone I have a little question. I would like to develop an application in Access 2002, but I want to give the main Access Window a fixed border. So the users can't modify the size of the main access window. Does anybody know an API that deals with it? Or perhaps a function? How can I fix this problem?
1
1476
by: Gary | last post by:
Is it possible to refresh a browser window when a secondary browser window has been closed? For example, I have a main web form that functions purely as a datagrid, when a user clicks on a record in the datagrid a new window is opened (using the javascript window.open function), from this window the user can update or delete the record and then close the window once he/she is finished. Obviously when the record is deleted it will still...
1
3030
by: muttu2244 | last post by:
Hi everybody I have couple of questions, 1) How can i refresh my desktop window(wallpaper), using the python script, after pasting some data on the desktop. 2) How can i run an exe file from the python 3) How can i get the information of a machine like "computer name",
3
1263
by: mcena | last post by:
Hi guys. I am developing this project where I ve been forced to include (add) another vb project. Problem is I cant move execution/control from the main project to the new/other project. Please, someone help. Thanks.
3
1420
by: Peter | last post by:
Hi, I have a project with an MDI parent form (Main), which can contain any number of MDI children (Document). The Document form contains several user controls, designed as separate projects and referenced from the main project. I originally had one user control doing some dataset loading on its own, but now I need the same dataset initialized in the same way in two different places, so I decided to put it in the MDI parent form. Now,...
2
4961
by: ajain1 | last post by:
Folks, I want to refresh my child window after a particular interval of time, its working with the following code, but after getting refresh its always forward me on first URL not on the current state of the child site. Below is the code for your reference. <html> <script> var limit="0:10";
2
2627
by: srinivasyadavkota | last post by:
Hi Experts here, Pls help. I have opened the child window from the parent window.How to refresh the parent window when the child window is closed. Please help me. Thanks and Regards, Srinivas Kota.
0
8385
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
8821
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...
1
8502
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
8602
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7316
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...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4150
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1941
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1601
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.