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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. TheKeeya

    CSS not ok in IE, Mozilla/netscape ok.

    The problem may be that you are using "opcion" and "menu" as IDs and not a classes. IE only recognized and id once (either the first or last one, I forget which). Try replacing id="opcion" and id="menu" with class="opction" and class="menu". Lastly, I'm not sure if "#menu li" is recognized...
  2. TheKeeya

    Maddening CSS issue

    You could simplify things as well as cut down on code by simply declaring your font color in style sheet and deleting the <font> tags for your links <style type="text/css"> a:link{text-decoration:none; color: red or whatevercolor} a:visited{text-decoration:none; color: red }...
  3. TheKeeya

    STL and Managed Classes

    And I use STL with Managed VC+++ classes or am I limited to only unmanaged classes and objects?
  4. TheKeeya

    Size of .js files vs speed

    Does a really large javaScript file slow down the load speed of a webpage? Also, does it take longer to load a large .js file vs. multiple small files?
  5. TheKeeya

    Picking a compiler for developing graphical programs in C or C++

    I'm trying to decide which compiler to get. I'd like to start developing graphical programs in C/C++ that will run in Windows. I am trying to determind if one compiler over another will make my life easier: MS Visual C++, Borland, DJGPP, etc. Any input would be appreciated.
  6. TheKeeya

    How do I increment the pointer to an arrayed structure?

    I have a structure that is an array (struct tag my_struct[10]). I am trying to pass a pointer to that structure to a function (void myfunction(struct tag *p)). Inside the function I try to reference the pointer to the structure. It works well for (p->.value) which points to mystruct[0].value...

Part and Inventory Search

Back
Top