Search results for query: *

  1. R

    Retrieving Crystal Reports SQL query

    Any help available??
  2. R

    Retrieving Crystal Reports SQL query

    Hi I am trying to get the sql query of a crystal reports file through code, I tried using the following line of code... strSQL = CR.SQLQueryString where CR is the CRAXDRT.Report object present in "Crystal Reports ActiveX Designer Run Time Library 11.0" As we know a db connection to the db...
  3. R

    Advanced .Net Tutorials

    Advanced .Net Tutorials/Articles/Samples ? Hi Can you tell me if you know sites that offer step by step tutorials,articles,samples,demo applications,etc on Advanced .Net topics for VB.Net and ASP.Net. Please provide links! Thanks
  4. R

    Not able to run the web application

    No there is no infinite loop in the code...
  5. R

    Not able to run the web application

    Thanks but What you tell as solution...
  6. R

    Not able to run the web application

    Hi all I am facing a problem.. in which if i try to run a specific ASP.Net project Say the Visual Studio launches the browser and goes to http://localhost/projectname/ but the browser keeps on shows loading.. in the progress bar.. but never runs the application i have tried leaving it...
  7. R

    BringWindowToTop() API not working

    Thanks both My actual functionality is.. I have a notify icon for my application and when it is clicked i want to show the form, till that time it will be hidden.. i was trying to use the BringWindowToTop() api in a timer with five seconds to find whether the code will work..
  8. R

    BringWindowToTop() API not working

    Still its not working Thanks 4 both hi vis781.. <DllImport("User32.DLL")> _ Private Shared Function BringWindowToTop(ByVal Hwnd As Integer) As Integer End Function Private Sub Timer1_Tick(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles Timer1.Tick Call...
  9. R

    BringWindowToTop() API not working

    Hi all I am trying to run this code but its not working..please help Private Declare Function BringWindowToTop Lib "user32" (ByVal hwnd As Integer) As Integer Private Sub Timer1_Tick(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles Timer1.Tick Call...
  10. R

    How to find that a Class has a instance ?

    Sorry for delayed reply.. Hi all cjard.. sorry for delayed reply... I already said i was wondering whether there is a way to do this.. and so i dont have any goal.. Now I think there is no way to find using a class's name that a object exists for it.. If anyone thinks we have a way...
  11. R

    Trying to INSERT values into a SQL database

    Hey wont you reply for this.. diverdan its too bad you never replied..:( i put effort to fix your bug, but no response from u..
  12. R

    How u found that &H202 is equal to 0x0201?

    will some one resolve this plz resolve my question
  13. R

    How to find that a Class has a instance ?

    Thanks everybody.. Hi Paszt, i was wondering whether there is a builtin functionality that we can use to find that a class is instantiated or not.. for more clarity... We have a class as follows.. Class Sample Dim i as Integer Sub Disp() MsgBox(i) End Sub .. .. End Class...
  14. R

    How to find that a Class has a instance ?

    Yes, i need to know how we can find out whether a class has instances using any builtin method or something.. and i know the shared members way.. Thanks Bob Langlade plz tell me if you know any builtin method to find that whether a class is instantiated that is how to find that a class has...
  15. R

    Setting Version info for a VB.Net application

    Hi How can we set version info for a vb.net win forms application Thanks
  16. R

    Trying to INSERT values into a SQL database

    Fixed Two things i noticed which should have caused the problem.. One... txtCustomerName.DataBindings.Add("Text", objDataView, "CustomerName") the above code caused the error "This would cause two bindings in the collection to bind to the same property." which means you cannot add...
  17. R

    Interview Questions

    Thanks Thanks will chk
  18. R

    How to find that a Class has a instance ?

    HI How to find that a Class has been instantiated..? Is there any way ?? Thanks bye
  19. R

    Trying to INSERT values into a SQL database

    Hi sorry for the delayed response, just right click the tables u used in your code in Enterprise Manager and select All Tasks->Generate SQL Script and attach here bye
  20. R

    Interview Questions

    Hi Can you give me some links for Inteview Questions for VB.Net and ASP.Net if you have or when u get. Thanks
Back
Top