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

ClientScript.RegisterClientScriptInclude -

Hello,

I'd like to include JS from C# code (ASP.NET 2.0). I'm trying not directly
from i.e. default.aspx.cs code but from a class belonging to DLL, which is
referred in my project.

The code is as follow:

Page.ClientScript.RegisterClientScriptInclude(Page .GetType(),"swfobject.js","swfobject.js");

string scriptBlock = "<script type=\"text/javascript\"
language=\"JavaScript\">" +

"var fo = new SWFObject(\"" + path + "\", \"\", \""+szerokosc+"\",
\""+wysokosc+"\", \"6\", \"#FFFFFF\");" +

"fo.write(\"" + layer + "\");" +

"</script>";

All the time I get error in the line -
Page.ClientScript.RegisterClientScriptInclude(Page .GetType(),"swfobject.js","swfobject.js");
telling that reference to the object is not set for object occurence (I
cannot provide the error message because it's in my language - I have got
polish version of Win2003Serv. At the occasion: Is it possible to force my
environment to throw english errors not polish?).
I tried to change Page.GetType() to this.GetType() but without any effect.

Thank you for any suggestion.

Darek T.
Aug 5 '07 #1
9 4272
Hi,

Did you try this ?

ClientScript.RegisterClientScriptBlock(this.GetTyp e(), "swobject",
scriptBlock);

Hth
Stan
"Dariusz Tomoñ" <d.*****@mazars.pla écrit dans le message de
news:%2***************@TK2MSFTNGP06.phx.gbl...
Hello,

I'd like to include JS from C# code (ASP.NET 2.0). I'm trying not directly
from i.e. default.aspx.cs code but from a class belonging to DLL, which is
referred in my project.

The code is as follow:

Page.ClientScript.RegisterClientScriptInclude(Page .GetType(),"swfobject.js","swfobject.js");

string scriptBlock = "<script type=\"text/javascript\"
language=\"JavaScript\">" +

"var fo = new SWFObject(\"" + path + "\", \"\", \""+szerokosc+"\",
\""+wysokosc+"\", \"6\", \"#FFFFFF\");" +

"fo.write(\"" + layer + "\");" +

"</script>";

All the time I get error in the line -
Page.ClientScript.RegisterClientScriptInclude(Page .GetType(),"swfobject.js","swfobject.js");
telling that reference to the object is not set for object occurence (I
cannot provide the error message because it's in my language - I have got
polish version of Win2003Serv. At the occasion: Is it possible to force my
environment to throw english errors not polish?).
I tried to change Page.GetType() to this.GetType() but without any effect.

Thank you for any suggestion.

Darek T.

Aug 5 '07 #2
"Dariusz Tomoñ" <d.*****@mazars.plwrote in message
news:%2***************@TK2MSFTNGP06.phx.gbl...
I tried to change Page.GetType() to this.GetType() but without any effect.
this.GetType() is correct... However, the third argument of the
RegisterClientScriptInclude method is, in fact, a URL - does the
swfobject.js file exist in the same folder as the page which is trying to
reference it...?
http://msdn2.microsoft.com/en-us/lib...w2(VS.80).aspx
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Aug 5 '07 #3
Dariusz,

you will need to call it as follows:

page..ClientScript.RegisterClientScriptInclude(pag e.GetType(), ...

where page will be the reference to the page on which you are trying to
register your script.
"Dariusz Tomoñ" wrote:
Hello,

I'd like to include JS from C# code (ASP.NET 2.0). I'm trying not directly
from i.e. default.aspx.cs code but from a class belonging to DLL, which is
referred in my project.

The code is as follow:

Page.ClientScript.RegisterClientScriptInclude(Page .GetType(),"swfobject.js","swfobject.js");

string scriptBlock = "<script type=\"text/javascript\"
language=\"JavaScript\">" +

"var fo = new SWFObject(\"" + path + "\", \"\", \""+szerokosc+"\",
\""+wysokosc+"\", \"6\", \"#FFFFFF\");" +

"fo.write(\"" + layer + "\");" +

"</script>";

All the time I get error in the line -
Page.ClientScript.RegisterClientScriptInclude(Page .GetType(),"swfobject.js","swfobject.js");
telling that reference to the object is not set for object occurence (I
cannot provide the error message because it's in my language - I have got
polish version of Win2003Serv. At the occasion: Is it possible to force my
environment to throw english errors not polish?).
I tried to change Page.GetType() to this.GetType() but without any effect.

Thank you for any suggestion.

Darek T.
Aug 6 '07 #4
ok, but 'this' is not my Page object, rather: -
EuroAdresBasic.EFlashControl2, where EuroAdresBasic is namespace and
EFlashControl2 is a class from within I'm trying to reffer to my Page
object.
I tried to someting like that:
Page page = new Page();

but in reality it is not my Page where I want to inject JS so I cannot see
my swf injected.

Best Regards

Darek


Uzytkownik "Mark Rae [MVP]" <ma**@markNOSPAMrae.netnapisal w wiadomosci
news:ug*************@TK2MSFTNGP06.phx.gbl...
"Dariusz Tomoñ" <d.*****@mazars.plwrote in message
news:%2***************@TK2MSFTNGP06.phx.gbl...
>I tried to change Page.GetType() to this.GetType() but without any
effect.

this.GetType() is correct... However, the third argument of the
RegisterClientScriptInclude method is, in fact, a URL - does the
swfobject.js file exist in the same folder as the page which is trying to
reference it...?
http://msdn2.microsoft.com/en-us/lib...w2(VS.80).aspx
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Aug 6 '07 #5
ok, but 'this' is not my Page object, rather: -
EuroAdresBasic.EFlashControl2, where EuroAdresBasic is namespace and
EFlashControl2 is a class from within I'm trying to reffer to my Page object
(Page is null)
I tried to someting like that:
Page page = new Page();

but in reality it is not my Page where I want to inject JS so I cannot see
my swf injected.

Best Regards

Darek

Uzytkownik "Stan SR" <st**@pasdepam.netsunset.comnapisal w wiadomosci
news:ee**************@TK2MSFTNGP04.phx.gbl...
Hi,

Did you try this ?

ClientScript.RegisterClientScriptBlock(this.GetTyp e(), "swobject",
scriptBlock);

Hth
Stan
"Dariusz Tomoñ" <d.*****@mazars.pla écrit dans le message de
news:%2***************@TK2MSFTNGP06.phx.gbl...
>Hello,

I'd like to include JS from C# code (ASP.NET 2.0). I'm trying not
directly from i.e. default.aspx.cs code but from a class belonging to
DLL, which is referred in my project.

The code is as follow:

Page.ClientScript.RegisterClientScriptInclude(Pag e.GetType(),"swfobject.js","swfobject.js");

string scriptBlock = "<script type=\"text/javascript\"
language=\"JavaScript\">" +

"var fo = new SWFObject(\"" + path + "\", \"\", \""+szerokosc+"\",
\""+wysokosc+"\", \"6\", \"#FFFFFF\");" +

"fo.write(\"" + layer + "\");" +

"</script>";

All the time I get error in the line -
Page.ClientScript.RegisterClientScriptInclude(Pag e.GetType(),"swfobject.js","swfobject.js");
telling that reference to the object is not set for object occurence (I
cannot provide the error message because it's in my language - I have got
polish version of Win2003Serv. At the occasion: Is it possible to force
my environment to throw english errors not polish?).
I tried to change Page.GetType() to this.GetType() but without any
effect.

Thank you for any suggestion.

Darek T.


Aug 6 '07 #6
ok, but I don't know hot to reffer to my Page object (during executing this
line 'Page' is null. Other guys suggested using 'this' but 'this' is not my
Page object, rather: - EuroAdresBasic.EFlashControl2, where EuroAdresBasic
is namespace and EFlashControl2 is a class from within I'm trying to reffer
to my Page object (Page is null)
I tried to someting like that:
Page page = new Page();

but in reality it is not my Page where I want to inject JS so I cannot see
my swf injected.

The question is how to reffer to my Page from external project (the class is
in external project)

Best Regards

Darek

U¿ytkownik "Sergey Poberezovskiy"
<Se*****************@discussions.microsoft.comnapi sa³ w wiadomo¶ci
news:73**********************************@microsof t.com...
Dariusz,

you will need to call it as follows:

page..ClientScript.RegisterClientScriptInclude(pag e.GetType(), ...

where page will be the reference to the page on which you are trying to
register your script.
"Dariusz Tomon" wrote:
>Hello,

I'd like to include JS from C# code (ASP.NET 2.0). I'm trying not
directly
from i.e. default.aspx.cs code but from a class belonging to DLL, which
is
referred in my project.

The code is as follow:

Page.ClientScript.RegisterClientScriptInclude(Pag e.GetType(),"swfobject.js","swfobject.js");

string scriptBlock = "<script type=\"text/javascript\"
language=\"JavaScript\">" +

"var fo = new SWFObject(\"" + path + "\", \"\", \""+szerokosc+"\",
\""+wysokosc+"\", \"6\", \"#FFFFFF\");" +

"fo.write(\"" + layer + "\");" +

"</script>";

All the time I get error in the line -
Page.ClientScript.RegisterClientScriptInclude(Pag e.GetType(),"swfobject.js","swfobject.js");
telling that reference to the object is not set for object occurence (I
cannot provide the error message because it's in my language - I have got
polish version of Win2003Serv. At the occasion: Is it possible to force
my
environment to throw english errors not polish?).
I tried to change Page.GetType() to this.GetType() but without any
effect.

Thank you for any suggestion.

Darek T.

Aug 6 '07 #7
Darek,

If you have a control that resides on the page you after, then you can use
it's Page property. If you say that your control's Page property is null, it
looks like you are trying to reference it too early in the control's lifetime
(before the control is added to the page controls hierarchy).

I usually register all my scripts in PreRender event - this way you do not
execute unnecessary code if, say in other control's events the current page
terminates (if Response is redirected, transferred or otherwise ended).

"Dariusz Tomoñ" wrote:
ok, but I don't know hot to reffer to my Page object (during executing this
line 'Page' is null. Other guys suggested using 'this' but 'this' is not my
Page object, rather: - EuroAdresBasic.EFlashControl2, where EuroAdresBasic
is namespace and EFlashControl2 is a class from within I'm trying to reffer
to my Page object (Page is null)
I tried to someting like that:
Page page = new Page();

but in reality it is not my Page where I want to inject JS so I cannot see
my swf injected.

The question is how to reffer to my Page from external project (the class is
in external project)

Best Regards

Darek

U¿ytkownik "Sergey Poberezovskiy"
<Se*****************@discussions.microsoft.comnapi sa³ w wiadomo¶ci
news:73**********************************@microsof t.com...
Dariusz,

you will need to call it as follows:

page..ClientScript.RegisterClientScriptInclude(pag e.GetType(), ...

where page will be the reference to the page on which you are trying to
register your script.
"Dariusz Tomon" wrote:
Hello,

I'd like to include JS from C# code (ASP.NET 2.0). I'm trying not
directly
from i.e. default.aspx.cs code but from a class belonging to DLL, which
is
referred in my project.

The code is as follow:

Page.ClientScript.RegisterClientScriptInclude(Page .GetType(),"swfobject.js","swfobject.js");

string scriptBlock = "<script type=\"text/javascript\"
language=\"JavaScript\">" +

"var fo = new SWFObject(\"" + path + "\", \"\", \""+szerokosc+"\",
\""+wysokosc+"\", \"6\", \"#FFFFFF\");" +

"fo.write(\"" + layer + "\");" +

"</script>";

All the time I get error in the line -
Page.ClientScript.RegisterClientScriptInclude(Page .GetType(),"swfobject.js","swfobject.js");
telling that reference to the object is not set for object occurence (I
cannot provide the error message because it's in my language - I have got
polish version of Win2003Serv. At the occasion: Is it possible to force
my
environment to throw english errors not polish?).
I tried to change Page.GetType() to this.GetType() but without any
effect.

Thank you for any suggestion.

Darek T.


Aug 6 '07 #8
Dear Sergey,

I eventually got by ... but I had to pass on my Page object as parameter to
external class. Yes, before calling external class code I have value of Page
object and when I call the code of the dll my Page object seems to be
reseted to null (therefore I thought of passing it as parameter). Now it
works but I'm wondering if there is other method ...
I have no idea how can I invoke the code from external class using PreRender
event. I'm doing it from within code so I have no graphical representation
of external class and therefore I have no access to events in my VS2005.
Can you share a snippet of code with me?

My calling is like this:
EuroAdresBasic.EFlashControl2 fleszcontrol = new EFlashControl2(Page,
"panel", "http://www.euroadres.pl/images/flash/" + flesz, "360", "340");

And a snippet from EFlasControl2 is like below:

public class EFlashControl2 : System.Web.UI.WebControls.WebControl

{

protected System.Web.UI.HtmlControls.HtmlGenericControl FlashObject

= new System.Web.UI.HtmlControls.HtmlGenericControl("obj ect");

protected System.Web.UI.HtmlControls.HtmlGenericControl FlashParam

= new System.Web.UI.HtmlControls.HtmlGenericControl("par am");

protected System.Web.UI.HtmlControls.HtmlGenericControl FlashEmbed

= new System.Web.UI.HtmlControls.HtmlGenericControl("emb ed");

protected System.Web.UI.HtmlControls.HtmlGenericControl pr;

public EFlashControl2(Page PageObject, string layer, string path, string
szerokosc, string wysokosc)

{

//Page page = new Page();

Random RandomClass = new Random();

int RandomNumber = RandomClass.Next(0, 90000);

string SWFObjectName = RandomNumber.ToString();

PageObject.ClientScript.RegisterClientScriptInclud e(PageObject.GetType(),
"swfobject.js", "swfobject.js");

string scriptBlock = "<script type=\"text/javascript\"
language=\"JavaScript\">" +

"var fo = new SWFObject(\"" + path + "\", \"" + SWFObjectName + "\", \"" +
szerokosc + "\", \"" + wysokosc + "\", \"6\", \"#FFFFFF\");" +

"fo.write(\"" + layer + "\");" +

"</script>";

PageObject.ClientScript.RegisterClientScriptBlock( PageObject.GetType(),
layer, scriptBlock);

Best Regards

Darek T.
U¿ytkownik "Sergey Poberezovskiy"
<Se*****************@discussions.microsoft.comnapi sa³ w wiadomo¶ci
news:DE**********************************@microsof t.com...
Darek,

If you have a control that resides on the page you after, then you can use
it's Page property. If you say that your control's Page property is null,
it
looks like you are trying to reference it too early in the control's
lifetime
(before the control is added to the page controls hierarchy).
ahe
I usually register all my scripts in PreRender event - this way you do not
execute unnecessary code if, say in other control's events the current
page
terminates (if Response is redirected, transferred or otherwise ended).

"Dariusz Tomon" wrote:
>ok, but I don't know hot to reffer to my Page object (during executing
this
line 'Page' is null. Other guys suggested using 'this' but 'this' is not
my
Page object, rather: - EuroAdresBasic.EFlashControl2, where
EuroAdresBasic
is namespace and EFlashControl2 is a class from within I'm trying to
reffer
to my Page object (Page is null)
I tried to someting like that:
Page page = new Page();

but in reality it is not my Page where I want to inject JS so I cannot
see
my swf injected.

The question is how to reffer to my Page from external project (the class
is
in external project)

Best Regards

Darek

U?ytkownik "Sergey Poberezovskiy"
<Se*****************@discussions.microsoft.comnap isa3 w wiadomo?ci
news:73**********************************@microso ft.com...
Dariusz,

you will need to call it as follows:

page..ClientScript.RegisterClientScriptInclude(pag e.GetType(), ...

where page will be the reference to the page on which you are trying to
register your script.
"Dariusz Tomon" wrote:

Hello,

I'd like to include JS from C# code (ASP.NET 2.0). I'm trying not
directly
from i.e. default.aspx.cs code but from a class belonging to DLL,
which
is
referred in my project.

The code is as follow:

Page.ClientScript.RegisterClientScriptInclude(Pag e.GetType(),"swfobject.js","swfobject.js");

string scriptBlock = "<script type=\"text/javascript\"
language=\"JavaScript\">" +

"var fo = new SWFObject(\"" + path + "\", \"\", \""+szerokosc+"\",
\""+wysokosc+"\", \"6\", \"#FFFFFF\");" +

"fo.write(\"" + layer + "\");" +

"</script>";

All the time I get error in the line -
Page.ClientScript.RegisterClientScriptInclude(Pag e.GetType(),"swfobject.js","swfobject.js");
telling that reference to the object is not set for object occurence
(I
cannot provide the error message because it's in my language - I have
got
polish version of Win2003Serv. At the occasion: Is it possible to
force
my
environment to throw english errors not polish?).
I tried to change Page.GetType() to this.GetType() but without any
effect.

Thank you for any suggestion.

Darek T.



Aug 7 '07 #9
Darek,

Your EFlashControl2 inherits WebControl and therefore can override its
virtual methods (as you may not assume that AutoEventWireup is set to true on
the page).
something similar to the following:

protected override void OnPreRender(EventArgs e)
{
if (this.Page != null){
string scriptBlock = "...";
this.Page.ClientScript.RegisterClientScriptBlock(t his.Page.GetType(), ...
}
base.OnPreRender(e);
}

the reason I included check on whether the Page property is not empty is
that control may not necessarily ends up rendered on the page, but sometimes
into a stringbuilder instead.
"Dariusz Tomoñ" wrote:
Dear Sergey,

I eventually got by ... but I had to pass on my Page object as parameter to
external class. Yes, before calling external class code I have value of Page
object and when I call the code of the dll my Page object seems to be
reseted to null (therefore I thought of passing it as parameter). Now it
works but I'm wondering if there is other method ...
I have no idea how can I invoke the code from external class using PreRender
event. I'm doing it from within code so I have no graphical representation
of external class and therefore I have no access to events in my VS2005.
Can you share a snippet of code with me?

My calling is like this:
EuroAdresBasic.EFlashControl2 fleszcontrol = new EFlashControl2(Page,
"panel", "http://www.euroadres.pl/images/flash/" + flesz, "360", "340");

And a snippet from EFlasControl2 is like below:

public class EFlashControl2 : System.Web.UI.WebControls.WebControl

{

protected System.Web.UI.HtmlControls.HtmlGenericControl FlashObject

= new System.Web.UI.HtmlControls.HtmlGenericControl("obj ect");

protected System.Web.UI.HtmlControls.HtmlGenericControl FlashParam

= new System.Web.UI.HtmlControls.HtmlGenericControl("par am");

protected System.Web.UI.HtmlControls.HtmlGenericControl FlashEmbed

= new System.Web.UI.HtmlControls.HtmlGenericControl("emb ed");

protected System.Web.UI.HtmlControls.HtmlGenericControl pr;

public EFlashControl2(Page PageObject, string layer, string path, string
szerokosc, string wysokosc)

{

//Page page = new Page();

Random RandomClass = new Random();

int RandomNumber = RandomClass.Next(0, 90000);

string SWFObjectName = RandomNumber.ToString();

PageObject.ClientScript.RegisterClientScriptInclud e(PageObject.GetType(),
"swfobject.js", "swfobject.js");

string scriptBlock = "<script type=\"text/javascript\"
language=\"JavaScript\">" +

"var fo = new SWFObject(\"" + path + "\", \"" + SWFObjectName + "\", \"" +
szerokosc + "\", \"" + wysokosc + "\", \"6\", \"#FFFFFF\");" +

"fo.write(\"" + layer + "\");" +

"</script>";

PageObject.ClientScript.RegisterClientScriptBlock( PageObject.GetType(),
layer, scriptBlock);

Best Regards

Darek T.
U¿ytkownik "Sergey Poberezovskiy"
<Se*****************@discussions.microsoft.comnapi sa³ w wiadomo¶ci
news:DE**********************************@microsof t.com...
Darek,

If you have a control that resides on the page you after, then you can use
it's Page property. If you say that your control's Page property is null,
it
looks like you are trying to reference it too early in the control's
lifetime
(before the control is added to the page controls hierarchy).
ahe
I usually register all my scripts in PreRender event - this way you do not
execute unnecessary code if, say in other control's events the current
page
terminates (if Response is redirected, transferred or otherwise ended).

"Dariusz Tomon" wrote:
ok, but I don't know hot to reffer to my Page object (during executing
this
line 'Page' is null. Other guys suggested using 'this' but 'this' is not
my
Page object, rather: - EuroAdresBasic.EFlashControl2, where
EuroAdresBasic
is namespace and EFlashControl2 is a class from within I'm trying to
reffer
to my Page object (Page is null)
I tried to someting like that:
Page page = new Page();

but in reality it is not my Page where I want to inject JS so I cannot
see
my swf injected.

The question is how to reffer to my Page from external project (the class
is
in external project)

Best Regards

Darek

U?ytkownik "Sergey Poberezovskiy"
<Se*****************@discussions.microsoft.comnapi sa3 w wiadomo?ci
news:73**********************************@microsof t.com...
Dariusz,

you will need to call it as follows:

page..ClientScript.RegisterClientScriptInclude(pag e.GetType(), ...

where page will be the reference to the page on which you are trying to
register your script.
"Dariusz Tomon" wrote:

Hello,

I'd like to include JS from C# code (ASP.NET 2.0). I'm trying not
directly
from i.e. default.aspx.cs code but from a class belonging to DLL,
which
is
referred in my project.

The code is as follow:

Page.ClientScript.RegisterClientScriptInclude(Page .GetType(),"swfobject.js","swfobject.js");

string scriptBlock = "<script type=\"text/javascript\"
language=\"JavaScript\">" +

"var fo = new SWFObject(\"" + path + "\", \"\", \""+szerokosc+"\",
\""+wysokosc+"\", \"6\", \"#FFFFFF\");" +

"fo.write(\"" + layer + "\");" +

"</script>";

All the time I get error in the line -
Page.ClientScript.RegisterClientScriptInclude(Page .GetType(),"swfobject.js","swfobject.js");
telling that reference to the object is not set for object occurence
(I
cannot provide the error message because it's in my language - I have
got
polish version of Win2003Serv. At the occasion: Is it possible to
force
my
environment to throw english errors not polish?).
I tried to change Page.GetType() to this.GetType() but without any
effect.

Thank you for any suggestion.

Darek T.



Aug 7 '07 #10

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

Similar topics

7
by: sck10 | last post by:
Hello, I have the following sub in a class in my "App_Code" directory. The script is for setting focus on a particular control, but I get the error, "Name ClientScript Not declared". Also, I am...
1
by: Tom | last post by:
I am new to ASP.NET. I am converting a fairly good sized app from classic to .net. Some of my pages have a lot of controls and javascript functions. I would like to keep these intact as much as...
2
by: Alex Maghen | last post by:
I want to create a C# class where I'll have a bunch of static functions which will use the ClientScript object to dump out some JavaScript dynamically. But I can't figure out how to get a hold of...
4
by: WT | last post by:
Having questions and problems with this method. I have a control library that embed its .gif and js, html and htc in its ressources Corresponding Attributes are added to the namespace using...
0
by: Dunc | last post by:
Hi, I've got an ASP.NET 2.0 app, and I'm trying to incorporate Google Maps. The app uses nested master pages, so it seems the only way to add a <scripttag to the header block is to use...
2
by: verci | last post by:
Hi guys, I'm using asp.net 2.0, can anybody send me some complete examples on using ClientScript.RegisterClientScriptInclude and ClientScript.RegisterClientScriptSource, for registering an...
2
by: verci | last post by:
Hi guys, I'm using asp.net 2.0, can anybody send me some complete examples on using ClientScript.RegisterClientScriptInclude and ClientScript.RegisterClientScriptSource, for registering an...
1
by: HockeyFan | last post by:
My function to get an alert box on the page isn't working. Instead it puts in the bottom section of the page: <script type="text/javascript"> <!-- This is a test// --> </script> The...
1
by: Dave Mathew | last post by:
Is there any way to use RegisterClientScriptInclude to generate the script tags inside of the <headtag? I'm using RegisterClientScriptInclude inside of Page_Load event in the code behind for the...
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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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,...

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.