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

dumb question

GS
in VS .net vb 2005 express,
I failed to find the option for leaving out warning in the Errors tab but
still leave Warning in the warning tab listing.

Can someone give me some hints? thank you for your time and advice
Sep 12 '06 #1
7 2093
What kind of warnings are you getting? It might be a good idea to
address them, as warnings tend to turn into runtime errors.

Thanks,

Seth Rowe

GS wrote:
in VS .net vb 2005 express,
I failed to find the option for leaving out warning in the Errors tab but
still leave Warning in the warning tab listing.

Can someone give me some hints? thank you for your time and advice
Sep 13 '06 #2
GS
Warning 1 Access of shared member, constant member, enum member or nested
type through an instance;
qualifying expression will not be evaluated.
D:\data\IeI\gp\AppCom\myApp\FormmyApp.vb 674 29 myApp

the code
Private Sub openMI_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles openMI.Click
Dim od As New OpenDialog()

Dim myDialogResult As DialogResult = od.ShowDialog(Me)
If myDialogResult = DialogResult.OK Then
ShowUrl(od.PathOrUrl)
End If
End Sub

the above code is from some example on WebOChost control, Since there is no
plan to use it and don't know how to fix it, I just want to ignore it for
now

The reason I want to separate listing of error and warning is that I can
quickly address the errors first during developement and as long as the
number of the warning
in the warning tab reamins same I would ignore for now. they are either
from OLE structure or like the above - not critical now

I am trying come up with a quick runnable demo of concepts

Warning 2 Type of member 'cmdtextf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 5 12 myApp
Public Event CommandStateChange(ByVal Sender As Object, ByVal E As
AxSHDocVw.DWebBrowserEvents2_CommandStateChangeEve nt)

Warning 1 Access of shared member, constant member, enum member or nested
type through an instance; qualifying expression will not be evaluated.
D:\data\IeI\gp\AppCom\myApp\FormmyApp.vb 674 29 myApp
Warning 2 Type of member 'cmdtextf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 5 12 myApp
Warning 3 Type of member 'cwActual' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 6 12 myApp
Warning 4 Type of member 'cwBuf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 7 12 myApp
Warning 5 Type of member 'cmdf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 14 12 myApp
Warning 6 Type of parameter 'cCmds' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 27 56 myApp
Warning 7 Access of shared member, constant member, enum member or nested
type through an instance; qualifying expression will not be evaluated.
D:\data\IeI\gp\AppCom\myApp\OpenDialog.vb 162 27 myApp
Warning 8 Type of parameter 'E' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 15 67 myApp
Warning 9 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 20 65 myApp
Warning 10 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 21 73 myApp
Warning 11 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 22 74 myApp
Public Event TopLevelNavigateComplete2(ByVal sender As Object, ByVal e
As AxSHDocVw.DWebBrowserEvents2_NavigateComplete2Even t)

Warning 12 Return type of function 'HtmlDocument' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 131 30 myApp
Public ReadOnly Property HtmlDocument() As mshtml.HTMLDocument
the below are used in webBrowser's OLE execute command like
Dim cmdt As IOleCommandTarget
Dim o As Object

' If the doc object isn't set to anything, or there's
' some bizarre error in accessing IOleCommandTarget,
' exit gracefully.
Try
cmdt = CType(doc, IOleCommandTarget)
cmdt.Exec(cmdGUID, MiscCommandTarget.ViewSource,
SHDocVw.OLECMDEXECOPT.OLECMDEXECOPT_DODEFAULT, o, o)
Catch
Throw (New Exception(Err.GetException().Message))
End Try

Warning 14 Variable 'o' is passed by reference before it has been assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 247 109 myApp
Warning 15 Variable 'o' is passed by reference before it has been assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 262 103 myApp
Warning 16 Variable 'o' is passed by reference before it has been assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 277 106 myApp


"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@e3g2000cwe.googlegro ups.com...
What kind of warnings are you getting? It might be a good idea to
address them, as warnings tend to turn into runtime errors.

Thanks,

Seth Rowe

GS wrote:
in VS .net vb 2005 express,
I failed to find the option for leaving out warning in the Errors tab
but
still leave Warning in the warning tab listing.

Can someone give me some hints? thank you for your time and advice

Sep 13 '06 #3
That's a lot of warnings! I'll take a better look later but here's some
of the warnings you should fix:
Warning 1 Access of shared member, constant member, enum member or nested
type through an instance;
Shared methods operate independantly from an instance's methods, and
aren't available to an instance of the class. This warning tells you
that you are trying to access a shared method and that it's not
evaluating the code. You'll want to call the method through the class
instead of an instance.
Warning 16 Variable 'o' is passed by reference before it has been assigned a
value. A null reference exception could result at runtime.
Without seeing all your code it's difficult to tell you how to fix
this, but it could be as simple as replacing Dim o as Object with Dim o
as New Object, or by passing the value with ByVal if you're not
changing the value (or use a function if you need to change the value).
Warning 9 Type of parameter 'e' is not CLS-compliant.
I believe e is sort of a reserved parameter of the Type
System.EventArgs so using it as a different type may raise this warning
(just a guess)
The reason I want to separate listing of error and warning is that I can
quickly address the errors first during developement
If you open the error list tab, right below the title bar are three
toggle buttons:
{} Error, {} Warning, and {} Messages. Clicking on these will toggle
them on and off. However, you should always try to resolve any warning
messages that you can.

Hope that helps,

Seth Rowe
GS wrote:
Warning 1 Access of shared member, constant member, enum member or nested
type through an instance;
qualifying expression will not be evaluated.
D:\data\IeI\gp\AppCom\myApp\FormmyApp.vb 674 29 myApp

the code
Private Sub openMI_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles openMI.Click
Dim od As New OpenDialog()

Dim myDialogResult As DialogResult = od.ShowDialog(Me)
If myDialogResult = DialogResult.OK Then
ShowUrl(od.PathOrUrl)
End If
End Sub

the above code is from some example on WebOChost control, Since there is no
plan to use it and don't know how to fix it, I just want to ignore it for
now

The reason I want to separate listing of error and warning is that I can
quickly address the errors first during developement and as long as the
number of the warning
in the warning tab reamins same I would ignore for now. they are either
from OLE structure or like the above - not critical now

I am trying come up with a quick runnable demo of concepts

Warning 2 Type of member 'cmdtextf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 5 12 myApp
Public Event CommandStateChange(ByVal Sender As Object, ByVal E As
AxSHDocVw.DWebBrowserEvents2_CommandStateChangeEve nt)

Warning 1 Access of shared member, constant member, enum member or nested
type through an instance; qualifying expression will not be evaluated.
D:\data\IeI\gp\AppCom\myApp\FormmyApp.vb 674 29 myApp
Warning 2 Type of member 'cmdtextf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 5 12 myApp
Warning 3 Type of member 'cwActual' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 6 12 myApp
Warning 4 Type of member 'cwBuf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 7 12 myApp
Warning 5 Type of member 'cmdf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 14 12 myApp
Warning 6 Type of parameter 'cCmds' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 27 56 myApp
Warning 7 Access of shared member, constant member, enum member or nested
type through an instance; qualifying expression will not be evaluated.
D:\data\IeI\gp\AppCom\myApp\OpenDialog.vb 162 27 myApp
Warning 8 Type of parameter 'E' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 15 67 myApp
Warning 9 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 20 65 myApp
Warning 10 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 21 73 myApp
Warning 11 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 22 74 myApp
Public Event TopLevelNavigateComplete2(ByVal sender As Object, ByVal e
As AxSHDocVw.DWebBrowserEvents2_NavigateComplete2Even t)

Warning 12 Return type of function 'HtmlDocument' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 131 30 myApp
Public ReadOnly Property HtmlDocument() As mshtml.HTMLDocument
the below are used in webBrowser's OLE execute command like
Dim cmdt As IOleCommandTarget
Dim o As Object

' If the doc object isn't set to anything, or there's
' some bizarre error in accessing IOleCommandTarget,
' exit gracefully.
Try
cmdt = CType(doc, IOleCommandTarget)
cmdt.Exec(cmdGUID, MiscCommandTarget.ViewSource,
SHDocVw.OLECMDEXECOPT.OLECMDEXECOPT_DODEFAULT, o, o)
Catch
Throw (New Exception(Err.GetException().Message))
End Try

Warning 14 Variable 'o' is passed by reference before it has been assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 247 109 myApp
Warning 15 Variable 'o' is passed by reference before it has been assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 262 103 myApp
Warning 16 Variable 'o' is passed by reference before it has been assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 277 106 myApp


"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@e3g2000cwe.googlegro ups.com...
What kind of warnings are you getting? It might be a good idea to
address them, as warnings tend to turn into runtime errors.

Thanks,

Seth Rowe

GS wrote:
in VS .net vb 2005 express,
I failed to find the option for leaving out warning in the Errors tab
but
still leave Warning in the warning tab listing.
>
Can someone give me some hints? thank you for your time and advice
Sep 13 '06 #4
GS
thx very much.

I still don't get it. the method Private Sub openMI_Click(ByVal sender
As System.Object, ByVal e As System.EventArgs) Handles openMI.Click
Dim od As New OpenDialog()

Dim myDialogResult As DialogResult = od.ShowDialog(Me)
If myDialogResult = DialogResult.OK Then ' warning for
DialogResult.OK
ShowUrl(od.PathOrUrl)
End If
End Sub
I thought
DialogResult.OK is sort of constant (property, probably shared). I
actually tested the menu item and it did open a dialog for accepting an
valid URL and get ShowUrl() to navigate the browser to that successfully

So the warning is somewhat moot

"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@i3g2000cwc.googlegro ups.com...
That's a lot of warnings! I'll take a better look later but here's some
of the warnings you should fix:
Warning 1 Access of shared member, constant member, enum member or
nested
type through an instance;

Shared methods operate independantly from an instance's methods, and
aren't available to an instance of the class. This warning tells you
that you are trying to access a shared method and that it's not
evaluating the code. You'll want to call the method through the class
instead of an instance.
Warning 16 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.

Without seeing all your code it's difficult to tell you how to fix
this, but it could be as simple as replacing Dim o as Object with Dim o
as New Object, or by passing the value with ByVal if you're not
changing the value (or use a function if you need to change the value).
Warning 9 Type of parameter 'e' is not CLS-compliant.

I believe e is sort of a reserved parameter of the Type
System.EventArgs so using it as a different type may raise this warning
(just a guess)
The reason I want to separate listing of error and warning is that I can
quickly address the errors first during developement

If you open the error list tab, right below the title bar are three
toggle buttons:
{} Error, {} Warning, and {} Messages. Clicking on these will toggle
them on and off. However, you should always try to resolve any warning
messages that you can.

Hope that helps,

Seth Rowe
GS wrote:
Warning 1 Access of shared member, constant member, enum member or
nested
type through an instance;
qualifying expression will not be evaluated.
D:\data\IeI\gp\AppCom\myApp\FormmyApp.vb 674 29 myApp

the code
Private Sub openMI_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles openMI.Click
Dim od As New OpenDialog()

Dim myDialogResult As DialogResult = od.ShowDialog(Me)
If myDialogResult = DialogResult.OK Then
ShowUrl(od.PathOrUrl)
End If
End Sub

the above code is from some example on WebOChost control, Since there is
no
plan to use it and don't know how to fix it, I just want to ignore it
for
now

The reason I want to separate listing of error and warning is that I can
quickly address the errors first during developement and as long as the
number of the warning
in the warning tab reamins same I would ignore for now. they are either
from OLE structure or like the above - not critical now

I am trying come up with a quick runnable demo of concepts

Warning 2 Type of member 'cmdtextf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 5 12 myApp
Public Event CommandStateChange(ByVal Sender As Object, ByVal E As
AxSHDocVw.DWebBrowserEvents2_CommandStateChangeEve nt)

Warning 1 Access of shared member, constant member, enum member or
nested
type through an instance; qualifying expression will not be evaluated.
D:\data\IeI\gp\AppCom\myApp\FormmyApp.vb 674 29 myApp
Warning 2 Type of member 'cmdtextf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 5 12 myApp
Warning 3 Type of member 'cwActual' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 6 12 myApp
Warning 4 Type of member 'cwBuf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 7 12 myApp
Warning 5 Type of member 'cmdf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 14 12 myApp
Warning 6 Type of parameter 'cCmds' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 27 56 myApp
Warning 7 Access of shared member, constant member, enum member or
nested
type through an instance; qualifying expression will not be evaluated.
D:\data\IeI\gp\AppCom\myApp\OpenDialog.vb 162 27 myApp
Warning 8 Type of parameter 'E' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 15 67 myApp
Warning 9 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 20 65 myApp
Warning 10 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 21 73 myApp
Warning 11 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 22 74 myApp
Public Event TopLevelNavigateComplete2(ByVal sender As Object, ByVal
e
As AxSHDocVw.DWebBrowserEvents2_NavigateComplete2Even t)

Warning 12 Return type of function 'HtmlDocument' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 131 30 myApp
Public ReadOnly Property HtmlDocument() As mshtml.HTMLDocument
the below are used in webBrowser's OLE execute command like
Dim cmdt As IOleCommandTarget
Dim o As Object

' If the doc object isn't set to anything, or there's
' some bizarre error in accessing IOleCommandTarget,
' exit gracefully.
Try
cmdt = CType(doc, IOleCommandTarget)
cmdt.Exec(cmdGUID, MiscCommandTarget.ViewSource,
SHDocVw.OLECMDEXECOPT.OLECMDEXECOPT_DODEFAULT, o, o)
Catch
Throw (New Exception(Err.GetException().Message))
End Try

Warning 14 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 247 109 myApp
Warning 15 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 262 103 myApp
Warning 16 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 277 106 myApp


"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@e3g2000cwe.googlegro ups.com...
What kind of warnings are you getting? It might be a good idea to
address them, as warnings tend to turn into runtime errors.
>
Thanks,
>
Seth Rowe
>
GS wrote:
in VS .net vb 2005 express,
I failed to find the option for leaving out warning in the Errors
tab
but
still leave Warning in the warning tab listing.

Can someone give me some hints? thank you for your time and advice
>

Sep 13 '06 #5
If you have access to the source code then you could remove the Shared
keyword from the constant if you wanted, but like you said it doesn't
seem to matter. - I am obcessive compulsive when it comes to warning
messages : )

Thanks,

Seth Rowe

GS wrote:
thx very much.

I still don't get it. the method Private Sub openMI_Click(ByVal sender
As System.Object, ByVal e As System.EventArgs) Handles openMI.Click
Dim od As New OpenDialog()

Dim myDialogResult As DialogResult = od.ShowDialog(Me)
If myDialogResult = DialogResult.OK Then ' warning for
DialogResult.OK
ShowUrl(od.PathOrUrl)
End If
End Sub
I thought
DialogResult.OK is sort of constant (property, probably shared). I
actually tested the menu item and it did open a dialog for accepting an
valid URL and get ShowUrl() to navigate the browser to that successfully

So the warning is somewhat moot

"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@i3g2000cwc.googlegro ups.com...
That's a lot of warnings! I'll take a better look later but here's some
of the warnings you should fix:
Warning 1 Access of shared member, constant member, enum member or
nested
type through an instance;
Shared methods operate independantly from an instance's methods, and
aren't available to an instance of the class. This warning tells you
that you are trying to access a shared method and that it's not
evaluating the code. You'll want to call the method through the class
instead of an instance.
Warning 16 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.
Without seeing all your code it's difficult to tell you how to fix
this, but it could be as simple as replacing Dim o as Object with Dim o
as New Object, or by passing the value with ByVal if you're not
changing the value (or use a function if you need to change the value).
Warning 9 Type of parameter 'e' is not CLS-compliant.
I believe e is sort of a reserved parameter of the Type
System.EventArgs so using it as a different type may raise this warning
(just a guess)
The reason I want to separate listing of error and warning is that I can
quickly address the errors first during developement
If you open the error list tab, right below the title bar are three
toggle buttons:
{} Error, {} Warning, and {} Messages. Clicking on these will toggle
them on and off. However, you should always try to resolve any warning
messages that you can.

Hope that helps,

Seth Rowe
GS wrote:
Warning 1 Access of shared member, constant member, enum member or
nested
type through an instance;
qualifying expression will not be evaluated.
D:\data\IeI\gp\AppCom\myApp\FormmyApp.vb 674 29 myApp
>
the code
Private Sub openMI_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles openMI.Click
Dim od As New OpenDialog()
>
Dim myDialogResult As DialogResult = od.ShowDialog(Me)
If myDialogResult = DialogResult.OK Then
ShowUrl(od.PathOrUrl)
End If
End Sub
>
the above code is from some example on WebOChost control, Since there is
no
plan to use it and don't know how to fix it, I just want to ignore it
for
now
>
The reason I want to separate listing of error and warning is that I can
quickly address the errors first during developement and as long as the
number of the warning
in the warning tab reamins same I would ignore for now. they are either
from OLE structure or like the above - not critical now
>
I am trying come up with a quick runnable demo of concepts
>
Warning 2 Type of member 'cmdtextf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 5 12 myApp
Public Event CommandStateChange(ByVal Sender As Object, ByVal E As
AxSHDocVw.DWebBrowserEvents2_CommandStateChangeEve nt)
>
Warning 1 Access of shared member, constant member, enum member or
nested
type through an instance; qualifying expression will not be evaluated.
D:\data\IeI\gp\AppCom\myApp\FormmyApp.vb 674 29 myApp
Warning 2 Type of member 'cmdtextf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 5 12 myApp
Warning 3 Type of member 'cwActual' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 6 12 myApp
Warning 4 Type of member 'cwBuf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 7 12 myApp
Warning 5 Type of member 'cmdf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 14 12 myApp
Warning 6 Type of parameter 'cCmds' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 27 56 myApp
Warning 7 Access of shared member, constant member, enum member or
nested
type through an instance; qualifying expression will not be evaluated.
D:\data\IeI\gp\AppCom\myApp\OpenDialog.vb 162 27 myApp
Warning 8 Type of parameter 'E' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 15 67 myApp
Warning 9 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 20 65 myApp
Warning 10 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 21 73 myApp
>
>
Warning 11 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 22 74 myApp
Public Event TopLevelNavigateComplete2(ByVal sender As Object, ByVal
e
As AxSHDocVw.DWebBrowserEvents2_NavigateComplete2Even t)
>
Warning 12 Return type of function 'HtmlDocument' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 131 30 myApp
Public ReadOnly Property HtmlDocument() As mshtml.HTMLDocument
the below are used in webBrowser's OLE execute command like
Dim cmdt As IOleCommandTarget
Dim o As Object
>
' If the doc object isn't set to anything, or there's
' some bizarre error in accessing IOleCommandTarget,
' exit gracefully.
Try
cmdt = CType(doc, IOleCommandTarget)
cmdt.Exec(cmdGUID, MiscCommandTarget.ViewSource,
SHDocVw.OLECMDEXECOPT.OLECMDEXECOPT_DODEFAULT, o, o)
Catch
Throw (New Exception(Err.GetException().Message))
End Try
>
Warning 14 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 247 109 myApp
Warning 15 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 262 103 myApp
Warning 16 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 277 106 myApp
>
>
>
>
"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@e3g2000cwe.googlegro ups.com...
What kind of warnings are you getting? It might be a good idea to
address them, as warnings tend to turn into runtime errors.

Thanks,

Seth Rowe

GS wrote:
in VS .net vb 2005 express,
I failed to find the option for leaving out warning in the Errors
tab
but
still leave Warning in the warning tab listing.
>
Can someone give me some hints? thank you for your time and advice
Sep 13 '06 #6
GS
I usually would like to take care of the warnings too. as for
DialogResult.OK being shared I have no control as it was part of the
framework. I looked into the help before but could not figure out a
solution. As it turned out it was bogus warning.

The only thing I am serious concerned about is the one related to warning
#12, and the olecmd saveas function

' save a document into file specified by filespec string
Public Sub saveAs(ByVal strFileSpec As String)
Dim doOpt As SHDocVw.OLECMDEXECOPT
doOpt = SHDocVw.OLECMDEXECOPT.OLECMDEXECOPT_DONTPROMPTUSER

MsgBox("SHDocVw.OLECMDEXECOPT.OLECMDEXECOPT_DONTPR OMPTUSER=" &
vbCrLf & SHDocVw.OLECMDEXECOPT.OLECMDEXECOPT_DONTPROMPTUSER ,
MsgBoxStyle.Information, "SaveAs @debug")
Dim o As New Object()
Try
webBrowser.ExecWB(SHDocVw.OLECMDID.OLECMDID_SAVEAS , doOpt,
CType(strFileSpec, Object), o)
Catch
Throw (New Exception(Err.GetException().Message))
End Try
End Sub ' saveAs

It does saveas but with prompt which I dont want.
Aha, I fount the discrepancies. supposedly
public struct OLECMDTEXT
{
public uint cmdtextf;
public uint cwActual;
public uint cwBuf;
[MarshalAs(UnmanagedType.ByValTStr,SizeConst=100)]public char rgwz;
}
// I have trouble translating the above to vb
// tried
// <MarshalAs(UnmanagedType.ByValTStr,SizeConst=100)> public char rgwz;
// also
// <MarshalAs(UnmanagedType.ByValTStr,SizeConst As Integer =100)>public char
rgwz;
//
[StructLayout(LayoutKind.Sequential)]
public struct OLECMD
{
public uint cmdID;
public uint cmdf;
}
But the example source code has Long in place of unit
<StructLayout(LayoutKind.Sequential)_
Public Structure OLECMDTEXT
Public cmdtextf As UInt32
Public cwActual As UInt32
Public cwBuf As UInt32
Public rgwz As Char
End Structure

<StructLayout(LayoutKind.Sequential)_
Public Structure OLECMD
Public cmdID As Long ' <== should be Uint32
Public cmdf As UInt64 ' <== should be unit32 according to KB329014
End Structure
despite the changes, I still have the prompt popping up on me
"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@p79g2000cwp.googlegr oups.com...
If you have access to the source code then you could remove the Shared
keyword from the constant if you wanted, but like you said it doesn't
seem to matter. - I am obcessive compulsive when it comes to warning
messages : )

Thanks,

Seth Rowe

GS wrote:
thx very much.

I still don't get it. the method Private Sub openMI_Click(ByVal
sender
As System.Object, ByVal e As System.EventArgs) Handles openMI.Click
Dim od As New OpenDialog()

Dim myDialogResult As DialogResult = od.ShowDialog(Me)
If myDialogResult = DialogResult.OK Then ' warning for
DialogResult.OK
ShowUrl(od.PathOrUrl)
End If
End Sub
I thought
DialogResult.OK is sort of constant (property, probably shared). I
actually tested the menu item and it did open a dialog for accepting an
valid URL and get ShowUrl() to navigate the browser to that successfully

So the warning is somewhat moot

"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@i3g2000cwc.googlegro ups.com...
That's a lot of warnings! I'll take a better look later but here's
some
of the warnings you should fix:
>
Warning 1 Access of shared member, constant member, enum member or
nested
type through an instance;
>
Shared methods operate independantly from an instance's methods, and
aren't available to an instance of the class. This warning tells you
that you are trying to access a shared method and that it's not
evaluating the code. You'll want to call the method through the class
instead of an instance.
>
Warning 16 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.
>
Without seeing all your code it's difficult to tell you how to fix
this, but it could be as simple as replacing Dim o as Object with Dim
o
as New Object, or by passing the value with ByVal if you're not
changing the value (or use a function if you need to change the
value).
>
Warning 9 Type of parameter 'e' is not CLS-compliant.
>
I believe e is sort of a reserved parameter of the Type
System.EventArgs so using it as a different type may raise this
warning
(just a guess)
>
The reason I want to separate listing of error and warning is that I
can
quickly address the errors first during developement
>
If you open the error list tab, right below the title bar are three
toggle buttons:
{} Error, {} Warning, and {} Messages. Clicking on these will toggle
them on and off. However, you should always try to resolve any warning
messages that you can.
>
Hope that helps,
>
Seth Rowe
>
>
GS wrote:
Warning 1 Access of shared member, constant member, enum member or
nested
type through an instance;
qualifying expression will not be evaluated.
D:\data\IeI\gp\AppCom\myApp\FormmyApp.vb 674 29 myApp

the code
Private Sub openMI_Click(ByVal sender As System.Object, ByVal e
As
System.EventArgs) Handles openMI.Click
Dim od As New OpenDialog()

Dim myDialogResult As DialogResult = od.ShowDialog(Me)
If myDialogResult = DialogResult.OK Then
ShowUrl(od.PathOrUrl)
End If
End Sub

the above code is from some example on WebOChost control, Since
there is
no
plan to use it and don't know how to fix it, I just want to ignore
it
for
now

The reason I want to separate listing of error and warning is that I
can
quickly address the errors first during developement and as long as
the
number of the warning
in the warning tab reamins same I would ignore for now. they are
either
from OLE structure or like the above - not critical now

I am trying come up with a quick runnable demo of concepts

Warning 2 Type of member 'cmdtextf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 5 12 myApp
Public Event CommandStateChange(ByVal Sender As Object, ByVal E
As
AxSHDocVw.DWebBrowserEvents2_CommandStateChangeEve nt)

Warning 1 Access of shared member, constant member, enum member or
nested
type through an instance; qualifying expression will not be
evaluated.
D:\data\IeI\gp\AppCom\myApp\FormmyApp.vb 674 29 myApp
Warning 2 Type of member 'cmdtextf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 5 12 myApp
Warning 3 Type of member 'cwActual' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 6 12 myApp
Warning 4 Type of member 'cwBuf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 7 12 myApp
Warning 5 Type of member 'cmdf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 14 12 myApp
Warning 6 Type of parameter 'cCmds' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 27 56 myApp
Warning 7 Access of shared member, constant member, enum member or
nested
type through an instance; qualifying expression will not be
evaluated.
D:\data\IeI\gp\AppCom\myApp\OpenDialog.vb 162 27 myApp
Warning 8 Type of parameter 'E' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 15 67 myApp
Warning 9 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 20 65 myApp
Warning 10 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 21 73 myApp


Warning 11 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 22 74 myApp
Public Event TopLevelNavigateComplete2(ByVal sender As Object,
ByVal
e
As AxSHDocVw.DWebBrowserEvents2_NavigateComplete2Even t)

Warning 12 Return type of function 'HtmlDocument' is not
CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 131 30 myApp
Public ReadOnly Property HtmlDocument() As mshtml.HTMLDocument
the below are used in webBrowser's OLE execute command like
Dim cmdt As IOleCommandTarget
Dim o As Object

' If the doc object isn't set to anything, or there's
' some bizarre error in accessing IOleCommandTarget,
' exit gracefully.
Try
cmdt = CType(doc, IOleCommandTarget)
cmdt.Exec(cmdGUID, MiscCommandTarget.ViewSource,
SHDocVw.OLECMDEXECOPT.OLECMDEXECOPT_DODEFAULT, o, o)
Catch
Throw (New Exception(Err.GetException().Message))
End Try

Warning 14 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 247 109 myApp
Warning 15 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 262 103 myApp
Warning 16 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 277 106 myApp




"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@e3g2000cwe.googlegro ups.com...
What kind of warnings are you getting? It might be a good idea to
address them, as warnings tend to turn into runtime errors.
>
Thanks,
>
Seth Rowe
>
GS wrote:
in VS .net vb 2005 express,
I failed to find the option for leaving out warning in the
Errors
tab
but
still leave Warning in the warning tab listing.

Can someone give me some hints? thank you for your time and
advice
>
>

Sep 13 '06 #7
You've got me on that one. Maybe one of the gurus can help.

Good Luck!

Seth Rowe

GS wrote:
I usually would like to take care of the warnings too. as for
DialogResult.OK being shared I have no control as it was part of the
framework. I looked into the help before but could not figure out a
solution. As it turned out it was bogus warning.

The only thing I am serious concerned about is the one related to warning
#12, and the olecmd saveas function

' save a document into file specified by filespec string
Public Sub saveAs(ByVal strFileSpec As String)
Dim doOpt As SHDocVw.OLECMDEXECOPT
doOpt = SHDocVw.OLECMDEXECOPT.OLECMDEXECOPT_DONTPROMPTUSER

MsgBox("SHDocVw.OLECMDEXECOPT.OLECMDEXECOPT_DONTPR OMPTUSER=" &
vbCrLf & SHDocVw.OLECMDEXECOPT.OLECMDEXECOPT_DONTPROMPTUSER ,
MsgBoxStyle.Information, "SaveAs @debug")
Dim o As New Object()
Try
webBrowser.ExecWB(SHDocVw.OLECMDID.OLECMDID_SAVEAS , doOpt,
CType(strFileSpec, Object), o)
Catch
Throw (New Exception(Err.GetException().Message))
End Try
End Sub ' saveAs

It does saveas but with prompt which I dont want.
Aha, I fount the discrepancies. supposedly
public struct OLECMDTEXT
{
public uint cmdtextf;
public uint cwActual;
public uint cwBuf;
[MarshalAs(UnmanagedType.ByValTStr,SizeConst=100)]public char rgwz;
}
// I have trouble translating the above to vb
// tried
// <MarshalAs(UnmanagedType.ByValTStr,SizeConst=100)> public char rgwz;
// also
// <MarshalAs(UnmanagedType.ByValTStr,SizeConst As Integer =100)>public char
rgwz;
//
[StructLayout(LayoutKind.Sequential)]
public struct OLECMD
{
public uint cmdID;
public uint cmdf;
}
But the example source code has Long in place of unit
<StructLayout(LayoutKind.Sequential)_
Public Structure OLECMDTEXT
Public cmdtextf As UInt32
Public cwActual As UInt32
Public cwBuf As UInt32
Public rgwz As Char
End Structure

<StructLayout(LayoutKind.Sequential)_
Public Structure OLECMD
Public cmdID As Long ' <== should be Uint32
Public cmdf As UInt64 ' <== should be unit32 according to KB329014
End Structure
despite the changes, I still have the prompt popping up on me
"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@p79g2000cwp.googlegr oups.com...
If you have access to the source code then you could remove the Shared
keyword from the constant if you wanted, but like you said it doesn't
seem to matter. - I am obcessive compulsive when it comes to warning
messages : )

Thanks,

Seth Rowe

GS wrote:
thx very much.
>
I still don't get it. the method Private Sub openMI_Click(ByVal
sender
As System.Object, ByVal e As System.EventArgs) Handles openMI.Click
Dim od As New OpenDialog()
>
Dim myDialogResult As DialogResult = od.ShowDialog(Me)
If myDialogResult = DialogResult.OK Then ' warning for
DialogResult.OK
ShowUrl(od.PathOrUrl)
End If
End Sub
I thought
DialogResult.OK is sort of constant (property, probably shared). I
actually tested the menu item and it did open a dialog for accepting an
valid URL and get ShowUrl() to navigate the browser to that successfully
>
So the warning is somewhat moot
>
>
>
"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@i3g2000cwc.googlegro ups.com...
That's a lot of warnings! I'll take a better look later but here's
some
of the warnings you should fix:

Warning 1 Access of shared member, constant member, enum member or
nested
type through an instance;

Shared methods operate independantly from an instance's methods, and
aren't available to an instance of the class. This warning tells you
that you are trying to access a shared method and that it's not
evaluating the code. You'll want to call the method through the class
instead of an instance.

Warning 16 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.

Without seeing all your code it's difficult to tell you how to fix
this, but it could be as simple as replacing Dim o as Object with Dim
o
as New Object, or by passing the value with ByVal if you're not
changing the value (or use a function if you need to change the
value).

Warning 9 Type of parameter 'e' is not CLS-compliant.

I believe e is sort of a reserved parameter of the Type
System.EventArgs so using it as a different type may raise this
warning
(just a guess)

The reason I want to separate listing of error and warning is that I
can
quickly address the errors first during developement

If you open the error list tab, right below the title bar are three
toggle buttons:
{} Error, {} Warning, and {} Messages. Clicking on these will toggle
them on and off. However, you should always try to resolve any warning
messages that you can.

Hope that helps,

Seth Rowe


GS wrote:
Warning 1 Access of shared member, constant member, enum member or
nested
type through an instance;
qualifying expression will not be evaluated.
D:\data\IeI\gp\AppCom\myApp\FormmyApp.vb 674 29 myApp
>
the code
Private Sub openMI_Click(ByVal sender As System.Object, ByVal e
As
System.EventArgs) Handles openMI.Click
Dim od As New OpenDialog()
>
Dim myDialogResult As DialogResult = od.ShowDialog(Me)
If myDialogResult = DialogResult.OK Then
ShowUrl(od.PathOrUrl)
End If
End Sub
>
the above code is from some example on WebOChost control, Since
there is
no
plan to use it and don't know how to fix it, I just want to ignore
it
for
now
>
The reason I want to separate listing of error and warning is that I
can
quickly address the errors first during developement and as long as
the
number of the warning
in the warning tab reamins same I would ignore for now. they are
either
from OLE structure or like the above - not critical now
>
I am trying come up with a quick runnable demo of concepts
>
Warning 2 Type of member 'cmdtextf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 5 12 myApp
Public Event CommandStateChange(ByVal Sender As Object, ByVal E
As
AxSHDocVw.DWebBrowserEvents2_CommandStateChangeEve nt)
>
Warning 1 Access of shared member, constant member, enum member or
nested
type through an instance; qualifying expression will not be
evaluated.
D:\data\IeI\gp\AppCom\myApp\FormmyApp.vb 674 29 myApp
Warning 2 Type of member 'cmdtextf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 5 12 myApp
Warning 3 Type of member 'cwActual' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 6 12 myApp
Warning 4 Type of member 'cwBuf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 7 12 myApp
Warning 5 Type of member 'cmdf' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 14 12 myApp
Warning 6 Type of parameter 'cCmds' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\OleCommandTarget.vb 27 56 myApp
Warning 7 Access of shared member, constant member, enum member or
nested
type through an instance; qualifying expression will not be
evaluated.
D:\data\IeI\gp\AppCom\myApp\OpenDialog.vb 162 27 myApp
Warning 8 Type of parameter 'E' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 15 67 myApp
Warning 9 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 20 65 myApp
Warning 10 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 21 73 myApp
>
>
Warning 11 Type of parameter 'e' is not CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 22 74 myApp
Public Event TopLevelNavigateComplete2(ByVal sender As Object,
ByVal
e
As AxSHDocVw.DWebBrowserEvents2_NavigateComplete2Even t)
>
Warning 12 Return type of function 'HtmlDocument' is not
CLS-compliant.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 131 30 myApp
Public ReadOnly Property HtmlDocument() As mshtml.HTMLDocument
the below are used in webBrowser's OLE execute command like
Dim cmdt As IOleCommandTarget
Dim o As Object
>
' If the doc object isn't set to anything, or there's
' some bizarre error in accessing IOleCommandTarget,
' exit gracefully.
Try
cmdt = CType(doc, IOleCommandTarget)
cmdt.Exec(cmdGUID, MiscCommandTarget.ViewSource,
SHDocVw.OLECMDEXECOPT.OLECMDEXECOPT_DODEFAULT, o, o)
Catch
Throw (New Exception(Err.GetException().Message))
End Try
>
Warning 14 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 247 109 myApp
Warning 15 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 262 103 myApp
Warning 16 Variable 'o' is passed by reference before it has been
assigned a
value. A null reference exception could result at runtime.
D:\data\IeI\gp\AppCom\myApp\WebOCHostCtrl.vb 277 106 myApp
>
>
>
>
"rowe_newsgroups" <ro********@yahoo.comwrote in message
news:11**********************@e3g2000cwe.googlegro ups.com...
What kind of warnings are you getting? It might be a good idea to
address them, as warnings tend to turn into runtime errors.

Thanks,

Seth Rowe

GS wrote:
in VS .net vb 2005 express,
I failed to find the option for leaving out warning in the
Errors
tab
but
still leave Warning in the warning tab listing.
>
Can someone give me some hints? thank you for your time and
advice
Sep 13 '06 #8

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

Similar topics

16
by: squash | last post by:
a dumb question i had on my mind: Say you have a dynamically created web page . Isn't it more secure to write it in php since a visitor will not be able to tell it is dynamically created? But...
15
by: Good Man | last post by:
Hey there I have a dumb question.... Let's say i have a database full of 4000 people.... I select everything from the database by: $result = mysql_query("SELECT * FROM People");
3
by: ed | last post by:
I've just started working with .Net, so appologize for what is probably a really dumb question. Did Windows XP originally come with the .Net framework installed, and if so which version? ...
2
by: InvisibleMan | last post by:
Hi, I feel a little dumb for asking this (considering im writing TSQL) but there doesn't seem to be any definitive answers on the search engines... Okay I understand that if you open the ADO...
2
by: TGF | last post by:
How do you copy a String type into a native char buffer? Dumb question, but not sure how to do it :( TGF
5
by: Need Help | last post by:
This might be an extremely dumb question; I'm new to Visual C++, and am trying to use the simple Spooler API, OpenPrinter, but when I try to compile my source file, it says OpenPrinter is an...
10
by: Edward | last post by:
I've just taken over maintaining a system from a colleague who has left. I find the following line in her code: Dim params(2) As SqlClient.SqlParameter params(0) = New...
4
by: Stelrad Doulton | last post by:
Hi, Apologies if this isn't the correct forum. I am writing a communication solution (actually on the Compact Framework) based on HttpWebRequests hooking up with custom handlers on the...
2
by: Bill Nguyen | last post by:
I would like to add a new VB.NET project using the same folder being used by another project so that I can share several forms already creaded by the other project. However, .NET created a new...
6
by: Robert Dufour | last post by:
What is the meaning of the word marshal and unmarshal in plain english as applied to an exe file? Does it mean the application has started and ended? Thanks for any help, Happy new year, Bob
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
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...

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.