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 Chriss Miller 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. VenkatRastapuram

    How to toggle components to a dialog

    Hi , I have created a OptionPane in which there are two panels(containg say a component) top and bottom and one button 'show/Hide'. By default I should show a top panel and a button but when I click on the 'show/Hide' button it should show the top panel along with bottom panel and when I click...
  2. VenkatRastapuram

    set size of jframe form

    Hi OhioSteve, U can do it by setting a property called maximisedbounds in the other properties tab of a NetBeans editor. This takes four values X,Y,Width,Height. But u should provide values in terms of pixcell not in inches. when U click on play button in NetBeans to run your application It...
  3. VenkatRastapuram

    JToolBar Repaint Problem

    Hi, I have a problem. I am developing a swing based appication. I am using a third party component, to this one I am adding a JToolBar. This tool bar contains different actions like insert, delete.... When the entire application is minimized, the icons of actions of tool bar are not repainting...
  4. VenkatRastapuram

    Gui problem with JTextField when setting double value to it

    Hi, I declared a variable of type double and doing a arithmatic operation like addition and after the operation and setting the calculated value to a JTextField. I am useing Decimal_Format to fix the precesion to two decimal places. But this is not working properly. When we start the...
  5. VenkatRastapuram

    Problem with accuracy with double

    Hi, I am unable get the accurate values using double. I know that I can get accurate using BigDecimal. But now I can not convert the datatype from double to BigDecimal in my classes as they are used in many places. I am able to get the correct value if I make the calculations in BigDecimal and...
  6. VenkatRastapuram

    New to java / web services

    Hi Plork123, First create webservices (web methods) to access the login details in the Server(IIS/Apache/Weblogic). Use WSDL to create the stubs of the web methods on the client application and access the web methods as normal methods by importing those package in to the client application...
  7. VenkatRastapuram

    How to create certificate using keytool

    Hello Sir, I configured the tomcat server and for that I created a keystore using keytool. Now I want to generate a certificate,so I created a local certificate (as certreq.csr). I imported a chain certificate from https://www.verisign.com/support/site/caReplacement.html and added to my...
  8. VenkatRastapuram

    How to test SD card using Pocket PC Emulator

    Hi Nelviticus, Thank U for Ur suggestion. It helped in solving my problem. The followin code helps in checking the existance of storage card as well as reading the files from it. using System; using System.Drawing; using System.Collections; using System.IO; using System.Windows.Forms; using...
  9. VenkatRastapuram

    Applet Copy file in Jar to Disk

    Hi, If u r using Ant to compile and run the java application, You can write a target in Ant(i.e. in build.xml file),which is much easier. for futher details see docs of Ant in http://www.apache.org Regards, R.Venkatesh
  10. VenkatRastapuram

    how to use MarshalAsAttribute in C#.NET compact Framework

    Hi , I am sending a sample code, which is running without any problem in Windows Application and it is giving compilation error when it is run as Smart Device Application. Because the MarshalAsAttribute is not supported in Smart Device Application. I found from the MSDN (search key: Interop...
  11. VenkatRastapuram

    Appending new record

    Hi borgkling2003, You should add table to the dataset but U r not doing that. what u should do is create a DataTable object and assign the table to it. Add this table to the dataset object. ie custDS.Add.Tables(<tableName>); This may solve ur problem. I did not try this but I am sending...
  12. VenkatRastapuram

    How to use StructLayoutAttribute and MarshalAsAttribute

    Hi Obislavu , Thank you for your response. I think u have selecte the application as a windows application. In the windows application it is working properly but when I copy the same code in the Smart device application it is giving comilation errors. So please tell me how to invoke the...
  13. VenkatRastapuram

    How to use StructLayoutAttribute and MarshalAsAttribute

    Hello Sir, I am sending a sample code which is used to search for a file by importing kernel32.dll. But in the sample code it is unable to comile. It is giving two compilation errors saying that StructLayoutAttribute does not contain a definition for CharSet and another one is the type or...
  14. VenkatRastapuram

    How to test SD card using Pocket PC Emulator

    Hi Nelviticus, Thank you for your reply. The FindFirstFile API is used to search for a file and it does not solve my problem. It is not necessary that Pocket Pc should be a emulator. It can be a Pocket PC also. I just want to access SD card from the Pocket PC. How to do this. Thanking U...
  15. VenkatRastapuram

    open the sql server in vs .net 2003

    Hi, Will You be able to access the Sql Server from the outside. If this is alright, then check the ConnectionString properly. Regards, R.Venkatesh www.makelogic.com venkat@makelogicmldb.com
  16. VenkatRastapuram

    ArrayList problem

    Hi, Please send the code so that I can clearly understand your problem. Regards, R.Venkatesh MakeLogic www.makelogic.com venkat@makelogicmldb.com
  17. VenkatRastapuram

    How to test SD card using Pocket PC Emulator

    Hello Sir, I have developed an application in C#.NET and it contails a database file. So I want to transfer this database file into a SD card connected to. So please tell me how to simulate the SD card with the Emulator and how to transfer the database file from the Pocket PC to SD card. Is...
  18. VenkatRastapuram

    How to transfer data from Pocket PC to SD card

    Hello Sir, I have developed a Pocket PC application. In that I am using a database SqlServerCe. The database file is a .sdf file. I want to transfer files and database to SD card. How to do this using C#. Pleas solve my problem. Thanking U R.Venkatesh MakeLogic www.makelogic.com
  19. VenkatRastapuram

    How to add Entrie in windows Internet Explorer popup menu

    Hello Sir, I have developed an application in C#.NET. I want my application shortcut to be as a menu Item in Windows Internet Exporer's popup menu which popups when we right click. How to do this. Pleas tell me how to do this using C#.NET. Regards, R.Venkatesh
  20. VenkatRastapuram

    how to pull records of the database which is in sqlserver

    Hello Sir, I want to pull some records of the tables, for which the database is in sqlserver. I successfully copied Sql server Tools in the IIS. I am able to get the message 'Sql Server Agent' which confirms that the sql server tools are successfully installed. But when I am trying to pull...

Part and Inventory Search

Back
Top