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 TouchToneTommy 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: *

  • Users: deva1
  • Order by date
  1. deva1

    interface

    package scjp; abstract interface Myinter { static final int i = 5; void fun(); } public class interface2 implements Myinter{ static int i=7; public void fun(){ System.out.println(i); } public static void main(String[] args){ Myinter m = new interface2(); m.fun(); System.out.println(m.i); }...
  2. deva1

    passing array to method

    public class example { int i[] = {0}; public static void main(String args[]) { int i[] = {1}; change_i(i); System.out.println(i[0]); } public static void change_i(int i[]) { int j[] = {2}; i = j; } } when I run this program I get 1 .but my question...
  3. deva1

    Java certification question

    Excellent ,now I know how they got C E as answer. Thank you sir
  4. deva1

    java variable scope

    public class example { int i[] = {0}; public static void main(String args[]) { int i[] = {1}; change_i(i); System.out.println(i[0]); } public static void change_i(int i[]) { i[0] = 2; i[0] *= 2; } } Can anyone tell how the scope of the array int...
  5. deva1

    Java certification question

    Great...Thanks alot.
  6. deva1

    Java certification question

    Hi All, I new to java .I was going through java certification questions in javaprepare.com. 1.What all gets printed on the standard output when the class below is compiled and executed by entering "java test lets see what happens". Select the two correct answers. public class test {...
  7. deva1

    Help New to . net world

    Hi all, Can anyone tell me a place where I can find out some good examples(like library management system or employee maintenance system) written in vb.net.I am looking for a small project for learning purpose. Thanks alot NK
  8. deva1

    combobox using dataset

    Thankx alot.This is exactly what Iam looking for. Great help Deva
  9. deva1

    combobox using dataset

    Can anyone give me code to populate a combobox using dataset and sqldataadapter.I want to create the dataset and dataadapter through program not through the wizard. Thanks alot Deva
  10. deva1

    Microsoft Certification

    Hi All, Please help me to find the right path.I have 1o years of experience on software development on IBM AS/400 platform.I know visual basic6.0(intermediate), Sql server 2000 and ASP( beginner). I am trying to find out the right certification for me.I like to be a developer.First of...
  11. deva1

    ADO and Datagrid

    Hi All, I am a beginner.I am just attaching the code.I do not know the exact problem.It gives an error message while running. The error is Run_time error '7004' The rowset is not bookmarkable. I am attaching the code. Dim Currinv_Rec As New ADODB.Recordset Private Sub Form_Load()...
  12. deva1

    ADO and Datagrid

    Hi All, I am just attaching the code.I do not know the exact problem.It gives an error message while running. The error is Run_time error '7004' The rowset is not bookmarkable. I am attaching the code. Dim Currinv_Rec As New ADODB.Recordset Private Sub Form_Load() Set Currinv_Rec...
  13. deva1

    help vb forms

    Hi, I have a form and a few controls on it.Some controls are on the top of the form.When I take it design mode or run time I see only a portion of the control. 1.Why this is happening? How can I see complete control? 2.How do I take the form to Form layout window in order to see where it...
  14. deva1

    Database Applications

    Hi All, What is the best way to write Database application using VB 6.0. Using wizard(application and Data form) to create the skelton and modify that or start from the scratch. Sorry, if it is stupid question? I am learning VB myself and I am beginner.So I am trying to get some...
  15. deva1

    Help with Class Module in VB 6.0

    Hi All, I am learning Visual Basic 6.0.I do have problem with understanding the Class concept in visual Basic.Can anyone suggest a good book or web site where I can get the information with some simple examples. Thanks in advance for your help Deva
  16. deva1

    SQL 2000 Server ===> Memory Issue

    Hi All, In the SQL server machine the hard disk(C) memory is reducing everyday.I have 2 partions (C and D).C has the SQL Server instances and D has all the Databases and Backup.I have daily scheduled jobs running.I have purge programs that is running every night and purging the DTS...
  17. deva1

    [sql_server] Strange Error in INSERT using DTS Excecute SQL task help

    Hi all, This is something stange .Hope someone can help with some idea. I have ETL process running on SQL server 2000.This captures data from AS/400 server and load in to SQL server and after making some modifications , loading back to AS/400.This process was working...
  18. deva1

    Create View help help help

    Thanks alot James.It worked very well
  19. deva1

    Create View help help help

    Hi all, Please help me to find out what am I doing worng. I have 2 tables testvw1 ===> empid 4,0 empname 10 empdesc 10 testvw2 ===> empid 4,0 empage 4,0 message 10 I am trying to create a view based on these 2 tables.My...
  20. deva1

    Urgent help help help help

    Hi all, Thank You very much for the reply. Can anyone tell how can I install into a different directory.When I try to install it is not asking any directory. Thanks

Part and Inventory Search

Back
Top