472,363 Members | 1,900 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,363 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 5857
"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: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
1
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
0
by: Johno34 | last post by:
I have this click event on my form. It speaks to a Datasheet Subform Private Sub Command260_Click() Dim r As DAO.Recordset Set r = Form_frmABCD.Form.RecordsetClone r.MoveFirst Do If...
1
by: ezappsrUS | last post by:
Hi, I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...

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.