473,287 Members | 1,492 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,287 software developers and data experts.

Window Form refresh

All,

is there window form refresh property? I try to set up window form refresh
per minute. Thanks
Jul 7 '06 #1
12 5979
"martin1" <ma*****@discussions.microsoft.comschrieb:
is there window form refresh property? I try to set up window form refresh
per minute.
I suggest to describe in more detail what exactly you want to archieve.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Jul 7 '06 #2
i had window application, everytime run the app, the form_load event starts
run , what I want to do is to refresh the form-load event every minute. the
whole purpose is to refresh the app every minute.

I try to use timer to call form_load, but it fails. so any advice?

Thanks

"Herfried K. Wagner [MVP]" wrote:
"martin1" <ma*****@discussions.microsoft.comschrieb:
is there window form refresh property? I try to set up window form refresh
per minute.

I suggest to describe in more detail what exactly you want to archieve.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Jul 7 '06 #3
Hi Martin I am afraid it's not clear at all what you want to do.
Anyway... generally talking... you can take the code necessary for the
refresh and put within a sub (instead of under the load event)

Sub RefreshMyThings
'any refresh here
end sub

you can get this sub called by a timer. Just add the timer and schedule
the refresh

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Timer1.Tick
me.RefreshMyThings
End Sub

.... what this would be good for is a mistery ! :)

-Tom

martin1 ha scritto:
i had window application, everytime run the app, the form_load event starts
run , what I want to do is to refresh the form-load event every minute. the
whole purpose is to refresh the app every minute.

I try to use timer to call form_load, but it fails. so any advice?

Thanks

"Herfried K. Wagner [MVP]" wrote:
"martin1" <ma*****@discussions.microsoft.comschrieb:
is there window form refresh property? I try to set up window form refresh
per minute.
I suggest to describe in more detail what exactly you want to archieve.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
Jul 7 '06 #4
Thank you, Tom,

I knew what you said, take refresh thing into sub, then timer control the
sub. what i want to do is refresh the window application every minute since
starting run.

one solution may or may not correct, that is timer to refresh form_load
event to meet this requirement since form_load is initilize the application,
but it doesn't work. any more advice?

Thanks

"to**************@uniroma1.it" wrote:
Hi Martin I am afraid it's not clear at all what you want to do.
Anyway... generally talking... you can take the code necessary for the
refresh and put within a sub (instead of under the load event)

Sub RefreshMyThings
'any refresh here
end sub

you can get this sub called by a timer. Just add the timer and schedule
the refresh

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Timer1.Tick
me.RefreshMyThings
End Sub

.... what this would be good for is a mistery ! :)

-Tom

martin1 ha scritto:
i had window application, everytime run the app, the form_load event starts
run , what I want to do is to refresh the form-load event every minute. the
whole purpose is to refresh the app every minute.

I try to use timer to call form_load, but it fails. so any advice?

Thanks

"Herfried K. Wagner [MVP]" wrote:
"martin1" <ma*****@discussions.microsoft.comschrieb:
is there window form refresh property? I try to set up window form refresh
per minute.
>
I suggest to describe in more detail what exactly you want to archieve.
>
--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
>
>

Jul 7 '06 #5
what are you actually trying to do? Can you post some simple code to
explain the main idea?

-tom
martin1 ha scritto:
Thank you, Tom,

I knew what you said, take refresh thing into sub, then timer control the
sub. what i want to do is refresh the window application every minute since
starting run.

one solution may or may not correct, that is timer to refresh form_load
event to meet this requirement since form_load is initilize the application,
but it doesn't work. any more advice?

Thanks

"to**************@uniroma1.it" wrote:
Hi Martin I am afraid it's not clear at all what you want to do.
Anyway... generally talking... you can take the code necessary for the
refresh and put within a sub (instead of under the load event)

Sub RefreshMyThings
'any refresh here
end sub

you can get this sub called by a timer. Just add the timer and schedule
the refresh

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Timer1.Tick
me.RefreshMyThings
End Sub

.... what this would be good for is a mistery ! :)

-Tom

martin1 ha scritto:
i had window application, everytime run the app, the form_load event starts
run , what I want to do is to refresh the form-load event every minute. the
whole purpose is to refresh the app every minute.
>
I try to use timer to call form_load, but it fails. so any advice?
>
Thanks
>
"Herfried K. Wagner [MVP]" wrote:
>
"martin1" <ma*****@discussions.microsoft.comschrieb:
is there window form refresh property? I try to set up window form refresh
per minute.

I suggest to describe in more detail what exactly you want to archieve.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
Jul 7 '06 #6
Hi, Tom,

what i want to do is like web-based application refresh by setting up
<meta-equiv="refresh" content ="60">. Thanks

"to**************@uniroma1.it" wrote:
what are you actually trying to do? Can you post some simple code to
explain the main idea?

-tom
martin1 ha scritto:
Thank you, Tom,

I knew what you said, take refresh thing into sub, then timer control the
sub. what i want to do is refresh the window application every minute since
starting run.

one solution may or may not correct, that is timer to refresh form_load
event to meet this requirement since form_load is initilize the application,
but it doesn't work. any more advice?

Thanks

"to**************@uniroma1.it" wrote:
Hi Martin I am afraid it's not clear at all what you want to do.
Anyway... generally talking... you can take the code necessary for the
refresh and put within a sub (instead of under the load event)
>
Sub RefreshMyThings
'any refresh here
end sub
>
you can get this sub called by a timer. Just add the timer and schedule
the refresh
>
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Timer1.Tick
me.RefreshMyThings
End Sub
>
.... what this would be good for is a mistery ! :)
>
-Tom
>
martin1 ha scritto:
>
i had window application, everytime run the app, the form_load event starts
run , what I want to do is to refresh the form-load event every minute. the
whole purpose is to refresh the app every minute.

I try to use timer to call form_load, but it fails. so any advice?

Thanks

"Herfried K. Wagner [MVP]" wrote:

"martin1" <ma*****@discussions.microsoft.comschrieb:
is there window form refresh property? I try to set up window form refresh
per minute.
>
I suggest to describe in more detail what exactly you want to archieve.
>
--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
>
>
>
>

Jul 10 '06 #7
Hi Martin, I am afraid that if you do not make a little effort to
explain your problem in an intelligible manner, you won't get much help
with your problem...

-tom

martin1 ha scritto:
Hi, Tom,

what i want to do is like web-based application refresh by setting up
<meta-equiv="refresh" content ="60">. Thanks

"to**************@uniroma1.it" wrote:
what are you actually trying to do? Can you post some simple code to
explain the main idea?

-tom
martin1 ha scritto:
Thank you, Tom,
>
I knew what you said, take refresh thing into sub, then timer control the
sub. what i want to do is refresh the window application every minute since
starting run.
>
one solution may or may not correct, that is timer to refresh form_load
event to meet this requirement since form_load is initilize the application,
but it doesn't work. any more advice?
>
Thanks
>
"to**************@uniroma1.it" wrote:
>
Hi Martin I am afraid it's not clear at all what you want to do.
Anyway... generally talking... you can take the code necessary for the
refresh and put within a sub (instead of under the load event)

Sub RefreshMyThings
'any refresh here
end sub

you can get this sub called by a timer. Just add the timer and schedule
the refresh

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Timer1.Tick
me.RefreshMyThings
End Sub

.... what this would be good for is a mistery ! :)

-Tom

martin1 ha scritto:

i had window application, everytime run the app, the form_load event starts
run , what I want to do is to refresh the form-load event every minute. the
whole purpose is to refresh the app every minute.
>
I try to use timer to call form_load, but it fails. so any advice?
>
Thanks
>
"Herfried K. Wagner [MVP]" wrote:
>
"martin1" <ma*****@discussions.microsoft.comschrieb:
is there window form refresh property? I try to set up window form refresh
per minute.

I suggest to describe in more detail what exactly you want to archieve.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>


Jul 10 '06 #8
Hi Martin, I am afraid that if you do not make a little effort to
explain your problem in an intelligible manner, you won't get much help
with your problem...

-tom

martin1 ha scritto:
Hi, Tom,

what i want to do is like web-based application refresh by setting up
<meta-equiv="refresh" content ="60">. Thanks

"to**************@uniroma1.it" wrote:
what are you actually trying to do? Can you post some simple code to
explain the main idea?

-tom
martin1 ha scritto:
Thank you, Tom,
>
I knew what you said, take refresh thing into sub, then timer control the
sub. what i want to do is refresh the window application every minute since
starting run.
>
one solution may or may not correct, that is timer to refresh form_load
event to meet this requirement since form_load is initilize the application,
but it doesn't work. any more advice?
>
Thanks
>
"to**************@uniroma1.it" wrote:
>
Hi Martin I am afraid it's not clear at all what you want to do.
Anyway... generally talking... you can take the code necessary for the
refresh and put within a sub (instead of under the load event)

Sub RefreshMyThings
'any refresh here
end sub

you can get this sub called by a timer. Just add the timer and schedule
the refresh

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Timer1.Tick
me.RefreshMyThings
End Sub

.... what this would be good for is a mistery ! :)

-Tom

martin1 ha scritto:

i had window application, everytime run the app, the form_load event starts
run , what I want to do is to refresh the form-load event every minute. the
whole purpose is to refresh the app every minute.
>
I try to use timer to call form_load, but it fails. so any advice?
>
Thanks
>
"Herfried K. Wagner [MVP]" wrote:
>
"martin1" <ma*****@discussions.microsoft.comschrieb:
is there window form refresh property? I try to set up window form refresh
per minute.

I suggest to describe in more detail what exactly you want to archieve.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>


Jul 10 '06 #9
Hi, Tom,

I try to set timer to run form_load every minute, but it fail. The code
snippet is below:

-------------Code start------------
Private Sub Form_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Handles MyBase.Load

'call timer for refresh app every minute
TimerAppRunPerMinute()

End Sub

'*** create timer for refresh app per minute ***
Private Sub TimerAppRunPerMinute()
AddHandler comTimerApp.Elapsed, AddressOf ComOnTimedEvent
'Set the Interval to 60 seconds.
comTimerApp.Interval = 60000
comTimerApp.Enabled = True
End Sub

Private Sub ComOnTimedEvent(ByVal source As Object, ByVal e As
ElapsedEventArgs)
Form_Load(source, e)
End Sub
----------code end--------------

"to**************@uniroma1.it" wrote:
Hi Martin, I am afraid that if you do not make a little effort to
explain your problem in an intelligible manner, you won't get much help
with your problem...

-tom

martin1 ha scritto:
Hi, Tom,

what i want to do is like web-based application refresh by setting up
<meta-equiv="refresh" content ="60">. Thanks

"to**************@uniroma1.it" wrote:
what are you actually trying to do? Can you post some simple code to
explain the main idea?
>
-tom
martin1 ha scritto:
>
Thank you, Tom,

I knew what you said, take refresh thing into sub, then timer control the
sub. what i want to do is refresh the window application every minute since
starting run.

one solution may or may not correct, that is timer to refresh form_load
event to meet this requirement since form_load is initilize the application,
but it doesn't work. any more advice?

Thanks

"to**************@uniroma1.it" wrote:

Hi Martin I am afraid it's not clear at all what you want to do.
Anyway... generally talking... you can take the code necessary for the
refresh and put within a sub (instead of under the load event)
>
Sub RefreshMyThings
'any refresh here
end sub
>
you can get this sub called by a timer. Just add the timer and schedule
the refresh
>
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Timer1.Tick
me.RefreshMyThings
End Sub
>
.... what this would be good for is a mistery ! :)
>
-Tom
>
martin1 ha scritto:
>
i had window application, everytime run the app, the form_load event starts
run , what I want to do is to refresh the form-load event every minute. the
whole purpose is to refresh the app every minute.

I try to use timer to call form_load, but it fails. so any advice?

Thanks

"Herfried K. Wagner [MVP]" wrote:

"martin1" <ma*****@discussions.microsoft.comschrieb:
is there window form refresh property? I try to set up window form refresh
per minute.
>
I suggest to describe in more detail what exactly you want to archieve.
>
--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
>
>
>
>
>
>

Jul 10 '06 #10
Hi Martin,

Hmmm... your code seems meaningless to me. Why don't you say what is
what you are trying to achieve. Do you wish your form to stay on *top*
of other forms? Do you wish to *activate* it every so often. Do you
wish to *invalidate* and repaint it or what? What does the form has on
it? What is the purpose of attempting a form reload?

-tom

martin1 ha scritto:
Hi, Tom,

I try to set timer to run form_load every minute, but it fail. The code
snippet is below:

-------------Code start------------
Private Sub Form_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Handles MyBase.Load

'call timer for refresh app every minute
TimerAppRunPerMinute()

End Sub

'*** create timer for refresh app per minute ***
Private Sub TimerAppRunPerMinute()
AddHandler comTimerApp.Elapsed, AddressOf ComOnTimedEvent
'Set the Interval to 60 seconds.
comTimerApp.Interval = 60000
comTimerApp.Enabled = True
End Sub

Private Sub ComOnTimedEvent(ByVal source As Object, ByVal e As
ElapsedEventArgs)
Form_Load(source, e)
End Sub
----------code end--------------

"to**************@uniroma1.it" wrote:
Hi Martin, I am afraid that if you do not make a little effort to
explain your problem in an intelligible manner, you won't get much help
with your problem...

-tom

martin1 ha scritto:
Hi, Tom,
>
what i want to do is like web-based application refresh by setting up
<meta-equiv="refresh" content ="60">. Thanks
>
>
>
"to**************@uniroma1.it" wrote:
>
what are you actually trying to do? Can you post some simple code to
explain the main idea?

-tom
martin1 ha scritto:

Thank you, Tom,
>
I knew what you said, take refresh thing into sub, then timer control the
sub. what i want to do is refresh the window application every minute since
starting run.
>
one solution may or may not correct, that is timer to refresh form_load
event to meet this requirement since form_load is initilize the application,
but it doesn't work. any more advice?
>
Thanks
>
"to**************@uniroma1.it" wrote:
>
Hi Martin I am afraid it's not clear at all what you want to do.
Anyway... generally talking... you can take the code necessary for the
refresh and put within a sub (instead of under the load event)

Sub RefreshMyThings
'any refresh here
end sub

you can get this sub called by a timer. Just add the timer and schedule
the refresh

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Timer1.Tick
me.RefreshMyThings
End Sub

.... what this would be good for is a mistery ! :)

-Tom

martin1 ha scritto:

i had window application, everytime run the app, the form_load event starts
run , what I want to do is to refresh the form-load event every minute. the
whole purpose is to refresh the app every minute.
>
I try to use timer to call form_load, but it fails. so any advice?
>
Thanks
>
"Herfried K. Wagner [MVP]" wrote:
>
"martin1" <ma*****@discussions.microsoft.comschrieb:
is there window form refresh property? I try to set up window form refresh
per minute.

I suggest to describe in more detail what exactly you want to archieve.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>




Jul 10 '06 #11
hi, Tom,

What I want to do is refresh the app every minute since the app strat
running. the form load event is retrieve data from db and bind dataset to
datagridview which display data from database. Since the data in the db is
update per minute, so the datagridview should refresh every minute to
display/reflect new data. I try to reload the form to achieve this, but it
doesn't work, any alternative solution?

Thank you a lot in advance

"to**************@uniroma1.it" wrote:
Hi Martin,

Hmmm... your code seems meaningless to me. Why don't you say what is
what you are trying to achieve. Do you wish your form to stay on *top*
of other forms? Do you wish to *activate* it every so often. Do you
wish to *invalidate* and repaint it or what? What does the form has on
it? What is the purpose of attempting a form reload?

-tom

martin1 ha scritto:
Hi, Tom,

I try to set timer to run form_load every minute, but it fail. The code
snippet is below:

-------------Code start------------
Private Sub Form_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Handles MyBase.Load

'call timer for refresh app every minute
TimerAppRunPerMinute()

End Sub

'*** create timer for refresh app per minute ***
Private Sub TimerAppRunPerMinute()
AddHandler comTimerApp.Elapsed, AddressOf ComOnTimedEvent
'Set the Interval to 60 seconds.
comTimerApp.Interval = 60000
comTimerApp.Enabled = True
End Sub

Private Sub ComOnTimedEvent(ByVal source As Object, ByVal e As
ElapsedEventArgs)
Form_Load(source, e)
End Sub
----------code end--------------

"to**************@uniroma1.it" wrote:
Hi Martin, I am afraid that if you do not make a little effort to
explain your problem in an intelligible manner, you won't get much help
with your problem...
>
-tom
>
martin1 ha scritto:
>
Hi, Tom,

what i want to do is like web-based application refresh by setting up
<meta-equiv="refresh" content ="60">. Thanks



"to**************@uniroma1.it" wrote:

what are you actually trying to do? Can you post some simple code to
explain the main idea?
>
-tom
martin1 ha scritto:
>
Thank you, Tom,

I knew what you said, take refresh thing into sub, then timer control the
sub. what i want to do is refresh the window application every minute since
starting run.

one solution may or may not correct, that is timer to refresh form_load
event to meet this requirement since form_load is initilize the application,
but it doesn't work. any more advice?

Thanks

"to**************@uniroma1.it" wrote:

Hi Martin I am afraid it's not clear at all what you want to do.
Anyway... generally talking... you can take the code necessary for the
refresh and put within a sub (instead of under the load event)
>
Sub RefreshMyThings
'any refresh here
end sub
>
you can get this sub called by a timer. Just add the timer and schedule
the refresh
>
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Timer1.Tick
me.RefreshMyThings
End Sub
>
.... what this would be good for is a mistery ! :)
>
-Tom
>
martin1 ha scritto:
>
i had window application, everytime run the app, the form_load event starts
run , what I want to do is to refresh the form-load event every minute. the
whole purpose is to refresh the app every minute.

I try to use timer to call form_load, but it fails. so any advice?

Thanks

"Herfried K. Wagner [MVP]" wrote:

"martin1" <ma*****@discussions.microsoft.comschrieb:
is there window form refresh property? I try to set up window form refresh
per minute.
>
I suggest to describe in more detail what exactly you want to archieve.
>
--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
>
>
>
>
>
>
>
>

Jul 10 '06 #12

Hi Martin, You have actually provided the answer yourself.
Don't put any working code under the load event.

If you need to refresh the grid, for some public display purpose,
you just re-run the extraction and binding code.

-t
martin1 ha scritto:
hi, Tom,

What I want to do is refresh the app every minute since the app strat
running. the form load event is retrieve data from db and bind dataset to
datagridview which display data from database. Since the data in the db is
update per minute, so the datagridview should refresh every minute to
display/reflect new data. I try to reload the form to achieve this, but it
doesn't work, any alternative solution?

Thank you a lot in advance

"to**************@uniroma1.it" wrote:
Hi Martin,

Hmmm... your code seems meaningless to me. Why don't you say what is
what you are trying to achieve. Do you wish your form to stay on *top*
of other forms? Do you wish to *activate* it every so often. Do you
wish to *invalidate* and repaint it or what? What does the form has on
it? What is the purpose of attempting a form reload?

-tom

martin1 ha scritto:
Hi, Tom,
>
I try to set timer to run form_load every minute, but it fail. The code
snippet is below:
>
-------------Code start------------
Private Sub Form_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Handles MyBase.Load
>
'call timer for refresh app every minute
TimerAppRunPerMinute()
>
End Sub
>
'*** create timer for refresh app per minute ***
Private Sub TimerAppRunPerMinute()
AddHandler comTimerApp.Elapsed, AddressOf ComOnTimedEvent
'Set the Interval to 60 seconds.
comTimerApp.Interval = 60000
comTimerApp.Enabled = True
End Sub
>
Private Sub ComOnTimedEvent(ByVal source As Object, ByVal e As
ElapsedEventArgs)
Form_Load(source, e)
End Sub
----------code end--------------
>
"to**************@uniroma1.it" wrote:
>
Hi Martin, I am afraid that if you do not make a little effort to
explain your problem in an intelligible manner, you won't get much help
with your problem...

-tom

martin1 ha scritto:

Hi, Tom,
>
what i want to do is like web-based application refresh by setting up
<meta-equiv="refresh" content ="60">. Thanks
>
>
>
"to**************@uniroma1.it" wrote:
>
what are you actually trying to do? Can you post some simple code to
explain the main idea?

-tom
martin1 ha scritto:

Thank you, Tom,
>
I knew what you said, take refresh thing into sub, then timer control the
sub. what i want to do is refresh the window application every minute since
starting run.
>
one solution may or may not correct, that is timer to refresh form_load
event to meet this requirement since form_load is initilize the application,
but it doesn't work. any more advice?
>
Thanks
>
"to**************@uniroma1.it" wrote:
>
Hi Martin I am afraid it's not clear at all what you want to do.
Anyway... generally talking... you can take the code necessary for the
refresh and put within a sub (instead of under the load event)

Sub RefreshMyThings
'any refresh here
end sub

you can get this sub called by a timer. Just add the timer and schedule
the refresh

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Timer1.Tick
me.RefreshMyThings
End Sub

.... what this would be good for is a mistery ! :)

-Tom

martin1 ha scritto:

i had window application, everytime run the app, the form_load event starts
run , what I want to do is to refresh the form-load event every minute. the
whole purpose is to refresh the app every minute.
>
I try to use timer to call form_load, but it fails. so any advice?
>
Thanks
>
"Herfried K. Wagner [MVP]" wrote:
>
"martin1" <ma*****@discussions.microsoft.comschrieb:
is there window form refresh property? I try to set up window form refresh
per minute.

I suggest to describe in more detail what exactly you want to archieve.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>






Jul 10 '06 #13

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

Similar topics

3
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...
1
by: humbads | last post by:
I am trying to get a popup window to work for editing notes in my application. Here's how I implemented it: The original frame is called ORIGINALFRAME and contains a link like this: <a...
10
by: sirshurf | last post by:
hello all: I have a pop up window is for the user to submit some information. That window is refreched a few times with the user inputs (its a form submit in itself... couple of times). I would...
3
by: Danny | last post by:
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...
2
by: Raj | last post by:
Hi All, I have a problem with trying to refresh the parent window from child window in order to update data in the parent window. The sequence of events are 1) I click a button in the parent...
3
by: Steve Wark | last post by:
I have created a ASP.NET application and created two forms within the application (Webform1.aspx & Webform2.aspx). On the first form I have placed a textbox (TextBox1) and a button, which when...
1
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...
3
by: Opa | last post by:
Hi , I have a form with javasript which launches a popup via the showModalDialog() method. I get the dialog to open, now I am trying to first get a reference to the calling form from the popup...
4
by: hashya | last post by:
Hi, I am trying to submit form in child window from parent window itself. However, not getting through it. e.g. Parent Window: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: Aftab Ahmad | last post by:
Hello Experts! I have written a code in MS Access for a cmd called "WhatsApp Message" to open WhatsApp using that very code but the problem is that it gives a popup message everytime I clicked on...
0
by: Aftab Ahmad | last post by:
So, I have written a code for a cmd called "Send WhatsApp Message" to open and send WhatsApp messaage. The code is given below. Dim IE As Object Set IE =...
0
by: marcoviolo | last post by:
Dear all, I would like to implement on my worksheet an vlookup dynamic , that consider a change of pivot excel via win32com, from an external excel (without open it) and save the new file into a...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...

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.