Problems setting HTML font

Hello people.
I'm having troubles setting the font face in an html table
that I am displaying in a text member.
Here is what I am trying:
-- set font for HTML
put "<FONT FACE="ARIAL">"&RETURN after htext
I'm getting an error message claiming that I am using a
variable before it has been assigned (I assume that it thinks that
ARIAL is a variable). Am I right in thinking that the extra
quotation marks aren't helping?
Any tips?

That doesn't seem to be doing the trick.
Here is the complete Lingo for the HTML table (using one of
Sean Wilson's suggestions ):
-- display a list of all the students using HTML
on displayDatabase
-- HTML header
htext = "<HTML><BODY
BGCOLOR=#FFFFFF>"&RETURN -- need to specify font for table
display
-- set font for HTML
put "<FONT FACE='ARIAL'>"&RETURN after htext
-- put the table headings
put
"<TABLE><TR><TH>Username</TH><TH>Password</TH></TR>"\
&RETURN after htext
-- loop through database and create table rows
repeat with i = 1 to gDatabase.count
put "<TR>" after htext
put "<TD>" & gDatabase.getPropAt(i) &
"</TD>" after htext
put "<TD>" & gDatabase[gDatabase.getPropAt(i)]
& "</TD>" after htext
put "</TR>"&RETURN after htext
end repeat
-- close out table and HTML
put "</TABLE></BODY></HTML>" after htext
-- place HTML in text member
member("Student Database Display").html = htext
end
Any ideas?

Similar Messages

  • JEditorPane HTML font style changing problems

    I have tried changing the font size using the action:
    StyledEditorKit.FontSizeAction("12", 12)
    but that seems to have problems. When I change it on the editor and write and re-read the change html the font size does not look the same.
    Is there a bug in changing the font size of htmls using the JEditorPane or JTextPane component?
    How/What does the "font-change-bigger" or "font-change-smaller" work with in the HTMLEditorKit? Should I be using these members somehow instead?

    Hello,
    When you use HTMLEditorKit, you can not specify font out size of HTML. For Example, use FONT tag in html to set your font. There are many ways to change font in html. tags like h1, h2 etc..
    O.K.

  • I'm using firefox 6.0.2 It's making problem with Bangla font ONLY on FACEBOOK others bangli website FORNT SIZE are OK. On the FACEBOOK it shows Bangla font in a very / Too small! I change font SIZE in firefox setting but i can't solve. Pls HELP me

    I'm using firefox 6.0.2 It's making problem with Bangla font ONLY on FACEBOOK others bangli website FORNT SIZE are OK. On the FACEBOOK it shows Bangla font in a very / Too small! I change font SIZE in firefox setting but i can't solve. Pls HELP me ..

    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages
    You can use an extension to set a default font size and page zoom on web pages.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • Problems setting 'allow HTML snippet insertion' in Contribute 4

    I am trying to set the administrator option to allow insertion of HTML snippets (as described here). But the dialog box to change the settings does not include an "Allow HTML Snippet Insertion" checkbox.
    Any advice? Is this to do with the version of Contribute I'm using? Or is there some other administrator setting I need to set first?

    Hi ravster.
    Thanks for the suggestions. I had read the Arch NFS HowTo and did as you suggested get rcpinfo for the server machine. The Libranet NFS server is configured rather different since the NFS daemons are built into the default kernel.
    Since I needed to complete the transfer immediately, I gave up for now trying to set up NFS and used netcat (!) instead to transfer the files from the Libranet laptop to the Arch workstation. The laptop will be converted to Arch Linux soon so I think I'll be able to clear things up soon.  I haven't had any problems setting up NFS with homogeneous (i.e., all Arch or all Libranet) computer combinations.
    Thanks again.
    Win

  • [JLabel] HTML + Font

    Hi,
    I have a JLabel in which I use HTML to color my text (the color is not the same for all the text)?
    ex :
    JLabel label = new JLabel("<html><body>font color='blue'>hi</font> to <font color='red'>you</font></body></html>);
    Then, I set a customized font that I load dynamically:
    InputStream inputFont = this.getClass().getResourceAsStream("my_font.ttf");
    Font font = Font.createFont(Font.TRUETYPE_FONT, inputFont);
    MY_FONT = font.deriveFont(24f);
    label.setFont(MY_FONT);
    *My problem is:*
    When I do that, the font is not applied (problably because of HTML font tags). I just see for a moment my font with the HTML tags, and when the HTML is parsed, the default font comes back. I've tried to change <font> by <span>, it does just the same)
    When I remove HTML tags from my JLabel, like new JLabel("plop") and apply my customized font, I have no problem and my font is applied (but I don't have the colors that I want).
    Problem is I want both of it! My customized font AND colors.
    Do you know how to do that?
    I hope I made myself clear,
    Thanks :)

    I've been playing with this a bit more with very peculiar results.
    Run the code. Without resizing the window, scroll down. Many fonts (Symbol, Wingdings ...) are rendered as square boxes in the right (non-html) list but the font names are readable in the left (html) list.
    Now maximize the window and look again. What's going on here?import java.awt.*;
    import javax.swing.*;
    public class FontHtmlProblem {
       public static void main(String[] args) {
          SwingUtilities.invokeLater(new Runnable() {
             @Override
             public void run() {
                new FontHtmlProblem().makeUI();
       public void makeUI() {
          GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
          Font[] fonts = ge.getAllFonts();
          JList listHtml = new JList(fonts);
          listHtml.setCellRenderer(new DefaultListCellRenderer() {
             @Override
             public Component getListCellRendererComponent(JList list,
                   Object value, int index,
                   boolean isSelected, boolean cellHasFocus) {
                Font thisFont = (Font) value;
                setFont(thisFont.deriveFont(16f));
                setText("<html><body>" + thisFont.getName() + "</body></html>");
                return this;
          JScrollPane scrollHtml = new JScrollPane(listHtml);
          scrollHtml.setColumnHeaderView(new JLabel("HTML"));
          JList listPlain = new JList(fonts);
          listPlain.setCellRenderer(new DefaultListCellRenderer() {
             @Override
             public Component getListCellRendererComponent(JList list,
                   Object value, int index,
                   boolean isSelected, boolean cellHasFocus) {
                Font thisFont = (Font) value;
                setFont(thisFont.deriveFont(16f));
                setText(thisFont.getName());
                return this;
          JScrollPane scrollPlain = new JScrollPane(listPlain,
                JScrollPane.VERTICAL_SCROLLBAR_NEVER,
                JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
          scrollPlain.setColumnHeaderView(new JLabel("Plain"));
          scrollPlain.getVerticalScrollBar().
                setModel(scrollHtml.getVerticalScrollBar().getModel());
          scrollPlain.removeMouseWheelListener(
                scrollPlain.getMouseWheelListeners()[0]);
          scrollPlain.addMouseWheelListener(
                scrollHtml.getMouseWheelListeners()[0]);
          JFrame frame = new JFrame();
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.setLayout(new GridLayout(1, 2));
          frame.add(scrollHtml);
          frame.add(scrollPlain);
          frame.pack();
          frame.setLocationRelativeTo(null);
          frame.setVisible(true);
    }db

  • JEditorPane displays html font very large.

    I have a JEditroPane embedded into a JScrollPane. The url for the EditorPane is an html file. It laods and displays. However, my html font is set to 8 but what is displayed appears to be at 12 point or higher. Is there a way to alter the font size of the html text displayed inside the JEditorPane?
    Thanks.

    Can anyone explain how to change the font size for the
    entire html document set to the JEditorPane? The
    default size is too large and any attmept to perform a
    setFontSize fails.
    Thanks.I'm posting this to save you time by letting you give up hope on finding some simple solution to your problem.
    There may not be any.
    I've just tried loading my html file into a JEditorPane and all characters appear in default regular size. It seems JEditorPane is not processing any stylesheets info which I use to define all text attributes.
    The API document says:
    "text/html
    HTML text. The kit used in this case is the class javax.swing.text.html.HTMLEditorKit which provides HTML 3.2 support. "
    3.2 is pretty old, isn't it? What's the HTML version you used to create your HTML files?
    How do you set font size in your html files? A sample html file from Sun for a Text demo program uses the following and it seems to work:
    <font size=-2>from</font> a
    <font size=+2">URL</font>
    If you decide to modify your existing HTML files, use the above format.
    (Wait! Why do we need to modify perfectly working html files to make them appear normal in Java programs? It should be the other way around! :D)

  • Problems setting up JDBC

    I recently downloaded mysql Connector for my project.
    However, I have problems setting it up.
    When I run my program, It gives me a class not defined error.
    System.out.println("Registering Driver...");
                   Class.forName("com.mysql.jdbc.Driver").newInstance();
    System.out.println("Connected to database");
    System.out.println("Creating Connection");
    connection= DriverManager.getConnection("jdbc:mysql://localhost:8080/neuis");
    System.out.println("Connection created");
    catch(Exception ex)
    System.out.println("Error in loading jdbc Driver: "+ex);
    ex.printStackTrace();
    I have put the jar file of the JDBC Bridge in a folder
    C:\Drivers\Sql Connector
    I have also added the absolute path of the jar to the system classpath
    The value put in is:
    C:\Drivers\Sql Connector\mysql-connector-java-3.1.10-bin.jar.
    I am not sure what the problem is because I was told by the API that this was all I needed to do. Are there any other files I need to include with the jar file? Also, Is there a specific folder I must put it in?
    Thank you in advance.

    Hi,
    Take a look at the below link
    http://www.cs.nott.ac.uk/TSG/manuals/databases/mysql/jdbc.html
    may help you to setting up the jdbc with mysql
    regards
    MJ

  • Problems setting up Time Machine using a network drive

    I am having problems setting up TimeMachine on my Mac Mini to work with a WD MyBookLive network drive.  The network drive came with a TimeMachineBackup shared folder preconfigured.  When I first connected the drive to the router and turned on TimeMachine, the TimeMachineBackups appeared as an option when I did "Select Backup Disk" from TimeMachine Preferences.
    I managed to successfully connect to the drive and start a backup running.  However the backup hit a problem and I started getting an error that the "disk was already in use".  I therefore tried to remove the disk to try and start again.  Hoever when I now do go into "Select Backup Disk" from TimeMachine Preferences the shared folder on the drive no longer apperas and I only get the option to serach for an Time Capsule.
    If I go into Finder, the MyBookLive shows up as a connected Device with all its shared folders showing (including the TimeMachineBackup folder)  and my Mac is definitely connected to the drive.  How do I get the Drive & TimeCapsuleBackup shared folder to reappear in TimeMachine Preferences so that I can select it as the destination for my backups?

    Check around the forum, you are one of very very many. It doesn't matter what WD say, do you see a Certified by Apple notice on it?
    Go here, most authoritative site about Time Machine you can find. http://pondini.org/OSX/Home.html
    Specific info on Network Drives are here http://pondini.org/TM/2.html
    Post back here and ask for Pondini if you need more.
    You can also read some tales of woe here

  • Formatting issues: when I open a msg, the font is sooo small you need a magnifier to read it. How can I set the font size to one I can easily read?

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    I have various formatting issues:
    a. When I open a msg from my web browser (Cablevision), the font is sooo small I need a magnifier to read it. How can I set the font to a size I can easily read?
    b. When I forward msgs, the text gets all distorted and I need to clean it up (some symbols, lots of spaces between words). How can this be fixed?
    c. When I want to tell someone about a website, I cannot type the URL in so that all they have to do is click on it. How can this be fixed?
    d. When I open messages, the text opens in a small window and covers the "Show Images" button. Why?
    == This happened
    ==
    Every time Firefox opened
    == Ever since I started using Firefox (a few months ago)
    ==
    '''Troubleshooting information'''
    I didn't find any results
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows 7
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
    == Plugins installed
    ==
    *-nphpclipbook
    *Office Plugin for Netscape Navigator
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Default Plug-in
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *The Hulu Desktop Plugin allows Hulu.com to integrate with the Hulu Desktop application.
    *Shockwave Flash 10.0 r45
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *iTunes Detector Plug-in
    *3.0.40624.0
    *NPWLPG
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers

    The text editor is the text area that you use on the webmail (Yahoo, Hotmail) website to create a new mail.
    You can compare that with the ''Post new message'' text area that you use to create a new post on this forum.
    Just above the text area that you use to enter the message text there is usually a button bar with buttons that allows some text formatting like Bold and Italic and can also include a button to make a clickable hyperlink.
    Check the tooltip of each button by hovering with the mouse over each button.
    Make Link - https://addons.mozilla.org/firefox/addon/142

  • How to set different font for a particular row in jtables?

    How to set different font size and font type for a particular row in jtable?

    More than enough sample code here:
    [http://java.sun.com/docs/books/tutorial/uiswing/components/table.html]
    db

  • How to set the font of a table header?

    Hi,
    Is there a way to set the font of a table header? I do not mean how to change the header word but the font.
    Thanks
    Stephen

    Hi,
    for combobox in a table (I assume the combobox is shown un column 2, thus the index 1)
    oracle.jbo.uicli.jui.JUTableLOVEditor lovCellEditor = (oracle.jbo.uicli.jui.JUTableLOVEditor) jTable1.getColumnModel().getColumn(1).getCellEditor();
    lovCellEditor.getComponent().setFont(new Font("Arial",Font.BOLD,13));
    For the LOV panel this is a bit more complicated because you need to create a custom LOV panel as described in http://www.oracle.com/technology/products/jdev/howtos/10g/jclientlov/customadfjclientlovpanel.html
    I filed a bug today to expose the component on a LOV to public so they can be modified
    Frank

  • How can i set my fonts to keep webpages viewable they keep changing size?

    i set my fonts with tools. but when i go to webpages it will show very small.
    How can i keep my webpages set to a certain size font to make it viewable?

    You may need to disable the hardware acceleration if you have a problem with font display.
    Tools > Options > Advanced > General > Browsing: [ ] "Use hardware acceleration when available"
    You can increase the String pref <b>layout.css.devPixelsPerPx</b> from 1.0 to 2.0 in 0.1 steps to see what works best.<br />
    In current Firefox versions this pref is a String value parsed to a float and allows to fine tune the dimensions of all elements (user interface and web pages) more precisely.
    See http://kb.mozillazine.org/about%3Aconfig

  • Problem setting up WDS with MSI RG54GS2 & Motorola WR850g

    Problem setting up WDS with WR850g & MSI RG54GS2
    Hi,
    I'm trying to bridge 2 routers: Motorola WR850g & MSI RG54GS2 .
    I set the MSI as the main router (it works better for me as a router than the Moto), and the Moto is the repeater. I have set it up exactly as the guide on Broadbandreports.com for the Motorola , and on Tom's Networking http://www.tomsnetworking.com/2004/04/14/how_to_wds_bridge/
    The Moto sees the MAC of the MSI (Status is UP), the MSI doesn't have a page that shows WDS MACs . I know the routers are connected because when I connect a laptop to the Moto wireless network, it gets an IP (and the DHCP on the Moto is disabled) and the default gateway of the connection is the IP of the main (MSI) router.
    The problem is I can't surf anywhere. I can't even ping the MSI router - which should be possible if the WDS works properly.The Moto Wireless Bridge Operation is set properly to Access Point/Wireless Bridge .
    Can anyone solve this?
    Thanks.

    David, welcome to the discussions.
    Are you refering to Airport Extreme Setup as the Extreme base.
    Or are you using a 3rd party Router as your primary Base, or the Express as the primary base.
    Read the supplied link, Not all 3rd party routers are WDS compatible.
    http://discussions.apple.com/thread.jspa?messageID=2785566
    Who is you Internet Service Provider?
    What brand and Model Modem did they furnish?
    Are you using Dial-Up...DSL...or Cable?
    http://docs.info.apple.com/article.html?artnum=303595
    See if there is any help from this link.
    http://discussions.apple.com/thread.jspa?messageID=607414
    Cheers Don

  • Problem with computing Font width while printing in Landscape mode

    I have an application which prints a table and fills it with some text. I render it on a JComponent using the drawString(theStr, xPos, yPos) and the drawLine(rigtX, topY, rigtX, botY) methods in Graphics2D object. I want to take print-out of the table and also store the image of the table in, say, jpeg format. The print can be in Landscape or Portrait format depending on the size of the JComponent, which the user sets depending on the table size and the font size.
    I have a paintTable( ) method which contains all the drawString( ) and drawLine( ) methods. This method is called from the paint( ) method of the JComponent to achieve normal rendering. The same method is called to get a BufferedImage of the Table. The same method is further called from the implementation of print( ) method from the Printable interface.
    In the paintTable( ) method, I compute the pixel coordinates of the table grid lines and the texts positions in the tables depending on the font width and height obtained as shown below:
            // Set the Font             
            Font theFont = graphics.getFont();
            theFont = theFont.deriveFont((float)TableFontSize); // TableFontSize is an int of value 8,9,10 etc.
            graphics.setFont(theFont);
            // Get the Font Size      
            FontRenderContext frc = graphics.getFontRenderContext();
            float width = ((Rectangle2D.Float)theFont.getMaxCharBounds(frc)).width;
            float height = ((Rectangle2D.Float)theFont.getMaxCharBounds(frc)).height;
           System.out.println("FONT WIDTH HEIGHT [" + width + "," + height + "] ");I am getting the following value of width and height when the above print statement is executed with a value of 9 for TableFontSize. FONT WIDTH HEIGHT [18.0,11.3203125]
    The problem I face is :
    While Printing in Landscape mode the value of the 'width' variable printed as given above is becoming negative. Kindly see the values: FONT WIDTH HEIGHT [-9.37793,11.3203125]. This is happening ONLY DURING PRINTING IN LANDSCAPE MODE. This makes my calculation of table grid line coordinates and text positions completely wrong and the table goes out of place.
    Kindly note that, there is no problem during normal rendering and BuffereredImage creation and also while printing in Portrait mode. The problem happens irrespective of Linux or Windows. The value of 'height' is always correct.
    Kindly let me know: If the method I use to get the 'width' and 'height' is correct ? Is there any better way which will work fine in all platforms under all circumstances.
    Kindly help me to sort out this issue.
    Thanks a lot in advance and best regards
    -acj123

    I have extracted the relevent code and made a stand alone program.
    The complete code is enclosed; including that for printing.
    Kindly go through the same and help me to solve this problem.
    Thanks again and regards
    -acj123
    import java.awt.*;
    import java.util.*;
    import java.awt.geom.*;
    import java.awt.event.*;
    import java.awt.print.*;
    import java.awt.print.PrinterJob;
    import java.awt.font.FontRenderContext;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    import javax.print.attribute.*;
    import javax.print.attribute.standard.*;
    public class MyCanvas extends JComponent implements Printable, ActionListener
        int TableFontSize = 9;
        private Graphics2D graphics;
        public MyCanvas(JFrame frame)
            frame.getContentPane().setLayout(new BorderLayout());
            frame.getContentPane().add(this, BorderLayout.CENTER);
            frame.setJMenuBar(createMenuBar());
        public JMenuBar createMenuBar()
            JMenuBar menubar = new JMenuBar();
            JButton printButton = new JButton("Print");
            menubar.add(printButton);
            printButton.addActionListener(this);
            JButton imageButton = new JButton("Image");
            menubar.add(imageButton);
            imageButton.addActionListener(this);
            JButton drawButton = new JButton("Draw");
            menubar.add(drawButton);
            drawButton.addActionListener(this);
            JButton closeButton = new JButton("Close");
            menubar.add(closeButton);
            closeButton.addActionListener(this);
            return menubar;
        public void actionPerformed(ActionEvent evt)
            String source = evt.getActionCommand();
            if  (source.equals("Close"))
                System.exit(0);
            if  (source.equals("Image"))
                getImage();
                return;
            if  (source.equals("Print"))
                printCanvas();
                return;
            if  (source.equals("Draw"))
                repaint();
                return;
        public BufferedImage getImage()
            Dimension dim = getSize();
            BufferedImage image = (BufferedImage)createImage(dim.width, dim.height);
            this.graphics = (Graphics2D)image.createGraphics();
            System.out.print("\nImage ");
            paintCanvas();
            return image;
        public void paint(Graphics graph)
            this.graphics = (Graphics2D)graph;
            System.out.print("\nDraw  ");
            paintCanvas();
        public void paintCanvas()
            // Set the Font      
            Font theFont = graphics.getFont();
            theFont = theFont.deriveFont((float)TableFontSize);
            graphics.setFont(theFont);  
            // Get the Font Size       
            FontRenderContext frc = graphics.getFontRenderContext();
            float width = ((Rectangle2D.Float)theFont.getMaxCharBounds(frc)).width;
            float height= ((Rectangle2D.Float)theFont.getMaxCharBounds(frc)).height;
            System.out.print("FONT WIDTH HEIGHT [" + width + ", " + height + "] ");
            System.out.print(" SIZE "+ super.getWidth() +", "+ super.getHeight());
        public int print(Graphics graph, PageFormat pageFormat, int pageIndex)
            throws PrinterException
            if (pageIndex > 0) return Printable.NO_SUCH_PAGE;
            this.graphics = (Graphics2D)graph;
            graphics.translate(0,0);
            paintCanvas();
            return Printable.PAGE_EXISTS;
         *  Interface method for Printing the Canvas on Paper
        public void printCanvas()
            PrinterJob printJob =  PrinterJob.getPrinterJob();
            printJob.setPrintable(this);
            PrintRequestAttributeSet attr = new HashPrintRequestAttributeSet();
            if (super.getWidth() < super.getHeight())
                System.out.print("\nPrint PORTRAIT ");
                attr.add(OrientationRequested.PORTRAIT);
            else
                System.out.print("\nPrint LANDSCAPE ");
                attr.add(OrientationRequested.LANDSCAPE);
            Dimension dim = getSize();
            attr.add(new MediaPrintableArea(1, 1, dim.width, dim.height,
                                                  MediaPrintableArea.MM));
            attr.add(new JobName("MyCanvas", Locale.ENGLISH));
            attr.add(new RequestingUserName("acj123", Locale.ENGLISH));
            if (printJob.printDialog(attr))
                try
                    printJob.print(attr);
                catch(PrinterException ex)
                    ex.printStackTrace();
        public static void main(String[] arg)
            JFrame frame = new JFrame("MyFrame");
            MyCanvas canvas = new MyCanvas(frame);
            frame.setSize(800, 600);
            frame.setVisible(true);
    }

  • Setting chapter font in printed document

    When I create printed documentation, the font used for the
    chapter title is the same as the font used for the titles of the
    topics in that chapter. I'd like the chapter title to be in a
    larger font, but I can't find a way to set it. How do you set the
    font of the chapter titles in the printed documentation?
    I'm using RoboHTML 6.0.

    When RH generates the printed document it will apply Heading
    1 to the chapters, nothing you can do about that.
    It will also apply headings in your topics as you have set
    them out so the topic title will also be Heading 1. You can clear
    the Maintain HTML level check box in which case all headings in the
    source will be bumped down 1. So Heading 1 in source will be
    Heading 2 in Word. Knowing that, you can adjust your styles
    accordingly.
    Take a look at the topic on Printed Documentation on my site.

Maybe you are looking for

  • Error while starting the user management service.

    Hi Experts, We have deployed two DCs from other project environment. After deploying the sda files, i need to satrt the service file in system config--> service config, while satrting the service iam getting the below error. 1.5 #00110A9AC47100280000

  • Creation of Performance appraisal template.

    hello seniors, right now i am configuring Performance appraisal, 75% configuration complete (i.e., appraisal scales, qualification groups, qualifications)  but i dont know how to create Template & how to release. thank you, praneeth kumar

  • Database in Suspect Mode in SQL Server 2000 Log Shipping Environment

    Hi All We have movement of SQL Server 2000 at physical level. We have disable jobs and stop Agent and SQL Server services. After moved the server we have started the server and then start SQL Server 2000 services. All of databases in SUSPECT mode. Fi

  • LaCie ext drives not starting up on boot

    I have 4 LaCie drives that do not automatically turn on mount when I power up my tower: 2TB LaCie BIGGER U2&F4&F8 EXTR 7200RPM 16MB US Big Disk d2 Hard Drives When I have connected my older 17" PowerBook, the drives start up on boot and turn off at s

  • About 'Open With' on bridge CS6

    Running CS6 tools from the 'cloud' package My goal is to have two options under Bridges' Right click/open with list. 1) photoshop CS6 2) Image Data Converter (Sony's raw converter for *.arw) I see no way to effect this.  Using windows settings, I can