473,320 Members | 2,193 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,320 software developers and data experts.

How does one simply open one form from another ?

As an old programmer just now looking at VB.net I have a question:

How does one simply open one form from another ? I don't mean how does one
create a new instance of that form , but rather how to refer to THAT form ?
And having done this, how does one get data to and from that form ?

I have read the MS tutorial on this but it is senselessly complex; there
must be a simple, straightforward method, or I can only assume that MS has
destroyed a useful tool (VB) in the absurd following of the OO obsession
.....
Nov 21 '05 #1
17 8576
Barret,

I don't know what that usefull tool is, however you now create different
kind of forms and directly from your main form.

There are MDI child forms, dialogforms and normal form.
Basicly it is all the same however the way of showing is different

for a normal form it is
\\\
dim frm as new form2
frm.show
///

That is all.

I hope this helps?

Cor

"Barret Bonden"
As an old programmer just now looking at VB.net I have a question:

How does one simply open one form from another ? I don't mean how does one
create a new instance of that form , but rather how to refer to THAT form
?
And having done this, how does one get data to and from that form ?

I have read the MS tutorial on this but it is senselessly complex; there
must be a simple, straightforward method, or I can only assume that MS has
destroyed a useful tool (VB) in the absurd following of the OO obsession
....

Nov 21 '05 #2
"Barret Bonden" <ar****@networks-cc.com> schrieb:
As an old programmer just now looking at VB.net I have a
question:

How does one simply open one form from another ? I don't
mean how does one create a new instance of that form , but
rather how to refer to THAT form ? And having done this,
how does one get data to and from that form ?
You'll have to store references to your forms' default instances somewhere,
or implement the Singleton design pattern for your form classes for easily
accessing the default instances.
I have read the MS tutorial on this but it is senselessly
complex; there must be a simple, straightforward method,
or I can only assume that MS has destroyed a useful tool
(VB) in the absurd following of the OO obsession


ACK. Hopefully, default instances for forms will be back in VB 2005.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #3

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote

ACK. Hopefully, default instances for forms will be back in VB 2005.

Why would you want auto-instantiating forms back? They were the
source of many problems including 'My app won't shut down' type
of problems. The main point is that no other objects are auto-instantiating
so why make forms act that way?

IMHO it would be better to tell the developer how to add that functionality,
rather than have it included in the language. If they include it, we all have to
live with it, but if there is a simple workaround to bring it back, then those
who want it, can have it, while those who don't won't have to consider it a
possible source for errors.

Doesn't this code provide that functionality:

Module Module1
Public MyForm1 As New Form1
Public MyForm2 As New Form2
End Module
With the above, both MyForm1 and MyForm2 are auto-instantiating.

IMHO, That would be the better solution. What do you think?

LFS
Nov 21 '05 #4
"Larry Serflaten" <se*******@usinternet.com> schrieb:
ACK. Hopefully, default instances for forms will be back in VB 2005.


Why would you want auto-instantiating forms back?


Take a look how many beginners cannot be productive because they need to
understand the current form model. The current model is nice, but IMO a
simplification would be a step forward to a more RAD experience, especially
for beginners.

Notice that I do not talk about the current implementation (beta versions of
Whidbey). This implementation definitely sucks. But the problems can be
fixed.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #5
Herfried,

In my idea wrong
Take a look how many beginners cannot be productive because they need to
understand the current form model. The current model is nice, but IMO a
simplification would be a step forward to a more RAD experience,
especially for beginners.

That sentence should be in my opinion.

Take a look how many persons who where used to VB6 and than go
on................

That is a very bad reason.

There will be more and more beginners who never saw VB6 and than you keep
them on the bad methods.

I have the same idea in this as Larry (not his solution. It is well as it is
now in my idea).

Just my thought as you know

Cor
Nov 21 '05 #6
"Cor Ligthert" <no************@planet.nl> schrieb:
Take a look how many beginners cannot be productive
because they need to understand the current form model.
[...]
That sentence should be in my opinion.

Take a look how many persons who where used to VB6 and than go
on................

That is a very bad reason.


That's another story.

On the one hand, there are those VB6 developers who make their first steps
with VB.NET and miss default instances and the simplicity known from VB6.

On the other hand, there are complete newbies who are not fully aware of OOP
programming and thus have problems to deal with different forms, accessing
controls on other forms' instances, etc.

A solution to the issue needs to satisfy both of the groups described above.
There will be more and more beginners who never saw VB6
and than you keep them on the bad methods.


Default instances in general are /not/ a bad method. They are a valuable
shortcut.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #7

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote
Why would you want auto-instantiating forms back?
Take a look how many beginners cannot be productive because they need to
understand the current form model.


Cor added more on the point I was making: The people who have trouble
are those who are expecting VB6 fucntionality. Programming 'beginners'
over the next decade (or more) will not have that predisposition, and to them,
forms should act just like every other class in the framework.
Notice that I do not talk about the current implementation (beta versions of
Whidbey). This implementation definitely sucks. But the problems can be
fixed.


I don't have the 2005 beta installed, but I hear talk that the forms will be
available through the My.Forms shortcut. In that instance I could see where
auto-instantiation might be the better way to go, but to add that functionality
globally is (IMHO) a large mistake.

LFS
Nov 21 '05 #8
"Larry Serflaten" <se*******@usinternet.com> schrieb:
> Why would you want auto-instantiating forms back?
Take a look how many beginners cannot be productive
because they need to understand the current form model.


Cor added more on the point I was making: The people
who have trouble are those who are expecting VB6 fucntionality.


I agree, they expect VB6 functionality.

But many newbies (without exprience with VB6) are confused by the
complicated form model too. It's simply unpractical. It's too complicated
to manage references to forms when only one instance of a form is needed.

In VB6, a newbie simply typed 'Call Form1.Show' and the form was shown.
He/she typed 'Form1.BackColor = vbRed' and the form's backcolor turned into
red. It was much easier to access the single instance of a form. No need
for implementing a Singleton or creating a reference store somewhere.
Programming 'beginners' over the next decade (or more) will
not have that predisposition, and to them, forms should act
just like every other class in the framework.
OOP is hard to understand, especially for beginners. Beginners start with
procedures and do not care about objects. But beginners want to be
productive in order to experience playing around with the programming
language as an interesting and fascinating task. I remember the time when I
developed my first Visual Basic application. Creating it was sooo easy. I
didn't have to know much about "objects", "references", "instances", ...

If VB.NET should be a language designed for beginners too, then an easier
way to create an applications UI infrastructure is required. A large number
of beginners will lead to a large number of professional developers using a
certain programming language. Programming languages that introduce
complexity by adding heavy requirements like full knowledge of OOP when
writing their first program, won't have a future.
I don't have the 2005 beta installed, but I hear talk that the
forms will be available through the My.Forms shortcut.


That's right. Notice that the default instances will only be created "by
need", so if you don't use them, don't worry about them.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #9

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote
Default instances in general are /not/ a bad method. They are a valuable
shortcut.

I'd suggest they are bad.

1. They are the source of problems when the app is shutting down
2. They are a source of problems when some use default styles while
others use explicit, in the same program.
3. They would be an unexplained exception to the patterns used by all
other classes in the language.

Adding a form to a project does not 'call it into existance by default'
any more than adding other classes. Having to explicitly declare the
forms is no different than explicitly declaring other classes. It is also
not far from having to explicitly declare variables, so the concept is
not going to be totally unfamiliar to the novice. With Option Explicit
on, variables have to be declared before use, and are constrained by
scoping issues. There is very little different when looking at objects.

The kicker is that, if you insert that functionality globally, then everyone
has to deal with it, where as if you simply provide a work around you
get two benefits:

1. The functionality is made available
2. The users are reminded that a 'workaround' is not normal use.
(IOW it may be better for them to deal with it in a more uniform way)

I realize this is a polarizing issue, some like it one way, and others like it
the other, but again, if it gets added, we all have to deal with it. Why
add a stumbling block to normal development???

LFS


Nov 21 '05 #10

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote
But many newbies (without exprience with VB6) are confused by the
complicated form model too. It's simply unpractical. It's too complicated
to manage references to forms when only one instance of a form is needed.
Compare that to using the random number feature, or a bitmap. You simply
can't call things into existance without first declaring them. It is that way for
variables (Explicit ON) and all other classes. And, with the declaration comes
scoping issues. My point is that they will be learning about that pattern anyway,
so that fact that it applies to every class will be a help. Making forms an
exception, is just that, yet another exception that has to be remembered.

In VB6, a newbie simply typed 'Call Form1.Show' and the form was shown.
He/she typed 'Form1.BackColor = vbRed' and the form's backcolor turned into
red. It was much easier to access the single instance of a form. No need
for implementing a Singleton or creating a reference store somewhere.
But using the store will remind them that they are taking a shorcut, which is
the 'reasoning' behind why it acts differently than every other class.
OOP is hard to understand, especially for beginners. Beginners start with
procedures and do not care about objects.


I have to disagree here because of the reasons stated. Any beginner who
wants to use functionality in the framework (StringBuilder for instance) has
to declare a variable of that type and use the New keyword. Its no different
than anything else they'll need, so why make forms act differently?

I don't have the 2005 beta installed, but I hear talk that the
forms will be available through the My.Forms shortcut.


That's right. Notice that the default instances will only be created "by
need", so if you don't use them, don't worry about them.


If auto-instantiation is limited to syntax like: My.Forms.Form1.Show
I'll have no problem with it, but if they make this work: Form1.Show
Then it will be a source of problems (again!)

If they do make My... available then it may happen coders will do this:

My.Forms.Form1.Show
Form1.Textbox1.Text = "Enter name here"

How would you think that should respond?

And then after the form closes, and execution arrives at a line like the
above, how should it respond? If that later case throws an error
(because the form is no longer instantiated) then those logical errors
that keep programs alive will be easier to find. But such mixing up of
access seems to be ADDING confusion, not removing it.

It is really a simple concept, if they want a variable available to the entire
project, what do they need to do? And, if they want a form available to
the entire project, what do they need to do? You advocate forms act
differently than other declarations, I'd say they should act like everything
else....

LFS

Nov 21 '05 #11
Herfried,

Your messages and also from Larry would lead for me for more wizards, not
for implementing things in the language itself, I assume that Larry has
almost the same ideas like me with this.

This will give the beginner the change to build a complete program and later
check the code and make more advantage things for that.

However not one as the dataform wizard, that is almost directly clossed for
changes because it uses an inbuild strongly typed dataset what is not
possible (or difficult) to change.

Cor
Nov 21 '05 #12
"Cor Ligthert" <no************@planet.nl> schrieb:
Your messages and also from Larry would lead for me for
more wizards, not for implementing things in the language
itself, I assume that Larry has almost the same ideas like
me with this.
I am not a great fan of wizards. I hate most wizards, and I consider most
wizards useless for beginners. Take the VB6 application wizard for example.
This wizard could be used to create an explorer style application without
typing a single line of code. Really? No. The wizard created a skeleton,
the necessary controls (something even a beginner is able to click together
in the forms designer) but it didn't add much valuable code. In order to
use the skeleton created by the wizard, the beginner had to remove the
controls he/she didn't need and he would never have added to the form if he
designed it himself/herself.

In my opinion, the main point is making writing code simpler. Creating
inter-form relations is a code-only job. Currently. Maybe there will be a
graphical designer that allows to specify inter-form relations in a
graphical and declarative way, which will generate the code automatically.
That's all in far future.

Another important point is transparency. I'll provide another sample to
illustrate what I am thinking. In VB6 the form designer generated code (in
fact it was a declarative description of the form layout, something similar
will be back with XAML) was completely invisible to the programmer. Sure,
the programmer could view it using the editor to view the form files. There
were very few issues and problems with this model. Beginners didn't have to
worry about form generation code, mainly because they didn't see it. In
VB.NET, every user, even a beginner, will be able to see 'Sub
InitializeComponent', things he/she should not even edit manually. I know
that some people consider that to be a step forward, but for me it's a step
into the wrong direction. Unnecessary things are not as transparent as in
VB6, code is more low-level than in VB6.

In the case of default instances, it is very similar. Even if a wizard is
able to make forms implement the Singleton design pattern, the user will be
able to browse this code and thus be faced with low-level stuff he/she does
not understand. The implementation code of a Singleton is an implementation
detail that /should not/ be seen by the programmer, it should be completely
transparent.

To make a conclusion: I like the idea of extending the programming language
with very high-level constructs which allow to write forms code and code for
inter-form communication quickly, without worrying about the implementation.
I am aware of the fact that such a feature needs to be designed carefully.

Don't forget that the most important thing is encapsulation, in other words,
an increase in transparency. That's what helps us to understand complex
scenarios. For a beginner, and for a professional too, inter-form
communication code is an implementation detail that isn't so important to
worry about.
This will give the beginner the change to build a complete
program and later check the code and make more advantage
things for that.


Why let the beginner auto-generate tons of crappy code? Instead, a
simplification of the code by introducing powerful code constructs would
allow even beginners to write perfect code in less time.

"Using forms' default instances should be considered "best practice"" --
there is no negative impact caused by the use of default instances if they
are implemented in a clean way.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #13
Herfried,

A long message, first of all, I do not like wizards at all and certainly not
how it is now implemented, however it can fullfils in my opinion the need in
this and your previous message when it is well done. (You cutted of in your
quoting from my previous message where I told about the in my eyes not good
implementation)

Second you are in my opinion argue for two different VB programs
VBNet and VB7 what than is the successor from VB6 or let that what is now a
good programmers tool VBNet devaluate to a real successor of VB6 and than
let all professionals go to C#.

We do not agree in what I write next, however I hope that you let me free
that in my eyes VB6 is a very crapy thing. Because that your statements are
not wrong, do I think that what you want better can be fullfiled with
Ms-Access in future.

However just my idea.

Cor

"Herfried K. Wagner [MVP]" <hi***************@gmx.at>
Your messages and also from Larry would lead for me for
more wizards, not for implementing things in the language
itself, I assume that Larry has almost the same ideas like
me with this.


I am not a great fan of wizards. I hate most wizards, and I consider most
wizards useless for beginners. Take the VB6 application wizard for
example. This wizard could be used to create an explorer style application
without typing a single line of code. Really? No. The wizard created a
skeleton, the necessary controls (something even a beginner is able to
click together in the forms designer) but it didn't add much valuable
code. In order to use the skeleton created by the wizard, the beginner
had to remove the controls he/she didn't need and he would never have
added to the form if he designed it himself/herself.

In my opinion, the main point is making writing code simpler. Creating
inter-form relations is a code-only job. Currently. Maybe there will be
a graphical designer that allows to specify inter-form relations in a
graphical and declarative way, which will generate the code automatically.
That's all in far future.

Another important point is transparency. I'll provide another sample to
illustrate what I am thinking. In VB6 the form designer generated code
(in fact it was a declarative description of the form layout, something
similar will be back with XAML) was completely invisible to the
programmer. Sure, the programmer could view it using the editor to view
the form files. There were very few issues and problems with this model.
Beginners didn't have to worry about form generation code, mainly because
they didn't see it. In VB.NET, every user, even a beginner, will be able
to see 'Sub InitializeComponent', things he/she should not even edit
manually. I know that some people consider that to be a step forward, but
for me it's a step into the wrong direction. Unnecessary things are not
as transparent as in VB6, code is more low-level than in VB6.

In the case of default instances, it is very similar. Even if a wizard is
able to make forms implement the Singleton design pattern, the user will
be able to browse this code and thus be faced with low-level stuff he/she
does not understand. The implementation code of a Singleton is an
implementation detail that /should not/ be seen by the programmer, it
should be completely transparent.

To make a conclusion: I like the idea of extending the programming
language with very high-level constructs which allow to write forms code
and code for inter-form communication quickly, without worrying about the
implementation. I am aware of the fact that such a feature needs to be
designed carefully.

Don't forget that the most important thing is encapsulation, in other
words, an increase in transparency. That's what helps us to understand
complex scenarios. For a beginner, and for a professional too, inter-form
communication code is an implementation detail that isn't so important to
worry about.
This will give the beginner the change to build a complete
program and later check the code and make more advantage
things for that.


Why let the beginner auto-generate tons of crappy code? Instead, a
simplification of the code by introducing powerful code constructs would
allow even beginners to write perfect code in less time.

"Using forms' default instances should be considered "best practice"" --
there is no negative impact caused by the use of default instances if they
are implemented in a clean way.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #14
Cor,

"Cor Ligthert" <no************@planet.nl> schrieb:
Second you are in my opinion argue for two different VB
programs VBNet and VB7
It's not me who claims VB.NET to be the successor of VB6. It's Microsoft.
what than is the successor from VB6 or let that what is now a good
programmers tool VBNet devaluate to a real successor
of VB6 and than let all professionals go to C#.
VB6 has always been used in a professional environment too. Many
"beginners" and non-professionals who started with VB Classic, are now
professional VB6/VB.NET programmers.
We do not agree in what I write next, however I hope that
you let me free that in my eyes VB6 is a very crapy thing.
That's your opinion, and I respect this opinion. I think that VB6 is better
than people say. It's very high-level, it provides powerful language
elements that make life much easier if they are used the right way.
not wrong, do I think that what you want better can be fullfiled with
Ms-Access in future.


LOL!

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #15
"Larry Serflaten" <se*******@usinternet.com> schrieb:
But many newbies (without exprience with VB6) are
confused by the complicated form model too. It's simply
unpractical. It's too complicated to manage references to
forms when only one instance of a form is needed.
Compare that to using the random number feature, or a
bitmap. You simply can't call things into existance without
first declaring them.


You can access shared members without instantiating an object through your
code. You can call a shared factory method that will create the instance
for you. The fact that you cannot see the declaration/instantiation is IMHO
not that important.

I doubt that anybody will have problems to understand default instances.
Making forms an exception, is just that, yet another exception
that has to be remembered.
Everybody is free to use default instances or not. There are so many
exceptions, and tools which are adapted to the most common context can be
used in a more productive way.
red. It was much easier to access the single instance of a
form. No need for implementing a Singleton or creating a reference
store somewhere.


But using the store will remind them that they are taking a
shorcut, which is the 'reasoning' behind why it acts differently
than every other class.


Currently everybody builds his/her own references store. There is no
unified solution provided by the framework/programming language. I don't
know how the best "fix" to this will look like and if default instances are
the right way, but I honestly don't know a much better solution.
OOP is hard to understand, especially for beginners.
Beginners start with procedures and do not care about objects.


I have to disagree here because of the reasons stated. Any
beginner who wants to use functionality in the framework
(StringBuilder for instance)


I doubt that beginners will use 'StringBuilder' ;-))).
has to declare a variable of that type and use the New
keyword.
Most stringbuilders are referenced by local variables and are used in a
local context. That's easy to understand, and the lifetime of a local
object is easy to understand.
Its no different than anything else they'll need, so why make
forms act differently?
In order to make forms work together, references between the instances of
the forms need to be exchanged. That's harder than using a stringbuilder
and requires more knowledge about OOP.
That's right. Notice that the default instances will only be
created "by need", so if you don't use them, don't worry
about them.


If auto-instantiation is limited to syntax like: My.Forms.Form1.Show
I'll have no problem with it, but if they make this work: Form1.Show
Then it will be a source of problems (again!)


Full ACK!!! I like the first, but I don't like the latter, because it will
lead to problems.
the entire project, what do they need to do? You advocate
forms act differently than other declarations, I'd say they should
act like everything else....


I don't advocate forms to work differently from other objects, but I prefer
a unified way to store forms references and to access the forms' instances.
'My.Forms' is IMO a good idea. Referencing the default instance over the
form's class name is IMO a /bad/ idea.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #16

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote
Beginners didn't have to
worry about form generation code, mainly because they didn't see it. In
VB.NET, every user, even a beginner, will be able to see 'Sub
InitializeComponent', things he/she should not even edit manually. I know
that some people consider that to be a step forward, but for me it's a step
into the wrong direction.


I agree that the low-level glue should be kept hidden, and I mentioned that
during the beta process (suggesting they hide it in a Region):

http://discuss.develop.com/archives/...ET&P=R146&I=-3

But now I hear there are going to be 'partial' classes such that all that
machine generated code can be left out of the code module the developer
uses and stuffed into a 2nd 'partial' module. It seems that would be the
place for the things you mention....

LFS

Nov 21 '05 #17
Larry,

"Larry Serflaten" <se*******@usinternet.com> schrieb:
[Making auto-generated code transparent]

I agree that the low-level glue should be kept hidden, and I
mentioned that during the beta process (suggesting they hide
it in a Region):

http://discuss.develop.com/archives/...ET&P=R146&I=-3
:-)
But now I hear there are going to be 'partial' classes such that
all that machine generated code can be left out of the code module
the developer uses and stuffed into a 2nd 'partial' module. It seems
that would be the place for the things you mention....


That is indeed a viable way. I hope that it won't cause too much confusion
though.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #18

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

Similar topics

11
by: Saqib Ali | last post by:
Please excuse me, this is a fairly involved question that will likely require you to save the file below to a file and open it in a browser. I use Mozilla 1.5, so the problem I describe below...
3
by: trellow | last post by:
Hello, I am writing an application that needs to read a file that is already open by another process for writing. When I do the following: FileStream fs = new FileStream(fileName,...
5
by: twick10 | last post by:
Hi, I am trying to execute a control method on an open form (not with focus) from a modal dialog box. I want to increment the node selected from the dialog when a certain key is pressed. Any...
4
by: jaYPee | last post by:
I know how to open a form from another form. Say open form2 from form1 using a command button. But my problem is everytime I clicked the button it open again another instance of that form. ...
2
by: allyn44 | last post by:
Hello, I have built a serch form for users to edit records. I only want them to pull up the record they need, and I want to check for nulls. There should not be dupes becasue the underlying...
6
by: Moumen VB.NET 2003/2005 Developer | last post by:
How can I detect if a file sitting on a network drive is still open by another application? This application resides on another machine on the network? I am using VB.NET 2003 Your help is...
3
by: kev | last post by:
Hi folks, I have a form for registration (frmRegistration) whereby i have two buttons. One is Save which saves record using the OnClick property. I used wizard to create the save button. The...
14
by: keri | last post by:
Hi, Simple version of the question..... How do I use the where clause of the open form command to show an account with a matching ID to be displayed when the form is opened? Eg. I select a...
1
by: andrew smith | last post by:
Problem is with the designer... // opens in designer // (has reason not to (undefined)) public class BaseForm<T>: Form { } // doesn't open in design (it should) public class...
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
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...
0
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...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
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...

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.