Search:

Type: Posts; User: Kiran123

Search: Search took 0.03 seconds.

  1. Re: What is the difference between an object and an instance in JAVA?

    object has a memory allocated to it during its creation using the syntax

    classname var=new classname();
    But for instance creation it returns only a pointer refering to an object,syntax is
    ...
  2. Replies
    3
    Views
    670

    Re: little confused about data grid view

    Creating a Master/Detail Form Using Two Windows Forms DataGridView Controls

    I hope this will help you!
  3. Replies
    4
    Views
    2,152

    Re: How to set a shortcut key for label in Vb?

    by usemenomonic=true
  4. Re: How to use windows clipboard to copy text in a vb.net application?

    In this first instalment of a four-part series of articles on programmatically transferring data to and from the Windows Clipboard, I'll explain the basic steps of using the Clipboard using the...
  5. Re: What is the difference between while statement & do statement?

    Do while .. first does some code and then checks for a condition.
    do-while is a exit controlled loop.
    and
    While first validates the condition before processing any code in the loop.
    while is an...
  6. Re: What if we declare the main method as private?

    The program compiles properly but at runtime it will give "Main method not public." message.
  7. Re: Visual C++ to end a loop & exit from program?

    On occasion, it may be necessary to end a program (or section of a program) earlier than its normal termination. Below are examples of methods of interrupting or terminating programs or loops.

    1....
  8. Replies
    3
    Views
    5,168

    What is Circular dependency?

    Hello!

    I was coding for the chess program in C++ & i got an error because i was calling both of my classes in each other ie. Class Chess.h was calling the class Board.h & vice-versa.
    Now the...
  9. Replies
    4
    Views
    2,408

    Re: How can I add my program to startup ?

    Yes off course you can do the same!

    Add it to the startup folder: C:\WINDOWS\Start Menu\Programs\StartUp
  10. Replies
    9
    Views
    5,047

    Re: Java or Dotnet is better?

    1.) Asp.Net is a web programming paradaign (you can code Asp.Net in C#, VB or any other .Net language).
    2.) Any .Net language has built in support for SQL Server, Oracle and anything you can get an...
  11. Best File Transfer Programs FTP according to you guys?

    I am just curious to know which File transfer program (FTP) You guys prefer to use for your websites?

    I think for me Cuteftp is good!
    What you guys have to say about this?
  12. Re: How to refresh database after adding a new record?

    I have this code please have a look
    I hope this helps!


    Private Sub frmMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    LoadDb()

    End Sub
  13. Re: How to auto resize controls on the form in Vb.Net?

    If you want controls on your form to resize along with the form you'll need to add some code to accomplish this in the Form_Resize event. In your case you could determine the size of the textboxes in...
  14. Replies
    3
    Views
    6,276

    Re: Disabling ALT + F4 in VB.NET application

    In the form's 'Closing' event handler, set 'e.Cancel = True' to stop
    closing the form.
  15. Replies
    4
    Views
    11,708

    Re: Powerpoint slides on form in VB.NET

    You could look at this video on using the Ajax slideshow control: for ASP.NET

    http://www.asp.net/Learn/ajax-videos/video-163.aspx
  16. Re: Why C, C++ program execution starts with main()

    Every C program has a primary (main) function that must be named main. If your code adheres to the Unicode programming model, you can use the wide-character version of main, wmain. The main function...
  17. Re: C# User defined function added in library but no error

    I don't think you are not getting any error with this thing!
    You must be getting an error IF you call this new function at the compile time & if you are not calling then it wont give you any error...
  18. What is Service Oriented Architecture (SOA)?

    Hi,
    I would like to know what is Service Oriented Architecture (SOA) in programming environment?

    Thanks for the help!
  19. Re: How to make make an ajax call using JSF components

    Hello!
    Even I am learning java & a simple google search got me some results I hope you would like to know.
    1. http://www.winstonprakash.com/articles/netbeans/jsf_custom_component_part1.html
    2....
  20. Oracle ADF (Application Development Framework)?

    Hi,
    I am searching for a book on Oracle ADF(Application Development Framework).
    If anyone is working on this please guide me for the same.
    It will be very nice I can find some good books on Oracle...
  21. Vista 64 problem installing Visual Studio 2005

    Hi,

    I bought Visual Studio 2008 pro since it uses the 2.0 version of the framework which VS 2005 uses. VS 2008 IDE is supported by Vista out of the box & the software is 3 years old.

    There is...
  22. Re: VB.Net to open a file download in IE browser directly without asking the end user

    Well thanks!
    I dot want to open such files in client browser. My file is MS EXCEL file & I want the user to only view it not edit , save or anything. Only for viewing purpose without asking user. I...
  23. VB.Net to open a file download in IE browser directly without asking the end user

    I am designing a VB.NET based website

    I have a hyperlink, upon clicking on it a "File Download" prompt opens which asks me whether I want to "Save" the file, "Open" But I want it to directly open...
  24. Replies
    1
    Views
    2,246

    Re: VB.Net to select a folder

    For me
    System.Windows.Forms.FolderBrowserDialog
    Works fine!

    http://support.microsoft.com/?kbid=306285
  25. Re: Error: Argument prompt cannot be converted to type string.

    Well I am not sure how to do this can you provide me any sample code for the same?

    Thanking you in advance!
  26. Error: Argument prompt cannot be converted to type string.

    Hi,
    I have this following problem in Visual studio 2005, VB dot net application.
    On the form I have a listbox & textbox, I want that when i select a item from listbox then it shows in the textbox....
  27. Replies
    4
    Views
    851

    Need Design help to query the databse.

    Hi,

    I am workin with visual studio 2005, framework require help with windows forms.
    I want to fetch data from database where i want to put a sql query which needs to be flexible in terms of where...
  28. Replies
    4
    Views
    3,466

    Re: C# code : WndProc method

    Well This is not the think i am looking at but its a nice option for that But not for me.
    Thanks anyways.
  29. Replies
    4
    Views
    3,466

    C# code : WndProc method

    Hi,
    I want to know that how can i hook up the WndProc method of a native window with my C# code?

    Do you have any Ideas?
  30. Replies
    4
    Views
    6,415

    Re: C# : Setting Date & time

    If the value is always going to be the current date & time, set a default on
    the column of getdate()
  31. Highligting a row in a DataGrid in C# (Sharp)

    Hi,
    I want to know how can I do the following In C#(Sharp)

    In VB 6 For DataGrid property we have Split\Margue Style = dbgHighlightRow.
    ie. Row was highlighted and cell was not active.

    I am...
  32. Replies
    2
    Views
    1,866

    Re: Setfocus() in VB6 to VB.Net?

    You are right my friend!
    In vb.net you can use focus. It behaves just like Setfocus() on vb6.
    me.controlname.focus
  33. Re: Error in ASP.NET Application & windows server 2003

    Please try to give the rights to ASP user.

    http://www.bigresource.com/ASP-user-database-access-rights-yOaOH8pv.html

    Hope this solves the problem.
  34. Replies
    4
    Views
    1,366

    Re: manual Binding OR ObjectDataSource

    I think this is an important article for you to read & understand the concept of ASP.NET 2.0 GridView ObjectDataSource versus Custom Binding

    I hope this helps!

    But since am a beginner i would...
  35. Re: SQL Server does not allow remote connections

    Well i think this may be due to following things can be any one or more from these things.
    1. Your firewall (Network blocking connection)
    2. Your connection string may be wrong (Port No.& name)
    3....
  36. Replies
    2
    Views
    4,546

    Re: To show the session timeout in ASP.NET

    Please visit this:
    http://www.codeproject.com/KB/aspnet/Detecting_Session_Timeout.aspx
    and...
  37. Re: ExecuteReader requires an open and available Connection.

    Try using the try & catch for ==>> Move i = command.ExecuteScalar()

    Problem has to be with conn.open()

    also set a break point on catch line.
  38. DataAdapter.Update command is not updating the database.

    DataAdapter.Update command is not updating the database.

    My code failed to update the Access database with the data.


    'Open connection to update data
    Dim myConn As New...
  39. Replies
    3
    Views
    1,749

    Re: Connecting Oracle Database with ASP dotnet

    Hi,
    I think these links will help you in more detail regarding your problem with Oracle database & ASP.Net connectivity.
    http://www.packtpub.com/ODP-dot-net-oracle-data-provider/book
    and...
  40. Replies
    2
    Views
    1,933

    Re: The type initializer give me an error

    Well i think you are getting confused with the concept of ADO.NET
    Since you are opening the connection but not closing it.
    You are trying to open the connection which is already open.
    Try...
  41. Replies
    2
    Views
    8,052

    Re: To simulate button click in C#

    Hello SunilKumar!
    Can you explain a bit what you are trying to do?
    This will give us clear idea about what you want to do.
    You can call the method that handles the Click event at any point.

    ...
  42. Replies
    2
    Views
    1,287

    Re: Method to post postdata & get the result

    For post data to PHP in C# I use this method:
  43. Single database & multiple functions in web services.

    Hi,

    In Web Method I want to share the database among the functions using SQL connection & ODBC connection along with the using structure. Now some functions need to update the database already...
  44. vb.net FolderBrowserDialog: last directory visited need to be stored

    Hi,
    Well here is my problem with VB.net application.
    The SaveFileDialog remembers what directory a user last saved to, and
    the next time it is displayed, it remembers this. FolderBrowserDialog has...
Results 1 to 44 of 44
Page generated in 1,711,674,958.51216 seconds with 17 queries