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 bkrike 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
  • Content: Threads
  • 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 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...
  4. 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 {...
  5. 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
  6. 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
  7. 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...
  8. 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()...
  9. 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...
  10. 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...
  11. 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...
  12. 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
  13. 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...
  14. 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...
  15. 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...
  16. deva1

    Urgent help help help help

    Hi all, I had a small network(2 computers).It was affected by Nimda virus.I cleaned everything and it started working fine.But then I tried to intall MCAFEE evalution virus scan it started giving me stragne problems.So I thought of reinstalling the windows 2000 sever.It did not go welI.I...
  17. deva1

    MCSD Certification procedure and details help help help!!!

    Hi all, I need information about the procudure to get the MCSD certification.Basically I am from As/400 background.I know VB6.0and SQL server 2000.I did not do major projects in these. I know there are 3 core exams and 1 elective. 1.Is there timeframe within that I have to pass...
  18. deva1

    SQL DTS Course help help help...

    Hi, I would like to know whether any of you know best place to get training in sql server 2000 DTS(I am looking mainly for developing datamart and data warehouse application using SQL Data transformation services(SQL DTS)).I am familiar with SQL queries,basics of DTS... Any help is...
  19. deva1

    DTS ==> Using Visual Basic help

    Gurus, I am trying to write some DTS(Data transmission)applications in Visual Basic 6.0.I included Microsoft DTS Custom tasks package library in the project References.Is there anyway I can get the properties and methods for the package.Now what I am doing is I am typing everything.example...
  20. deva1

    Help with changing existing and adding new fields to tables

    Gurus, I am a beginner in SQL Server I have three instances of SQL(TEST,QA, PROD) running on the server.I need to change a few tables in all these. Basically the change is adding some fields,changing the length of some fields.Is there any easy way I can make these...

Part and Inventory Search

Back
Top