473,738 Members | 3,636 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Expose Form Properties and it Controls Properties.

Hi,

How do i expose all my forms and it controls to other form in the project?
I want to be able to add a form and some control on it, this then be
available to all other forms.

form1 click event:
'this allow me to change the textbox on form2 from form1
Form2.text=""
'this allow me to add item to form2 from form1
Form2.listview. item.add("")
end form1 click event:

Dimsion
Visual Studio 2005/VB

====Sorry to double post this, but maybe where i have posted this quesiton
was not the right place the first time.===
Jun 15 '06 #1
9 1657
Hello:

Declare a instance of form 2 in form1 and use that instance to refer to
form2's controls.
Like:
Dim instfrm2 as New form2
instfrm2.text = ""
instfrm2.listvi ew.item.add("")

You might even declare a public variable for form2 and access it within
form1.

Hope this helps

Jun 15 '06 #2
I believe all forms are public by default and all controls are Friends
by default unless you change the modifiers property of that control to
something else. Friends modifier means, other classes/forms within the
same project/assembly are permitted to change the properties and adding
items to the control. Let's go back to your example:

you have form1 that has a click capture a click event
Form2 has a textbox and a listview controls
Now, when the click event is fired:
Form2.textbox.t ext = "Whatever" and Form2.listview. item.add("Whate ver")
are excuted and they shouldn't cause any problems.

I am assuming that both forms are running on the same thread. If each
as its own thread, you need to use delegates or p/invoke. Somebody
correct me if I am wrong.

Ahmed
Dimsion wrote:
Hi,

How do i expose all my forms and it controls to other form in the project?
I want to be able to add a form and some control on it, this then be
available to all other forms.

form1 click event:
'this allow me to change the textbox on form2 from form1
Form2.text=""
'this allow me to add item to form2 from form1
Form2.listview. item.add("")
end form1 click event:

Dimsion
Visual Studio 2005/VB

====Sorry to double post this, but maybe where i have posted this quesiton
was not the right place the first time.===


Jun 15 '06 #3
Ahmed,

I have two project that i work on, the old one can communicate between forms
and controls. If i added a new form and control on it to that project it can
continue to allow me to access the form and controls. However if i start a
new proect, it will not work the same way.

I have try to declare as IdelBrain mention in the other thread, but it only
allow me access to the form and not it controls.

Thanks,
Dimsion
"Ahmed" <ah*******@gmai l.com> wrote in message
news:11******** **************@ g10g2000cwb.goo glegroups.com.. .
I believe all forms are public by default and all controls are Friends
by default unless you change the modifiers property of that control to
something else. Friends modifier means, other classes/forms within the
same project/assembly are permitted to change the properties and adding
items to the control. Let's go back to your example:

you have form1 that has a click capture a click event
Form2 has a textbox and a listview controls
Now, when the click event is fired:
Form2.textbox.t ext = "Whatever" and Form2.listview. item.add("Whate ver")
are excuted and they shouldn't cause any problems.

I am assuming that both forms are running on the same thread. If each
as its own thread, you need to use delegates or p/invoke. Somebody
correct me if I am wrong.

Ahmed
Dimsion wrote:
Hi,

How do i expose all my forms and it controls to other form in the
project?
I want to be able to add a form and some control on it, this then be
available to all other forms.

form1 click event:
'this allow me to change the textbox on form2 from form1
Form2.text=""
'this allow me to add item to form2 from form1
Form2.listview. item.add("")
end form1 click event:

Dimsion
Visual Studio 2005/VB

====Sorry to double post this, but maybe where i have posted this
quesiton
was not the right place the first time.===

Jun 15 '06 #4
It didn't allow you to access them because their modifier is set to
Friends which is the default value. If you select and of the controls
(listview, buttons), in the properties window there is an entry called
modifers. You need to set that to public. But, that means anybody who
knows .NET can include your excutable in their project and have fun
with it.

Dimsion wrote:
Ahmed,

I have two project that i work on, the old one can communicate between forms
and controls. If i added a new form and control on it to that project it can
continue to allow me to access the form and controls. However if i start a
new proect, it will not work the same way.

I have try to declare as IdelBrain mention in the other thread, but it only
allow me access to the form and not it controls.

Thanks,
Dimsion
"Ahmed" <ah*******@gmai l.com> wrote in message
news:11******** **************@ g10g2000cwb.goo glegroups.com.. .
I believe all forms are public by default and all controls are Friends
by default unless you change the modifiers property of that control to
something else. Friends modifier means, other classes/forms within the
same project/assembly are permitted to change the properties and adding
items to the control. Let's go back to your example:

you have form1 that has a click capture a click event
Form2 has a textbox and a listview controls
Now, when the click event is fired:
Form2.textbox.t ext = "Whatever" and Form2.listview. item.add("Whate ver")
are excuted and they shouldn't cause any problems.

I am assuming that both forms are running on the same thread. If each
as its own thread, you need to use delegates or p/invoke. Somebody
correct me if I am wrong.

Ahmed
Dimsion wrote:
Hi,

How do i expose all my forms and it controls to other form in the
project?
I want to be able to add a form and some control on it, this then be
available to all other forms.

form1 click event:
'this allow me to change the textbox on form2 from form1
Form2.text=""
'this allow me to add item to form2 from form1
Form2.listview. item.add("")
end form1 click event:

Dimsion
Visual Studio 2005/VB

====Sorry to double post this, but maybe where i have posted this
quesiton
was not the right place the first time.===


Jun 15 '06 #5
Thanks Ahmed,

The project default was private, that's why i can't get it to work.
I have change it to friend and everything work fine. I think friend would
only allow the program access the properties and not everyone else(i
think..).

Thanks you sooo much!!

Dimsion.

"Ahmed" <ah*******@gmai l.com> wrote in message
news:11******** **************@ g10g2000cwb.goo glegroups.com.. .
It didn't allow you to access them because their modifier is set to
Friends which is the default value. If you select and of the controls
(listview, buttons), in the properties window there is an entry called
modifers. You need to set that to public. But, that means anybody who
knows .NET can include your excutable in their project and have fun
with it.

Dimsion wrote:
Ahmed,

I have two project that i work on, the old one can communicate between
forms
and controls. If i added a new form and control on it to that project it
can
continue to allow me to access the form and controls. However if i start
a
new proect, it will not work the same way.

I have try to declare as IdelBrain mention in the other thread, but it
only
allow me access to the form and not it controls.

Thanks,
Dimsion
"Ahmed" <ah*******@gmai l.com> wrote in message
news:11******** **************@ g10g2000cwb.goo glegroups.com.. .
>I believe all forms are public by default and all controls are Friends
> by default unless you change the modifiers property of that control to
> something else. Friends modifier means, other classes/forms within the
> same project/assembly are permitted to change the properties and adding
> items to the control. Let's go back to your example:
>
> you have form1 that has a click capture a click event
> Form2 has a textbox and a listview controls
> Now, when the click event is fired:
> Form2.textbox.t ext = "Whatever" and Form2.listview. item.add("Whate ver")
> are excuted and they shouldn't cause any problems.
>
> I am assuming that both forms are running on the same thread. If each
> as its own thread, you need to use delegates or p/invoke. Somebody
> correct me if I am wrong.
>
> Ahmed
>
>
> Dimsion wrote:
>> Hi,
>>
>> How do i expose all my forms and it controls to other form in the
>> project?
>> I want to be able to add a form and some control on it, this then be
>> available to all other forms.
>>
>> form1 click event:
>> 'this allow me to change the textbox on form2 from form1
>> Form2.text=""
>> 'this allow me to add item to form2 from form1
>> Form2.listview. item.add("")
>> end form1 click event:
>>
>> Dimsion
>> Visual Studio 2005/VB
>>
>> ====Sorry to double post this, but maybe where i have posted this
>> quesiton
>> was not the right place the first time.===
>

Jun 15 '06 #6
Ahmed,

Do you know how to set the default to be friend instead of private?

Thanks,
Dimsion

"Dimsion" <di*****@hotmai l.com> wrote in message
news:%2******** ********@TK2MSF TNGP04.phx.gbl. ..
Thanks Ahmed,

The project default was private, that's why i can't get it to work.
I have change it to friend and everything work fine. I think friend would
only allow the program access the properties and not everyone else(i
think..).

Thanks you sooo much!!

Dimsion.

"Ahmed" <ah*******@gmai l.com> wrote in message
news:11******** **************@ g10g2000cwb.goo glegroups.com.. .
It didn't allow you to access them because their modifier is set to
Friends which is the default value. If you select and of the controls
(listview, buttons), in the properties window there is an entry called
modifers. You need to set that to public. But, that means anybody who
knows .NET can include your excutable in their project and have fun
with it.

Dimsion wrote:
Ahmed,

I have two project that i work on, the old one can communicate between
forms
and controls. If i added a new form and control on it to that project it
can
continue to allow me to access the form and controls. However if i start
a
new proect, it will not work the same way.

I have try to declare as IdelBrain mention in the other thread, but it
only
allow me access to the form and not it controls.

Thanks,
Dimsion
"Ahmed" <ah*******@gmai l.com> wrote in message
news:11******** **************@ g10g2000cwb.goo glegroups.com.. .
>I believe all forms are public by default and all controls are Friends
> by default unless you change the modifiers property of that control to
> something else. Friends modifier means, other classes/forms within the
> same project/assembly are permitted to change the properties and
> adding
> items to the control. Let's go back to your example:
>
> you have form1 that has a click capture a click event
> Form2 has a textbox and a listview controls
> Now, when the click event is fired:
> Form2.textbox.t ext = "Whatever" and
> Form2.listview. item.add("Whate ver")
> are excuted and they shouldn't cause any problems.
>
> I am assuming that both forms are running on the same thread. If each
> as its own thread, you need to use delegates or p/invoke. Somebody
> correct me if I am wrong.
>
> Ahmed
>
>
> Dimsion wrote:
>> Hi,
>>
>> How do i expose all my forms and it controls to other form in the
>> project?
>> I want to be able to add a form and some control on it, this then be
>> available to all other forms.
>>
>> form1 click event:
>> 'this allow me to change the textbox on form2 from form1
>> Form2.text=""
>> 'this allow me to add item to form2 from form1
>> Form2.listview. item.add("")
>> end form1 click event:
>>
>> Dimsion
>> Visual Studio 2005/VB
>>
>> ====Sorry to double post this, but maybe where i have posted this
>> quesiton
>> was not the right place the first time.===
>


Jun 16 '06 #7
Hi Dimsion,

The set the default of what?

Let me know.
Ahmed
Dimsion wrote:
Ahmed,

Do you know how to set the default to be friend instead of private?

Thanks,
Dimsion

"Dimsion" <di*****@hotmai l.com> wrote in message
news:%2******** ********@TK2MSF TNGP04.phx.gbl. ..
Thanks Ahmed,

The project default was private, that's why i can't get it to work.
I have change it to friend and everything work fine. I think friend would
only allow the program access the properties and not everyone else(i
think..).

Thanks you sooo much!!

Dimsion.

"Ahmed" <ah*******@gmai l.com> wrote in message
news:11******** **************@ g10g2000cwb.goo glegroups.com.. .
It didn't allow you to access them because their modifier is set to
Friends which is the default value. If you select and of the controls
(listview, buttons), in the properties window there is an entry called
modifers. You need to set that to public. But, that means anybody who
knows .NET can include your excutable in their project and have fun
with it.

Dimsion wrote:
Ahmed,

I have two project that i work on, the old one can communicate between
forms
and controls. If i added a new form and control on it to that project it
can
continue to allow me to access the form and controls. However if i start
a
new proect, it will not work the same way.

I have try to declare as IdelBrain mention in the other thread, but it
only
allow me access to the form and not it controls.

Thanks,
Dimsion
"Ahmed" <ah*******@gmai l.com> wrote in message
news:11******** **************@ g10g2000cwb.goo glegroups.com.. .
>I believe all forms are public by default and all controls are Friends
> by default unless you change the modifiers property of that control to
> something else. Friends modifier means, other classes/forms within the
> same project/assembly are permitted to change the properties and
> adding
> items to the control. Let's go back to your example:
>
> you have form1 that has a click capture a click event
> Form2 has a textbox and a listview controls
> Now, when the click event is fired:
> Form2.textbox.t ext = "Whatever" and
> Form2.listview. item.add("Whate ver")
> are excuted and they shouldn't cause any problems.
>
> I am assuming that both forms are running on the same thread. If each
> as its own thread, you need to use delegates or p/invoke. Somebody
> correct me if I am wrong.
>
> Ahmed
>
>
> Dimsion wrote:
>> Hi,
>>
>> How do i expose all my forms and it controls to other form in the
>> project?
>> I want to be able to add a form and some control on it, this then be
>> available to all other forms.
>>
>> form1 click event:
>> 'this allow me to change the textbox on form2 from form1
>> Form2.text=""
>> 'this allow me to add item to form2 from form1
>> Form2.listview. item.add("")
>> end form1 click event:
>>
>> Dimsion
>> Visual Studio 2005/VB
>>
>> ====Sorry to double post this, but maybe where i have posted this
>> quesiton
>> was not the right place the first time.===
>



Jun 16 '06 #8
Sorry about that,
I meant to say do you know how to set the modifier default to friend,
currently every project i started have the modifier set to private.

Thanks again,
Dimsion
"Ahmed" <ah*******@gmai l.com> wrote in message
news:11******** **************@ p79g2000cwp.goo glegroups.com.. .
Hi Dimsion,

The set the default of what?

Let me know.
Ahmed
Dimsion wrote:
Ahmed,

Do you know how to set the default to be friend instead of private?

Thanks,
Dimsion

"Dimsion" <di*****@hotmai l.com> wrote in message
news:%2******** ********@TK2MSF TNGP04.phx.gbl. ..
> Thanks Ahmed,
>
> The project default was private, that's why i can't get it to work.
> I have change it to friend and everything work fine. I think friend
> would
> only allow the program access the properties and not everyone else(i
> think..).
>
> Thanks you sooo much!!
>
> Dimsion.
>
> "Ahmed" <ah*******@gmai l.com> wrote in message
> news:11******** **************@ g10g2000cwb.goo glegroups.com.. .
>> It didn't allow you to access them because their modifier is set to
>> Friends which is the default value. If you select and of the controls
>> (listview, buttons), in the properties window there is an entry called
>> modifers. You need to set that to public. But, that means anybody who
>> knows .NET can include your excutable in their project and have fun
>> with it.
>>
>> Dimsion wrote:
>>> Ahmed,
>>>
>>> I have two project that i work on, the old one can communicate
>>> between
>>> forms
>>> and controls. If i added a new form and control on it to that project
>>> it
>>> can
>>> continue to allow me to access the form and controls. However if i
>>> start
>>> a
>>> new proect, it will not work the same way.
>>>
>>> I have try to declare as IdelBrain mention in the other thread, but
>>> it
>>> only
>>> allow me access to the form and not it controls.
>>>
>>> Thanks,
>>> Dimsion
>>>
>>>
>>> "Ahmed" <ah*******@gmai l.com> wrote in message
>>> news:11******** **************@ g10g2000cwb.goo glegroups.com.. .
>>> >I believe all forms are public by default and all controls are
>>> >Friends
>>> > by default unless you change the modifiers property of that control
>>> > to
>>> > something else. Friends modifier means, other classes/forms within
>>> > the
>>> > same project/assembly are permitted to change the properties and
>>> > adding
>>> > items to the control. Let's go back to your example:
>>> >
>>> > you have form1 that has a click capture a click event
>>> > Form2 has a textbox and a listview controls
>>> > Now, when the click event is fired:
>>> > Form2.textbox.t ext = "Whatever" and
>>> > Form2.listview. item.add("Whate ver")
>>> > are excuted and they shouldn't cause any problems.
>>> >
>>> > I am assuming that both forms are running on the same thread. If
>>> > each
>>> > as its own thread, you need to use delegates or p/invoke. Somebody
>>> > correct me if I am wrong.
>>> >
>>> > Ahmed
>>> >
>>> >
>>> > Dimsion wrote:
>>> >> Hi,
>>> >>
>>> >> How do i expose all my forms and it controls to other form in the
>>> >> project?
>>> >> I want to be able to add a form and some control on it, this then
>>> >> be
>>> >> available to all other forms.
>>> >>
>>> >> form1 click event:
>>> >> 'this allow me to change the textbox on form2 from form1
>>> >> Form2.text=""
>>> >> 'this allow me to add item to form2 from form1
>>> >> Form2.listview. item.add("")
>>> >> end form1 click event:
>>> >>
>>> >> Dimsion
>>> >> Visual Studio 2005/VB
>>> >>
>>> >> ====Sorry to double post this, but maybe where i have posted this
>>> >> quesiton
>>> >> was not the right place the first time.===
>>> >
>>
>
>

Jun 17 '06 #9
But I never saw a modifer for a project. Usually the modifer for the
controls on the form. Just select all controls and set the modifer to
friend or public.

Dimsion wrote:
Sorry about that,
I meant to say do you know how to set the modifier default to friend,
currently every project i started have the modifier set to private.

Thanks again,
Dimsion
"Ahmed" <ah*******@gmai l.com> wrote in message
news:11******** **************@ p79g2000cwp.goo glegroups.com.. .
Hi Dimsion,

The set the default of what?

Let me know.
Ahmed
Dimsion wrote:
Ahmed,

Do you know how to set the default to be friend instead of private?

Thanks,
Dimsion

"Dimsion" <di*****@hotmai l.com> wrote in message
news:%2******** ********@TK2MSF TNGP04.phx.gbl. ..
> Thanks Ahmed,
>
> The project default was private, that's why i can't get it to work.
> I have change it to friend and everything work fine. I think friend
> would
> only allow the program access the properties and not everyone else(i
> think..).
>
> Thanks you sooo much!!
>
> Dimsion.
>
> "Ahmed" <ah*******@gmai l.com> wrote in message
> news:11******** **************@ g10g2000cwb.goo glegroups.com.. .
>> It didn't allow you to access them because their modifier is set to
>> Friends which is the default value. If you select and of the controls
>> (listview, buttons), in the properties window there is an entry called
>> modifers. You need to set that to public. But, that means anybody who
>> knows .NET can include your excutable in their project and have fun
>> with it.
>>
>> Dimsion wrote:
>>> Ahmed,
>>>
>>> I have two project that i work on, the old one can communicate
>>> between
>>> forms
>>> and controls. If i added a new form and control on it to that project
>>> it
>>> can
>>> continue to allow me to access the form and controls. However if i
>>> start
>>> a
>>> new proect, it will not work the same way.
>>>
>>> I have try to declare as IdelBrain mention in the other thread, but
>>> it
>>> only
>>> allow me access to the form and not it controls.
>>>
>>> Thanks,
>>> Dimsion
>>>
>>>
>>> "Ahmed" <ah*******@gmai l.com> wrote in message
>>> news:11******** **************@ g10g2000cwb.goo glegroups.com.. .
>>> >I believe all forms are public by default and all controls are
>>> >Friends
>>> > by default unless you change the modifiers property of that control
>>> > to
>>> > something else. Friends modifier means, other classes/forms within
>>> > the
>>> > same project/assembly are permitted to change the properties and
>>> > adding
>>> > items to the control. Let's go back to your example:
>>> >
>>> > you have form1 that has a click capture a click event
>>> > Form2 has a textbox and a listview controls
>>> > Now, when the click event is fired:
>>> > Form2.textbox.t ext = "Whatever" and
>>> > Form2.listview. item.add("Whate ver")
>>> > are excuted and they shouldn't cause any problems.
>>> >
>>> > I am assuming that both forms are running on the same thread. If
>>> > each
>>> > as its own thread, you need to use delegates or p/invoke. Somebody
>>> > correct me if I am wrong.
>>> >
>>> > Ahmed
>>> >
>>> >
>>> > Dimsion wrote:
>>> >> Hi,
>>> >>
>>> >> How do i expose all my forms and it controls to other form in the
>>> >> project?
>>> >> I want to be able to add a form and some control on it, this then
>>> >> be
>>> >> available to all other forms.
>>> >>
>>> >> form1 click event:
>>> >> 'this allow me to change the textbox on form2 from form1
>>> >> Form2.text=""
>>> >> 'this allow me to add item to form2 from form1
>>> >> Form2.listview. item.add("")
>>> >> end form1 click event:
>>> >>
>>> >> Dimsion
>>> >> Visual Studio 2005/VB
>>> >>
>>> >> ====Sorry to double post this, but maybe where i have posted this
>>> >> quesiton
>>> >> was not the right place the first time.===
>>> >
>>
>
>


Jun 17 '06 #10

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

Similar topics

2
2626
by: ColinWard | last post by:
Hi. I have a form which has as its recordsource an SQL string. The SQL String is as follows: SELECT * from CONTACTS where false. this ensures that there is no data loaded in the form when the form is opened. After the user selects the contact from an unbound combobox I want the form to be rebound to its recordsource. I tried using form.recordsource = "Contacts" in the afterupdate event of
7
9823
by: Saintor | last post by:
What I do now is I put a value in the tag property, and using the form_current event, I run through all controls properties until the ones with the required tag value are met. Sound OK in theory, but it is ... slow. I thought having a table with the name, type of controls and put my 'tag value' there. At the opening of the form, I would retrieve a recordset from the table, and perform a subroutine on the current event to lock/unlock...
14
10142
by: Abhi | last post by:
FYI: This message is for the benefit of MS Access Community. I found that this prblem has been encounterd by many but there is hardly any place where a complete solution is posted. So I thought I should give back to the community by posting our findings. Thanks you all for all your help till now by posting problems and their solutions. ~Abhijit
1
1981
by: Susan Bricker | last post by:
Greetings. I am trying to position opened forms so that they are cascaded on the screen. I have discovered the movesize action (for the DoCmd) and Move property of a form (for Acc 2002/2003). However, if the application is opened up on different monitors (e.g.; 17" or 19"), the relative location of the opened form is not the same (i.e.; on the bigger monitor the opened form is too far over to the right and too high). What I want to...
16
7234
by: TD | last post by:
This is the code under a command button - Dim ctl As Control For Each ctl In Me.Controls If ctl.BackColor <> RGB(255, 255, 255) Then ctl.BackColor = RGB(255, 255, 255) End If Next ctl
1
1591
by: Stefan W via .NET 247 | last post by:
I'm relatively new to C#, (I have to use it, now that I'veinherited someone else's projects). I'm looking for a way toiterate through the controls on a form; if the control is of acertain type, I want to set a property that is specific to thatcontrol type. The problem I'm having is that the "generic"Control object might not contain the properties that I want to set. Here's an example of what I'd like to try to do: //loop through all...
2
1068
by: ljh | last post by:
I am using some 3rd party controls to create my own control. I want to "pass up" many (but not all) of the properties of the 3rd party controls that I am using to make my control, so that the end user can customize as much or as little as they wish. But, there are HUNDREDS of properties (of the combined controls). Is there an easy way to expose the properties of the controls that I am using to make my control adn still be able to...
8
3585
by: Ryan | last post by:
Ok.. I have a form with lots of stuff on it; a tool strip panel, menu strip, data binding elements (dataset, binding source, table adapter), tab control with 7 tab pages, each page contains a picture box, lots of text boxes (for input).. you get the idea. All of a sudden everything on the form has disappeared, it looks like a blank, newly created form. I can still get to the properties of every item on the form using the drop-down box in...
9
2519
by: dhtml | last post by:
I have written an article "Unsafe Names for HTML Form Controls". <URL: http://jibbering.com/faq/names/ > I would appreciate any reviews, technical or otherwise. Garrett -- comp.lang.javascript FAQ <URL: http://jibbering.com/faq/ >
0
9476
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9335
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9208
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8210
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6751
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6053
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4825
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3279
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 we have to send another system
2
2745
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.