Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mrrrl

  1. mrrrl

    When or when not to use/build a class?

    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.
  2. mrrrl

    When or when not to use/build a class?

    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...
  3. mrrrl

    When or when not to use/build a class?

    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
  4. mrrrl

    Problem installing GLIB for gnubg

    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@...
  5. mrrrl

    Problem installing GLIB for gnubg

    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...
  6. mrrrl

    Problem installing GLIB for gnubg

    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.
  7. mrrrl

    Problem installing GLIB for gnubg

    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...
  8. mrrrl

    Code runs in IE but not Mozilla??

    Thanks, my mistake...
  9. mrrrl

    Code runs in IE but not Mozilla??

    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">...
  10. mrrrl

    Code runs in IE but not Mozilla??

    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">...
  11. mrrrl

    Fading Text output problem

    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?
  12. mrrrl

    Fading Text output problem

    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?
  13. mrrrl

    Passing a variable to a stored procedure

    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.
  14. mrrrl

    Passing a variable to a stored procedure

    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"...
  15. mrrrl

    Passing a variable to a stored procedure

    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"...

Part and Inventory Search

Back
Top