Java FX Dynamic TableView

Hi
I have a problem with dynamic TableView and the error is:
SEVERE: javafx.scene.control.Control loadSkinClass Failed to load skin 'StringProperty [bean: TableRow[id=null, styleClass=cell indexed-cell table-row-cell], name: skinClassName, value: com.sun.javafx.scene.control.skin.TableRowSkin]' for control TableRow[id=null, styleClass=cell indexed-cell table-row-cell]
package sample;
import java.sql.*;
import java.util.Properties;
import javafx.application.Application;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.scene.Scene;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableColumn.CellDataFeatures;
import javafx.scene.control.TableView;
import javafx.stage.Stage;
import javafx.util.Callback;
public class Insert_TableView{
   private ObservableList<ObservableList> list_search;
  public void vytvor(TableView tableview1){
  Connection conn = null;
   PreparedStatement stmt = null;
   Properties connectionProps = new Properties();
   connectionProps.put("user", "root");
   connectionProps.put("password", "916626");
   String connectionString = "jdbc:mysql://localhost:3306/DBS_projekt";
   list_search = FXCollections.observableArrayList();
  try {
  conn = DriverManager.getConnection(connectionString, connectionProps);
   stmt = conn.prepareStatement("SELECT * FROM bycikel");
   ResultSet rs = stmt.executeQuery();
   // ---- ADD COLUMNS ---
   for(int i=0 ; i<rs.getMetaData().getColumnCount(); i++){
   final int j = i;
   TableColumn mycolumn = new TableColumn(rs.getMetaData().getColumnName(i+1));
   mycolumn.setCellValueFactory(new Callback<CellDataFeatures<ObservableList, String>, ObservableValue<String>>()
   public ObservableValue<String> call (CellDataFeatures < ObservableList, String > param){
   return new SimpleStringProperty(param.getValue().get(j).toString());
   tableview1.getColumns().addAll(mycolumn);
   while(rs.next()){
  ObservableList<String> riadok = FXCollections.observableArrayList();
  for(int i=1 ; i<rs.getMetaData().getColumnCount(); i++){
  riadok.add(rs.getString(i));
   list_search.add(riadok);
  tableview1.setItems(list_search);
   }catch (SQLException e) {
  e.printStackTrace();
   } finally {
   try {
  stmt.close();
   } catch (SQLException e) {
  e.printStackTrace();
can you pls help me? thx

JavaFx runs on the JVM (Java Virtual Machine) that resides on your computer ie JavaFX Version 1.0 runs on Java 1.6 r11 on Windows and Java 1.5 on Mac.
JavaFX can be made to asynchronously talk to a server similar to AJAX.
JavaFx has bridges the gap between rich applications and media can be made independent of browser technology.
With JavaFx one can build desktop applications as well as a internet applications and use already existing java code to achieve previously difficult apps.
Edited by: Serete on Dec 4, 2008 6:41 PM

Similar Messages

  • How to invoke a java class dynamically?

    Hi all,
    In my usecase I need to invoke a java class dynamically using any of the components like Button or link in jdeveloper.
    How could we invoke a java class which has a main method in it dynamically.
    Kindly come up with your help.
    Thanks,
    Phani.

    public class BackingBean {
    public BackingBean() {
    super();
    public void cb3_action() {
    File fileObj = new File("C:\\Jdeveloper software\\new.doc");
    IDocument myDoc = new Document2004();
    myDoc.addEle(Heading2.with("===== Headings ======").create());
    myDoc.addEle(Paragraph.with("This doc has been generated by the unit test testJava2wordAllInOne() in the class DocumentTest2004Test.java.").create());
    Table tbl = new Table();
    tbl.addTableEle(TableEle.TH, "Name", "Number of gols", "Country");
    tbl.setRepeatTableHeaderOnEveryPage();
    tbl.addTableEle(TableEle.TD, "Arthur Friedenreich", "1329", "Brazil");
    tbl.addTableEle(TableEle.TD, "Pele", "1281", "Brazil");
    myDoc.addEle(tbl);
    PrintWriter writer = null;
    try {
    writer = new PrintWriter(fileObj);
    } catch (FileNotFoundException e) {
    e.printStackTrace();
    String myWord = myDoc.getContent();
    writer.println(myWord);
    writer.close();
    Hi john,
    these are my Backing bean and action now at the run time when I am pressing a button which has to invoke cb3_action() method.
    When I am clicking the button at the runtime I am getting the below error
    Error 500--Internal Server Error
    javax.faces.el.EvaluationException: java.lang.NoClassDefFoundError: word/w2004/Document2004
         at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:51)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
    In the above code if you observe I have used "IDocument myDoc = new Document2004();" line. Here this Document2004 is a class which is in one of the external
    jar files. xstream-1.3.1.jar , java2word-3.0_2011Aug02.jar , log4j-1.2.15.jar .
    these are the jar files I found in net using which I can create a word file and add all the components like table and format the txt etc..
    These jar files works in Tomcat, Jboss ,Struts
    I can even run this class and got the file created.
    But when I try to bind the method in ADF i am getting the error mentioned above.
    Kindly help me on this. Sorry for posting similar question two times on the blog.
    Sorry again if this question is wierd.
    Thanks,
    Phani.

  • Executing class files from a Java App dynamically

    Hi!, Is there any way i can execute java .class files from my Java Application dynamically. I know that java uses Dynamic method Invocation. Is that true of class files generated using some other language compiled for the JVM.
    In my case i would like to make a Web browser that interprets HTML and also java applets embeded in them. I would like to use the JRE of the platform execute the applets for me rather than writing the code for my Browser to interpret the class files.
    Thanks in Advance.

    You just need a custom class loader to bring these applets into your JVM.
    http://developer.java.sun.com/developer/onlineTraining/Security/Fundamentals/magercises/URLClassLoader/index.html
    Then you can use the methods of java.lang.Class to create an instance of such a class. As soon as you have it, you can just treat it as a regular Applet and invoke init(), stop() etc. appropriately.
    If you want to execute anything else than conventional Applets, you might consider reflection to find out about methods implemented:
    http://java.sun.com/docs/books/tutorial/reflect/index.html

  • Java swing dynamic forms (in a loop)

    Hi All,
    Is it possible to dynamically create forms using java swing? What I mean to ask is that if I have the necessary information in a table, like the label and a corresponding text field, I can loop through and create the required number of fields. If I do it this way and when the users add text, will I not lose the ability to access each JTextField through its own variable? Is this possible? Basically, I need to be able to access each field through its own variable to do some additional validations on the text entered, etc. Please let me know, if it is possible through java swing.
    Any help in this regard is greatly appreciated.
    Thanks.

    mrbean1975 wrote:
    ..Is it possible to dynamically create forms using java swing? If by java swing you mean Java Swing, then yes.

  • Java WD: Dynamic Programming Help

    Hi,
    I've recently wrote a dynamic Java WD application to output a screen with a tabstrip that contains x tabs and each tab contains a table. Each table is mapped to a node in the context, and the nodes are static (precreated). Each table maps to it's own node and will not repeat.
    The steps are as follows:
    In the wdDoModifyView method I do the following
    1) Get the Tabstrip object using the view
    2) Create a IWDTab object (In a loop)
    2) Create a IWDTable
    3) Create many IWDTableColumns
    4) Create a IWDTextView for each column
    5) Bind to an attribute of the node
    Having done that, it appears to work fine. I do see my tabs and table created dynamically.
    Only problem any events is to occur on a table (e.g. select a cell (click on anywhere in the table), page up and page down using the footer controls, I get nasty Java dumps. (See below)
    Am I missing something here?
    Thanks in advance for any suggestions.
    Error stacktrace:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Cannot find method onNAVIGATEPAGENEXT in adapter com.sap.tc.webdynpro.clientimpl.html.uielements.adaptmgr.URAdapterManager$DummyAdapter@1276390
         at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.handleUIElementEvent(HtmlClient.java:839)
         at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.updateEventQueue(HtmlClient.java:722)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.initEvents(AbstractClient.java:131)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.prepareTasks(AbstractClient.java:99)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:251)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:55)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:392)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:345)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:323)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:865)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:240)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:159)
    Caused by: java.lang.NoSuchMethodException: com.sap.tc.webdynpro.clientimpl.html.uielements.adaptmgr.URAdapterManager$DummyAdapter.onNAVIGATEPAGENEXT(java.util.Map)
         at java.lang.Class.getMethod(Class.java:986)
         at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.handleUIElementEvent(HtmlClient.java:824)
         ... 23 more

    Michael,
    Actually, onNAVIGATEPAGENEXT is part of internal WD implementation, so you cannot do much about this error.
    I hardly beleive this is a bug because scrolling table is very common functionality, so it would be discovered much earlier.
    I guess that reason is IDE/WebAS version mismatch. Make sure that you are using IDE of same version as WebAS itself. Lower version of IDE is ok too, but not higher one. Probably the reason is here.
    VS

  • WD Java iView & Dynamic Navigation Problem

    Hi,
    I'm trying to use a WebDynpro Java iView in Dynamic Navigation but have the following display problem:
    When I navigate to the page for which I've added the iView to the dynamic navigation, only the WebDynpro iView (from the navigation) is shown. You can see the page in its correct form being loaded but as soon as the navigation iView seems to be loaded/ing it replaces the full lower part of the screen (navigation and content panel).
    If I use a plain URL iView in the dynamic navigation the behaviour is as expected.
    But if I add a WebDynpro iView or even a page containing that iView I get the strange behaviour again.
    I'm running NW04s SP7.
    Any ideas?
    Do I have to set some properties on the WebDynpro iView?
    I've tried a couple of things but none did work so far.
    Thanks & Regards
    Markus

    Hi Henrik,
    Sorry for the late reply but I'm just back from vacation.
    No, I have not found a solution. I decided to go for an integrated application instead (Main WD application that bundles navigation with other applications). That works but of course is not as "nice".
    Have you come across some solution yet?
    Kind Regards
    Markus

  • Using Java for dynamic web page content

    I've currently got a Perl program that I'd like to convert to Java. It merges two files that are stored on a web server and generates a "dynamic" HTML response.
    For example, if I have the following files on the server:
    File1:
    <Comment1>This stuff</Comment1>
    <Comment2>That stuff</Comment2>
    File2:
    <HTML>
    <Comment1><br><Comment2>
    </HTML>
    When I go to the URL
    www.mysite.com\cgibin\merge.pl?file1&file2
    the Perl program will produce a web page saying:
    This stuff
    That stuff
    The major obstical for the rewrite: NO JSP ALLOWED. It's not allowed by the ISP.
    Now for the questions:
    - Could this be done using Java?
    - How could I initiate the Java app and pass it the parameters? (applet tag, access Java inside Perl, use Java Script somehow)
    - Will an applet tag even work for this since the final page is generated completely from other files?
    Thank you very much for your help.

    If your ISP don't support JSP / Servlets,
    1.use any server side technolgy, something like ASP.
    2.Read the files and transform them as Strings (or StringBuffers).
    3.Pass these Strings as parameters to the applet (if you are forced to use java technology, otherwise you can do it using ASP itself).
    4.Construct the required format (content) in your applet.
    Don't forget that the stuff will be in applet but not a complete web page. The ideal solution is asking your ISP to provide JSP engine.

  • Can java make dynamic game sigs?

    Im just wondering if java can make dynamic game sigs.
    I would have no idea how to go about it, so if somone could point me in the right direction that would be swell.
    Cheers

    What is 'dynamic game sigs'?

  • How to compile a java file Dynamically !!!!

    Hi all
    The problem is
    I have a dynamically created java file ,and i want to compile that file dynamically itself. The file name is stored in a string,
    I am using ECLIPSE editor..
    How do i compile this java file (which is stored in a string) dynamically?
    Pls help me, already wasted a lot of time,
    Thanks in advance

    In every Tutorial regarding Dynamic Compilation,
    It is told to import javax.tools.*..
    But i cannot find this package
    I am using jdk1.4, is this the reason?
    Actually the following packages are needed fro this
    import javax.tools.DiagnosticCollector;
    import javax.tools.JavaCompiler;
    import javax.tools.JavaFileObject;
    import javax.tools.StandardJavaFileManager;
    import javax.tools.ToolProvider;
    but i cant finad any..!!!
    Please help me

  • How can i add more statements in java code dynamically...

    I have a (business works) BW process in TIBCO which has many activities including �java code�. In java code activity I have some if statements like
    if (Country.equals("USA�))
    Country code = 1
    else if(Country.equals("GERMANY�))
    Country code = 49
    the above information is coming from database. now my project is deployed and running. In future, if they add more countries in database how I can include them dynamically without changing my BW process java code activity and redeploying again. Is there any solution?
    Please advice.

    You won't reconfigure the Java application without redeploying. This is one of the reasons that including data in the code is bad.
    If you created a file which contained data like this:
    Canada <tab> 1
    USA <tab> 12
    Germany <tab> 6
    Then your program could read the file into a map. The map could be used to lookup the country code based on the name.
    In the future, you could change the file to:
    Canada <tab> 1
    USA <tab> 12
    Germany <tab> 6
    France <tab> 17
    China <tab> 2
    And the program wouldn't need to be changed. You would just need to send out the new country file.

  • How to create a Java Object dynamically

    I want to convert a "DataObject (SDO) " into "Pure java object".
    For this i want to create a java object with the fields in Dataobject, and this should be in generic way.

    I want to convert a "DataObject (SDO) "What is a "DataObject (SDO)"?
    into "Pure
    java object".What is a "Pure java object"?
    For this i want to create a java object with the
    fields in Dataobject, What is stopping you? Do you not know how do define a class? Do you think you can add fields to the Object class? If that's what you mean, you're out of luck.
    and this should be in generic
    way.What do you mean "in generic way"? "Generic" is a very generic term. There are lots of contexts in which it could apply and lots of different possible meanings for "generic way."
    You'll have to explain your queston more clearly.

  • How to change the parameter 'Default Servers To Use For Viewing And Modification' using java api dynamically.

    Hi,
    I need to change the Crystal Reports setting 'Default Servers To Use For Viewing And Modification' to a particular server.this i need to do using java api.
    could you pls provide me the sample code for this.
    Regards
    Srinivas

    The IReport interface extends IViewingServerGroupInfo interface, that allows you to specify the server group. 
    The choice selection for that interface is as follows:  0 = first available, 1 = prefer the selected server group, and 2 =  only use the selected server group.
    The server group selection is by the SI_ID for that server group InfoObject.
    Sincerely,
    Ted Ueda - Developer Support

  • I want to use Java for dynamic web programming...

    And don't know what to learn, JSP or servlets or both. I'm guessing it would be best to learn both, but I don't want to buy two books. Are there any books that teach both fairly well?

    I don't know how it covers them I am not learning them at the moment.
    Why don't you try searching for JSP and/or Servlets at Amazon.co.uk, Doesn't the JSP and Servlet section of the java.sun.com also have recommended books?, I have just done that search at amazon.co.uk and found these three instantly...the top two have reviews and ratings from other people. There are MANY book websites out there, try searching on this as well.
    JSP, Servlets and MYSQL; Paperback ~ David Harms
    Java Servlet Programming (The Java Series); Paperback ~ Jason Hunter
    Java Servlet and JSP Cookbook; Paperback ~ Bruce W. Perry

  • Standalone Java client - Dynamic SAML is it possible

    Hi,
    We have the following working web service client using (Java 1.6). Can this be done using axis2 1.3, Java 1.4 stack? I have tried without success. Any help is appreciated. Thank you,
    package gov.fda.ora.marcs;
    import java.security.cert.X509Certificate;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    import javax.annotation.Generated;
    import javax.xml.ws.BindingProvider;
    import javax.xml.ws.WebServiceRef;
    import weblogic.security.SSL.TrustManager;
    import weblogic.wsee.jws.jaxws.owsm.SecurityPoliciesFeature;
    import weblogic.wsee.jws.jaxws.owsm.SecurityPolicyFeature;
    import weblogic.wsee.security.bst.ClientBSTCredentialProvider;
    import weblogic.wsee.security.saml.SAMLTrustCredentialProvider;
    import weblogic.wsee.security.unt.ClientUNTCredentialProvider;
    import weblogic.wsee.security.util.CertUtils;
    import weblogic.xml.crypto.wss.WSSecurityContext;
    import weblogic.xml.crypto.wss.provider.CredentialProvider;
    public class MyServiceSOAP11BindingQSPortClient
    @WebServiceRef
    private static MyServiceSOAP11BindingQSService myServiceSOAP11BindingQSService;
    public static void main(String [] args)
    myServiceSOAP11BindingQSService = new MyServiceSOAP11BindingQSService();
    SecurityPoliciesFeature securityFeatures =
    new SecurityPoliciesFeature(new String[] { "oracle/saml_token_client_policy" });
    MyServicePortType myServicePortType = myServiceSOAP11BindingQSService.getMyServiceSOAP11BindingQSPort(securityFeatures);
    Map<String, Object> requestContext = ((BindingProvider) myServicePortType).getRequestContext();
    requestContext.put( BindingProvider.USERNAME_PROPERTY, "moe");
    try {
    System.out.println("request Context is:"+requestContext.toString());
    setPortCredentialProviderList(requestContext);
    System.out.println("request Context is:"+requestContext.toString());
    List endorsementTypes = myServicePortType.getEndorsementTypes("");
    System.out.println(endorsementTypes.toString());
    } catch (Exception e) {
    e.printStackTrace();
    // Add your code to call the desired methods.
    @Generated("Oracle JDeveloper")
    public static void setPortCredentialProviderList(Map<String, Object> requestContext) throws Exception {
    // TODO - Provide the required values
    String username = "moe";
    String password = "melme1";
    String clientKeyStore = "C:\\default-keystore.jks";
    String clientKeyStorePassword = "welcome";
    String clientKeyAlias = "orakey";
    String clientKeyPassword = "welcome";
    String serverKeyStore = "C:\\default-keystore.jks";
    String serverKeyStorePassword = "melme";
    String serverKeyAlias = "orakey";
    List<CredentialProvider> credList = new ArrayList<CredentialProvider>();
    // Add the necessary credential providers to the list
    credList.add(getUNTCredentialProvider(username, password));
    credList.add(getBSTCredentialProvider(clientKeyStore, clientKeyStorePassword, clientKeyAlias, clientKeyPassword, serverKeyStore, serverKeyStorePassword, serverKeyAlias, requestContext));
    credList.add(getSAMLTrustCredentialProvider());
    requestContext.put(WSSecurityContext.CREDENTIAL_PROVIDER_LIST, credList);
    @Generated("Oracle JDeveloper")
    public static CredentialProvider getSAMLTrustCredentialProvider() {
    return new SAMLTrustCredentialProvider();
    @Generated("Oracle JDeveloper")
    public static CredentialProvider getUNTCredentialProvider(String username,
    String password) {
    return new ClientUNTCredentialProvider(username.getBytes(), password.getBytes());
    @Generated("Oracle JDeveloper")
    public static CredentialProvider getBSTCredentialProvider(String clientKeyStore,
    String clientKeyStorePwd,
    String clientKeyAlias,
    String clientKeyPwd,
    String serverKeyStore,
    String serverKeyStorePwd,
    String serverKeyAlias, Map<String, Object> requestContext) throws Exception {
    List serverCertList =
    CertUtils.getCertificate(serverKeyStore, serverKeyStorePwd, serverKeyAlias, "JKS");
    List clientCertList =
    CertUtils.getCertificate(clientKeyStore, clientKeyStorePwd, clientKeyAlias, "JKS");
    final X509Certificate serverCert =
    (serverCertList != null && serverCertList.size() > 0) ? (X509Certificate) serverCertList.get(0) : null;
    final X509Certificate clientCert =
    (clientCertList != null && clientCertList.size() > 0) ? (X509Certificate) clientCertList.get(0) : null;
    requestContext.put(WSSecurityContext.TRUST_MANAGER, new TrustManager()
    public boolean certificateCallback(X509Certificate[] chain,
    int validateErr)
    boolean result = (chain != null && chain.length > 0)
    && (chain[0].equals(serverCert) || chain[0].equals(clientCert));
    return result;
    return new ClientBSTCredentialProvider(clientKeyStore, clientKeyStorePwd, clientKeyAlias, clientKeyPwd, "JKS", serverCert);
    }

    I think JSP is a variant of such a frame. You can
    execute a code compiling it.JSP is normally compiled into bytecode when it is first loaded by the container.
    beanshell and [url http://www-124.ibm.com/developerworks/projects/bsf]BSF are, I think what the poster is after, on this very frequently asked question :)

  • How can I load my java class dynamically ???

    Hi guyz !
    Please look on my problem:
    1. I write code under Windows.
    2. I have file testcls1.java with class by name 'TestCls1'. /package 'hs0'/
    3. I try to use method Class.forName.
    4. File on disk is "c:/shttpsrv0/SrvFiles/java/testcls1.java".
    5. I get exception ClassNotFound.
    Question: what is right way to write first parameter for method ???
    Thanx in advance !

    Hi guyz !
    Please look on my problem:
    1. I write code under Windows.
    2. I have file testcls1.java with class by name
    'TestCls1'. /package 'hs0'/
    3. I try to use method Class.forName.
    4. File on disk is
    "c:/shttpsrv0/SrvFiles/java/testcls1.java".
    5. I get exception ClassNotFound.
    Question: what is right way to write first parameter
    for method ???Class.forName can use *.class files only. If you have *.java file, you have to compile it first. Moreover, Class.forName uses CLASSPATH. If you want to provide the exact location of *.class file, try to use URLClassLoader.

Maybe you are looking for

  • Interrupted upgrade on an iBook = kernel panic

    I was trying to upgrade an old G3 iBook (10.2) to Tiger, and borrowed a firewire DVD drive from a friend. I won't bore you with why, but I had to interrupt the upgrade and start over. No matter what I do now, I get a kernel panic starting up. I've tr

  • Adobe Reader X standalone client does not recognize default browser.

    Adobe Reader works fine if I'm on a webpage and open a PDF. It opens in the browser as it should. I have PDF files on my hard drive. I can start up Adobe Reader from the desktop and read them, but if I click a link inside the PDF, it opens in Interne

  • I need information about Application Server Features

    I am looking for detailed information regarding what the Application Server offers and what are the possibilities, both Technichal and Business related. I have looked at the oracle web-site. But information seems to be scattered in multiple pdf and o

  • To add new file type in SharePoint

    Hi, I am trying to add new file type for sharepoint site like MSWord, PDF etc., Are there any ways to create new file types in SharePoint? My requirement is to create a file type for AutoCAD drawings (.dwg format). Please note, we are using SharePoin

  • How to solve the middle dark line when I use officejet all in one the copy function?

    The printer function is good, but only has problem in copy functioln.  How to clear the middle dark line? This question was solved. View Solution.