• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Recent content by Inalende

  1. I

    Help with Margins

    er sorry, chang ethe width to 109px from 95px
  2. I

    Help with Margins

    Try this: make the UL width:100% and change the .menu ul li a, .menu ul li a:visited width to 95px
  3. I

    help student with subroutine

    I'm not sure how to explain it clearly, but your methods in your main are wrong for the reason that you need to just pass in the variable/value and not the classifier (double, char). So take the double/char part off your calcGrade and display_info and take the void off yoru display_info. The...
  4. I

    Opentype fonts

    Thanks for the reply, I'll check out LaTeX. Also with Java, I think you have to manually call the tables or something because there's no method that I've found that will just handle an OpenType font with a PostScript outline, but if it had a Type1 outline, it would handle it. Also, maybe I...
  5. I

    Opentype fonts

    Does anyone know if any languages support printing text using an opentype font with a postscript outline? I've tried in Java, but can't get it to work, and haven't seen anything saying other languages can support it. Basically I need to print a parking permit with different fonts depending...
  6. I

    INSERT INTO and SELECT statments

    Not sure if this will work for Office 97 because it's too old for me to know, but the proper syntax for what you're trying to do is as follows: SELECT column_name(s) INTO newtable [IN externaldatabase] So something like SELECT [Current Customers].[Customer ID] INTO([Cancelled...
  7. I

    SQL Help

    I believe it's the syntax for more than 1 join, not sure exactly why but might be something like splitting the joins apart.
  8. I

    SQL Help

    Try this for the joins: SELECT tblJob.JobID, tblJob.JobCategoryID, tblJob.LocationID, tblJob.JobCompany, tblLocation.LocationID, tblLocation.LocationState, tblLocation.LocationName, tblJobCategory.JobCategoryID, tblJobCategory.JobCategoryName FROM (tblJob INNER...
  9. I

    Activex Controls and SP2: Printing from Webpage

    This is my first post, actually just registered today, but here's my question: Is there any way around the Windows SP2 security to prevent you from printing a page without the print dialog. We have kiosk computers set up that when a user clicks on purchase or whatever it will print their...
Back
Top