ca8msm & chrissie1, thanks for your answers. They helped clear up some of the when and why, criticism aside. And no, I don’t fully understand OOP, hence the question, which the books don’t fully cover.
Well, I was not looking for career advice. I believe this forum was and still is, for asking questions on VB.net.
Let me rephrase the question. When do you make a class? There must be some guidance on when to use/make a class. I can't see making everything into a class. Every book I have read...
Coming from VB6 and trying to figure out when to use or build a class. Using modules in VB6 was great, so do I convert or build a class where I once used a module?
TIA
Here is whats in /usr/local/lib
[root@linux1 etc]# cd /usr/local/lib
[root@linux1 lib]# ls
gettext/ libgettextlib.so@ libglib-2.0.la* libgobject-2.0.so@
glib-2.0/ libgettextpo.a libglib-2.0.so@ libgobject-2.0.so.0@...
Thanks again. Here is what i came up with
[root@linux1 bin]# ls /usr/local/bin/ |grep glib-config
[root@linux1 bin]# locate glib-config
warning: locate: could not open database: /var/lib/slocate/slocate.db: No such file or directory
warning: You need to run the 'updatedb' command (as root) to...
Thanks for getting back to me. I did what you stated and I still get the same error.
How do I find out where glib was installed to?
I am running Mandrake 10.1.
I am tryin to install GNU Backgammon, but it comes up with this error when I run ./configure :
checking for GLIB - version >= 2.0.0... no
*** Could not run GLIB test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that...
I found this code to do exactly what I want to do, which is fade the background from black to white upon loading a page. But I can't get it to work using Foxfire, works great in IE.
In Foxfire it just goes to white, no fading that I can see.
Any ideas?
TIA
<script language="Javascript">...
I found this code to do exactly what I want to do, which is fade the background from black to white upon loading a page. But I can't get it to work using Foxfire, works great in IE.
In Foxfire it just goes to white, no fading that I can see.
Any ideas?
TIA
<script language="Javascript">...
OK, did some more testing, its got to do with the alpha. I moved the last key frame position. The text moves but it is solid no fading. I also tried and made it a movie vice a graphic, same results. Also tried IE and Firefox, same results.
Any other ideas?
Did some fading text, looks great on the stage, but publish test or publish it doesn't work. Made sure that browser has latest Flash installed.
Searched and found that this is a commom problem with no good answer.
Any ideas why it would not work?
Yes to both.
Here is the stored procedure:
CREATE PROCEDURE dbo.NewSelectCommand_Test_1
@name text
AS
SET NOCOUNT ON;
SELECT au_id, au_lname, au_fname, phone, address, city, state, zip, contract FROM authors WHERE (au_lname like @name)
And I am connecting to the same database.
Anyone have ay ideas why I am getting this error?
Too many arguments were supplied for procedure NewSelectCommand_Test_1.
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
SqlDataAdapter1.SelectCommand.Parameters.Add("@name"...
I think I am on the right course, I tried this using your answer:
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
SqlDataAdapter1.SelectCommand.Parameters.Add("@name", SqlDbType.VarChar, 40).Value = "Ringer"...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.