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

Bubbling a status message to the UI

Hi guys,

After the Exception question, I have another one, strictly related.
I would also like what is your preferred device
to bubble a message (not by exception) to the user Interface.

Assume for instance the following simple schema. What is the best way
to bubble the "Status" string message to the UI ? Please suggest
appropriate
code changes.

I guess that different programmers might have different ideas on how to
that
in the most flexible way ...

-P

'--------------------------------- SAMPLE CODE -----------------------

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Try
With New SomeProcessor
.SomeTask()

' I want for instance the "Status" issued by SomeOtherTask
' to be appended to a TextBox on this User Interface
' What's the best way to bubble the message here

End With

Catch ex As Exception
Me.RichTextBox1.AppendText(ex.Message)
End Try

End Sub

End Class
'The following is in separate files

Class SomeProcessor

Sub SomeTask()
With New SomeOtherProcessor
Try
.SomeOtherTask()
Catch ex As Exception
Throw
End Try

End With
End Sub

End Class
Class SomeOtherProcessor

Sub SomeOtherTask()

Try
Dim Status As String = "This operation was successful"
Catch ex As Exception
Throw
End Try

End Sub

End Class

Sep 24 '06 #1
9 1549
Pass the textbox as a reference to the called proc, or an object that
can throw an event when changed so you can updated the status control.

Tom

pa***********@libero.it wrote:
>Hi guys,

After the Exception question, I have another one, strictly related.
I would also like what is your preferred device
to bubble a message (not by exception) to the user Interface.

Assume for instance the following simple schema. What is the best way
to bubble the "Status" string message to the UI ? Please suggest
appropriate
code changes.

I guess that different programmers might have different ideas on how to
that
in the most flexible way ...

-P

'--------------------------------- SAMPLE CODE -----------------------

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Try
With New SomeProcessor
.SomeTask()

' I want for instance the "Status" issued by SomeOtherTask
' to be appended to a TextBox on this User Interface
' What's the best way to bubble the message here

End With

Catch ex As Exception
Me.RichTextBox1.AppendText(ex.Message)
End Try

End Sub

End Class
'The following is in separate files

Class SomeProcessor

Sub SomeTask()
With New SomeOtherProcessor
Try
.SomeOtherTask()
Catch ex As Exception
Throw
End Try

End With
End Sub

End Class
Class SomeOtherProcessor

Sub SomeOtherTask()

Try
Dim Status As String = "This operation was successful"
Catch ex As Exception
Throw
End Try

End Sub

End Class
Sep 24 '06 #2
Hi tom, thanks

must say I thought about this solution (perhaps the ByRef is optional,
right?). But then I
have some problem when I want to use the code both with Winform or
WebForm.

What I mean that what I would like to bubble is probably
just the message because the interface could be different.

So I wanted your opinions on what is a good method to do
this in such a way we can deal with different UIs.

For instance the Exception mechanism allows to do that.

I was wondering if something similar could be done for a, say, "status"
messages (ie. not accompanied by exceptions).

Thanks you very much,

-P

tomb ha scritto:
Pass the textbox as a reference to the called proc, or an object that
can throw an event when changed so you can updated the status control.

Tom

pa***********@libero.it wrote:
Hi guys,

After the Exception question, I have another one, strictly related.
I would also like what is your preferred device
to bubble a message (not by exception) to the user Interface.

Assume for instance the following simple schema. What is the best way
to bubble the "Status" string message to the UI ? Please suggest
appropriate
code changes.

I guess that different programmers might have different ideas on how to
that
in the most flexible way ...

-P

'--------------------------------- SAMPLE CODE -----------------------

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Try
With New SomeProcessor
.SomeTask()

' I want for instance the "Status" issued by SomeOtherTask
' to be appended to a TextBox on this User Interface
' What's the best way to bubble the message here

End With

Catch ex As Exception
Me.RichTextBox1.AppendText(ex.Message)
End Try

End Sub

End Class
'The following is in separate files

Class SomeProcessor

Sub SomeTask()
With New SomeOtherProcessor
Try
.SomeOtherTask()
Catch ex As Exception
Throw
End Try

End With
End Sub

End Class
Class SomeOtherProcessor

Sub SomeOtherTask()

Try
Dim Status As String = "This operation was successful"
Catch ex As Exception
Throw
End Try

End Sub

End Class

Sep 24 '06 #3
That would be the choice of using an object that raises an event when it
is changed. Then whatever parent calls the proc, it passes that
object. If the object is changed, the parent can respond to it any way
it wants.

As such:
private withevents myObject as whatever

thisvalue = someproc( myObject )
Tom
pa***********@libero.it wrote:
>Hi tom, thanks

must say I thought about this solution (perhaps the ByRef is optional,
right?). But then I
have some problem when I want to use the code both with Winform or
WebForm.

What I mean that what I would like to bubble is probably
just the message because the interface could be different.

So I wanted your opinions on what is a good method to do
this in such a way we can deal with different UIs.

For instance the Exception mechanism allows to do that.

I was wondering if something similar could be done for a, say, "status"
messages (ie. not accompanied by exceptions).

Thanks you very much,

-P

tomb ha scritto:
>>Pass the textbox as a reference to the called proc, or an object that
can throw an event when changed so you can updated the status control.

Tom

pa***********@libero.it wrote:
>>>Hi guys,

After the Exception question, I have another one, strictly related.
I would also like what is your preferred device
to bubble a message (not by exception) to the user Interface.

Assume for instance the following simple schema. What is the best way
to bubble the "Status" string message to the UI ? Please suggest
appropriate
code changes.

I guess that different programmers might have different ideas on how to
that
in the most flexible way ...

-P

'--------------------------------- SAMPLE CODE -----------------------

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Try
With New SomeProcessor
.SomeTask()

' I want for instance the "Status" issued by SomeOtherTask
' to be appended to a TextBox on this User Interface
' What's the best way to bubble the message here

End With

Catch ex As Exception
Me.RichTextBox1.AppendText(ex.Message)
End Try

End Sub

End Class
'The following is in separate files

Class SomeProcessor

Sub SomeTask()
With New SomeOtherProcessor
Try
.SomeOtherTask()
Catch ex As Exception
Throw
End Try

End With
End Sub

End Class
Class SomeOtherProcessor

Sub SomeOtherTask()

Try
Dim Status As String = "This operation was successful"
Catch ex As Exception
Throw
End Try

End Sub

End Class




Sep 24 '06 #4
Hello pamela,

I don't like tomb's solution. You should never pass in an object that listens
for changes. I would suggest simply raising an event from within your processor.
-Boo
Hi guys,

After the Exception question, I have another one, strictly related.
I would also like what is your preferred device
to bubble a message (not by exception) to the user Interface.
Assume for instance the following simple schema. What is the best way
to bubble the "Status" string message to the UI ? Please suggest
appropriate
code changes.
I guess that different programmers might have different ideas on how
to
that
in the most flexible way ...
-P

'--------------------------------- SAMPLE CODE -----------------------

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button1.Click

Try
With New SomeProcessor
.SomeTask()
' I want for instance the "Status" issued by SomeOtherTask
' to be appended to a TextBox on this User Interface
' What's the best way to bubble the message here
End With

Catch ex As Exception
Me.RichTextBox1.AppendText(ex.Message)
End Try
End Sub

End Class

'The following is in separate files

Class SomeProcessor

Sub SomeTask()
With New SomeOtherProcessor
Try
.SomeOtherTask()
Catch ex As Exception
Throw
End Try
End With
End Sub
End Class

Class SomeOtherProcessor

Sub SomeOtherTask()

Try
Dim Status As String = "This operation was successful"
Catch ex As Exception
Throw
End Try
End Sub

End Class

Sep 24 '06 #5
Hi Ghost,

can you make more precise what you mean. Are you talking about a shared
event?

Actually the idea of an additional argument does not make me
enthusiastic,
but also the idea of some shared event is quite disgusting (to me).

Could you clarify your suggestion, by applying that to my simple
example?

-P

GhostInAK ha scritto:
Hello pamela,

I don't like tomb's solution. You should never pass in an object that listens
for changes. I would suggest simply raising an event from within your processor.
-Boo
Hi guys,

After the Exception question, I have another one, strictly related.
I would also like what is your preferred device
to bubble a message (not by exception) to the user Interface.
Assume for instance the following simple schema. What is the best way
to bubble the "Status" string message to the UI ? Please suggest
appropriate
code changes.
I guess that different programmers might have different ideas on how
to
that
in the most flexible way ...
-P

'--------------------------------- SAMPLE CODE -----------------------

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button1.Click

Try
With New SomeProcessor
.SomeTask()
' I want for instance the "Status" issued by SomeOtherTask
' to be appended to a TextBox on this User Interface
' What's the best way to bubble the message here
End With

Catch ex As Exception
Me.RichTextBox1.AppendText(ex.Message)
End Try
End Sub

End Class

'The following is in separate files

Class SomeProcessor

Sub SomeTask()
With New SomeOtherProcessor
Try
.SomeOtherTask()
Catch ex As Exception
Throw
End Try
End With
End Sub
End Class

Class SomeOtherProcessor

Sub SomeOtherTask()

Try
Dim Status As String = "This operation was successful"
Catch ex As Exception
Throw
End Try
End Sub

End Class
Sep 25 '06 #6
Hello pamela,

public class Form1

private sub Button_click( ... )

Dim tSomeTask as SomeProcessor = New SomeProcessor
AddHandler tSomeTask.StatusChange, addressof StatusChangeHandler

tSomeTask.DanceMonkeyDance

end sub

private sub StatusChangeHandler(byval tStatus as string)

textbox1.text = tstatus

end sub

end class

public class SomeProcessor

public event StatusChange(byval tStatus as string)

private withevents tSomeOtherProcessor as SomeProcessor2 = New SomeProcessor2

private sub StatusChangeHandler(byval tStatus as string) handles tSomeOtherProcessor.StatusChange
raiseevent StatusChange(tStatus)
end sub

public sub DanceMonkeyDance()
tSomeOtherProcessor.DoSomething
end Sub

end class

public class SomeOtherProcessor2

public event StatusChange(byval tStatus as string)

public sub DoSomething
' Change the status.. look at the perdy percolating..
raiseevent StatusChange("Was that good for you?")
end sub

end class
Hi Ghost,

can you make more precise what you mean. Are you talking about a
shared event?

Actually the idea of an additional argument does not make me
enthusiastic,
but also the idea of some shared event is quite disgusting (to me).
Could you clarify your suggestion, by applying that to my simple
example?

-P

GhostInAK ha scritto:
>Hello pamela,

I don't like tomb's solution. You should never pass in an object
that listens for changes. I would suggest simply raising an event
from within your processor.

-Boo
>>Hi guys,

After the Exception question, I have another one, strictly related.
I would also like what is your preferred device
to bubble a message (not by exception) to the user Interface.
Assume for instance the following simple schema. What is the best
way
to bubble the "Status" string message to the UI ? Please suggest
appropriate
code changes.
I guess that different programmers might have different ideas on how
to
that
in the most flexible way ...
-P
'--------------------------------- SAMPLE CODE
-----------------------

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Try
With New SomeProcessor
.SomeTask()
' I want for instance the "Status" issued by SomeOtherTask
' to be appended to a TextBox on this User Interface
' What's the best way to bubble the message here
End With
Catch ex As Exception
Me.RichTextBox1.AppendText(ex.Message)
End Try
End Sub
End Class

'The following is in separate files

Class SomeProcessor

Sub SomeTask()
With New SomeOtherProcessor
Try
.SomeOtherTask()
Catch ex As Exception
Throw
End Try
End With
End Sub
End Class
Class SomeOtherProcessor

Sub SomeOtherTask()

Try
Dim Status As String = "This operation was successful"
Catch ex As Exception
Throw
End Try
End Sub
End Class

Sep 25 '06 #7
Thank you Ghost! Now I see what you meant.

Thanks you very much for taking the time to make this example.

Well, what to say? I am very grateful. I just hoped there was some way
easier to maintain.

It's strange that for errors there is a simple device (exceptions),
while to bubble a simple
message we have to go through all this !

-P
ps
boo :)

GhostInAK ha scritto:
Hello pamela,

public class Form1

private sub Button_click( ... )

Dim tSomeTask as SomeProcessor = New SomeProcessor
AddHandler tSomeTask.StatusChange, addressof StatusChangeHandler

tSomeTask.DanceMonkeyDance

end sub

private sub StatusChangeHandler(byval tStatus as string)

textbox1.text = tstatus

end sub

end class

public class SomeProcessor

public event StatusChange(byval tStatus as string)

private withevents tSomeOtherProcessor as SomeProcessor2 = New SomeProcessor2

private sub StatusChangeHandler(byval tStatus as string) handles tSomeOtherProcessor.StatusChange
raiseevent StatusChange(tStatus)
end sub

public sub DanceMonkeyDance()
tSomeOtherProcessor.DoSomething
end Sub

end class

public class SomeOtherProcessor2

public event StatusChange(byval tStatus as string)

public sub DoSomething
' Change the status.. look at the perdy percolating..
raiseevent StatusChange("Was that good for you?")
end sub

end class
Hi Ghost,

can you make more precise what you mean. Are you talking about a
shared event?

Actually the idea of an additional argument does not make me
enthusiastic,
but also the idea of some shared event is quite disgusting (to me).
Could you clarify your suggestion, by applying that to my simple
example?

-P

GhostInAK ha scritto:
Hello pamela,

I don't like tomb's solution. You should never pass in an object
that listens for changes. I would suggest simply raising an event
from within your processor.

-Boo

Hi guys,

After the Exception question, I have another one, strictly related.
I would also like what is your preferred device
to bubble a message (not by exception) to the user Interface.
Assume for instance the following simple schema. What is the best
way
to bubble the "Status" string message to the UI ? Please suggest
appropriate
code changes.
I guess that different programmers might have different ideas on how
to
that
in the most flexible way ...
-P
'--------------------------------- SAMPLE CODE
-----------------------

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

Try
With New SomeProcessor
.SomeTask()
' I want for instance the "Status" issued by SomeOtherTask
' to be appended to a TextBox on this User Interface
' What's the best way to bubble the message here
End With
Catch ex As Exception
Me.RichTextBox1.AppendText(ex.Message)
End Try
End Sub
End Class

'The following is in separate files

Class SomeProcessor

Sub SomeTask()
With New SomeOtherProcessor
Try
.SomeOtherTask()
Catch ex As Exception
Throw
End Try
End With
End Sub
End Class
Class SomeOtherProcessor

Sub SomeOtherTask()

Try
Dim Status As String = "This operation was successful"
Catch ex As Exception
Throw
End Try
End Sub
End Class
Sep 25 '06 #8
Hello pa***********@libero.it,

Not so strange. The scenarios which require such a mechanism are fairly few.

In addition to the event solution, you may wish to explore the use of MSMQ
(MS Message Queue). I don't know your architecture, but if the status generation
is burried very deep then MSMQ may be a good solution.

You could also look into custom window messages (in the WM_APP range). This
would not transfer between web/winforms though.

Back on the event solution. You could implement a class from which all your
objects inherited. This base class would define the events. You could then
devise a mechanism, using reflection, which automajikly wired up the events
to be bubbled. *shrug*

Good luck.

-Boo
Thank you Ghost! Now I see what you meant.

Thanks you very much for taking the time to make this example.

Well, what to say? I am very grateful. I just hoped there was some way
easier to maintain.

It's strange that for errors there is a simple device (exceptions),
while to bubble a simple
message we have to go through all this !
-P

ps
boo :)
GhostInAK ha scritto:
>Hello pamela,

public class Form1

private sub Button_click( ... )

Dim tSomeTask as SomeProcessor = New SomeProcessor AddHandler
tSomeTask.StatusChange, addressof StatusChangeHandler

tSomeTask.DanceMonkeyDance

end sub

private sub StatusChangeHandler(byval tStatus as string)

textbox1.text = tstatus

end sub

end class

public class SomeProcessor

public event StatusChange(byval tStatus as string)

private withevents tSomeOtherProcessor as SomeProcessor2 = New
SomeProcessor2

private sub StatusChangeHandler(byval tStatus as string) handles
tSomeOtherProcessor.StatusChange
raiseevent StatusChange(tStatus)
end sub
public sub DanceMonkeyDance()
tSomeOtherProcessor.DoSomething
end Sub
end class

public class SomeOtherProcessor2

public event StatusChange(byval tStatus as string)

public sub DoSomething
' Change the status.. look at the perdy percolating..
raiseevent StatusChange("Was that good for you?")
end sub
end class
>>Hi Ghost,

can you make more precise what you mean. Are you talking about a
shared event?

Actually the idea of an additional argument does not make me
enthusiastic,
but also the idea of some shared event is quite disgusting (to me).
Could you clarify your suggestion, by applying that to my simple
example?
-P

GhostInAK ha scritto:

Hello pamela,

I don't like tomb's solution. You should never pass in an object
that listens for changes. I would suggest simply raising an event
from within your processor.

-Boo

Hi guys,
>
After the Exception question, I have another one, strictly
related.
I would also like what is your preferred device
to bubble a message (not by exception) to the user Interface.
Assume for instance the following simple schema. What is the best
way
to bubble the "Status" string message to the UI ? Please suggest
appropriate
code changes.
I guess that different programmers might have different ideas on
how
to
that
in the most flexible way ...
-P
'--------------------------------- SAMPLE CODE
-----------------------
Public Class Form1
>
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button1.Click
>
Try
With New SomeProcessor
.SomeTask()
' I want for instance the "Status" issued by SomeOtherTask
' to be appended to a TextBox on this User Interface
' What's the best way to bubble the message here
End With
Catch ex As Exception
Me.RichTextBox1.AppendText(ex.Message)
End Try
End Sub
End Class
'The following is in separate files
>
Class SomeProcessor
>
Sub SomeTask()
With New SomeOtherProcessor
Try
.SomeOtherTask()
Catch ex As Exception
Throw
End Try
End With
End Sub
End Class
Class SomeOtherProcessor
Sub SomeOtherTask()
>
Try
Dim Status As String = "This operation was successful"
Catch ex As Exception
Throw
End Try
End Sub
End Class

Sep 26 '06 #9
Looks like I have quite some material to think about.

Thank you Ghost. Very helpful. :)

-P

GhostInAK ha scritto:

Not so strange. The scenarios which require such a mechanism are fairly few.

In addition to the event solution, you may wish to explore the use of MSMQ
(MS Message Queue). I don't know your architecture, but if the status generation
is burried very deep then MSMQ may be a good solution.

You could also look into custom window messages (in the WM_APP range). This
would not transfer between web/winforms though.

Back on the event solution. You could implement a class from which all your
objects inherited. This base class would define the events. You could then
devise a mechanism, using reflection, which automajikly wired up the events
to be bubbled. *shrug*

Good luck.

-Boo
Thank you Ghost! Now I see what you meant.

Thanks you very much for taking the time to make this example.

Well, what to say? I am very grateful. I just hoped there was some way
easier to maintain.

It's strange that for errors there is a simple device (exceptions),
while to bubble a simple
message we have to go through all this !
-P

ps
boo :)
GhostInAK ha scritto:
Hello pamela,

public class Form1

private sub Button_click( ... )

Dim tSomeTask as SomeProcessor = New SomeProcessor AddHandler
tSomeTask.StatusChange, addressof StatusChangeHandler

tSomeTask.DanceMonkeyDance

end sub

private sub StatusChangeHandler(byval tStatus as string)

textbox1.text = tstatus

end sub

end class

public class SomeProcessor

public event StatusChange(byval tStatus as string)

private withevents tSomeOtherProcessor as SomeProcessor2 = New
SomeProcessor2

private sub StatusChangeHandler(byval tStatus as string) handles
tSomeOtherProcessor.StatusChange
raiseevent StatusChange(tStatus)
end sub
public sub DanceMonkeyDance()
tSomeOtherProcessor.DoSomething
end Sub
end class

public class SomeOtherProcessor2

public event StatusChange(byval tStatus as string)

public sub DoSomething
' Change the status.. look at the perdy percolating..
raiseevent StatusChange("Was that good for you?")
end sub
end class

Hi Ghost,

can you make more precise what you mean. Are you talking about a
shared event?

Actually the idea of an additional argument does not make me
enthusiastic,
but also the idea of some shared event is quite disgusting (to me).
Could you clarify your suggestion, by applying that to my simple
example?
-P

GhostInAK ha scritto:

Hello pamela,

I don't like tomb's solution. You should never pass in an object
that listens for changes. I would suggest simply raising an event
from within your processor.

-Boo

Hi guys,

After the Exception question, I have another one, strictly
related.
I would also like what is your preferred device
to bubble a message (not by exception) to the user Interface.
Assume for instance the following simple schema. What is the best
way
to bubble the "Status" string message to the UI ? Please suggest
appropriate
code changes.
I guess that different programmers might have different ideas on
how
to
that
in the most flexible way ...
-P
'--------------------------------- SAMPLE CODE
-----------------------
Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button1.Click

Try
With New SomeProcessor
.SomeTask()
' I want for instance the "Status" issued by SomeOtherTask
' to be appended to a TextBox on this User Interface
' What's the best way to bubble the message here
End With
Catch ex As Exception
Me.RichTextBox1.AppendText(ex.Message)
End Try
End Sub
End Class
'The following is in separate files

Class SomeProcessor

Sub SomeTask()
With New SomeOtherProcessor
Try
.SomeOtherTask()
Catch ex As Exception
Throw
End Try
End With
End Sub
End Class
Class SomeOtherProcessor
Sub SomeOtherTask()

Try
Dim Status As String = "This operation was successful"
Catch ex As Exception
Throw
End Try
End Sub
End Class
Sep 26 '06 #10

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

Similar topics

1
by: Shawn Melton | last post by:
Does a caught exception still bubble up and will a destructor execute if an exception halts execution?
4
by: Wee Bubba | last post by:
the following event handler checks to see if any parent control has attached to the event 'SearchItemSelect'. i use it for event bubbling whenever one of my search items has been selected and at...
3
by: Nathan Sokalski | last post by:
I have three LinkButtons in the HeaderTemplate of my DataList (I use them to let the user determine what to sort the list by). I am assuming that the event will be bubbled to the ItemCommand event...
7
by: comzy | last post by:
I have created an event bubbling for my pager control which is used for implementing paging in data grid. Althoug it worked very fine in .NET 1.1 it is throwing the following error after i migrated...
0
by: Peter Rilling | last post by:
Hi. Okay, I have read only other news postings that winforms to not support the concept of "event bubbling" that web apps do. Nevertheless, I need to implement something such that if I have a...
11
by: pamelafluente | last post by:
Hi guys, When bubbling some exception up to some interface handlers - what is most recommandable: Try 'some code Catch ex As Exception Throw
4
by: pamelafluente | last post by:
Hi guys, When bubbling some exception up to some interface handlers - what is most recommandable: Try 'some code Catch ex As Exception
2
by: alhalayqa | last post by:
hi, in MSIE, you can attach onclick event to both anchor and document objects. here is some code : document.onclick = function() {alert('document clicked ...'); } <a href= " " ...
1
by: m.bagattini | last post by:
Hello folks, I'm in trouble with an application using methodologies in subject. The idea is to have a single-page application. The host aspx page coordinates all visualizations, loading and...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.