473,503 Members | 3,740 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 6001
"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
5145
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
5196
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
23675
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
11753
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
23478
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
4330
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
1468
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
3560
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
6390
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
7192
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
7064
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
7315
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...
1
4991
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
4665
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...
0
3158
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
3147
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1492
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
721
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.