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: anurc
  • Order by date
  1. anurc

    Jaws for windows and VB.net

    I sent them a mail. they responded and said i may have to do some customization by writing scripts. Not clear what to do?!
  2. anurc

    Jaws for windows and VB.net

    We are developing Visual Basic.Net application. We need to make our application working with JAWS for Windows to do the screen reading. We have downloaded a Demo version of the product and need to evaluate and make sure the product work well with vb.net client server application. We did not find...
  3. anurc

    applicaiton path in windows service

    I need to write a windows service program. In this service i need to read a text file to do some configurations. The problem i have is that i am not able to find the file path. i have the files in my service installation folder. How to find the path to the installation folder. My service by...
  4. anurc

    what is the default port number used for the RFC communication?

    My application is using SAP.NET connector to connect to SAP. Everything works fine with in the development systems. Now i want to deploy this into a production which is in a DMZ. So basically i want to know how the rfc calls will go through the firewall and if i have to set any port open for rfc...
  5. anurc

    opening files given their path and name

    see if this is helpful: System.Diagnostics.Process.Start(file_name) anurc
  6. anurc

    Setting backcolor dynamically

    Try this: Dim str As String = "Red" Me.BackColor = Color.FromName(str) Me.Refresh() Where "Red" must be a system predefined color
  7. anurc

    Displaying reports in a directory using Crystal report viewer

    hi, I have a .Net Windows application. In this application i need to implement a custom report feature. This feature will allow my clents to implement adhoc reports and put them in the specified directory. Using my application they should be able to see the reports in a form with crystal report...
  8. anurc

    how to build patches to an already installed application?

    Is it possible to use the setup and deployment project in vs.net to build patches to an already installed application so that we can just apply minor changes to it without reinstalling the full application. If not then which other third party tool is best to do it. thanks arc
  9. anurc

    I have a crystal report with 3 sub

    I have a crystal report with 3 sub reports in it. The main report has 2 parameters and the subs have 2 each. The parameters of the subs are same as that of main and the main and subs are linked. I developed the reports in a development database and now i want to implement this reports in many...
  10. anurc

    Subreports in Crystal Reports

    hi, Try this out. Dim subrpt1 As CrystalDecisions.CrystalReports.Engine.ReportDocument subrpt1 = myRpt.OpenSubreport("YourSubReportName") '****name is case sensitive subrpt1.SetDataSource(myDS) ''*** where myRpt is the main report
  11. anurc

    Changing Server and Table using CrystalReportViewer (ePortfolio Lite)

    I think i had a pretty much similar problem, but the difference is that I was using vb.net windows program to call a report developed in another machine. the way i solved the problem is by setting an additional table.location paramter to point to the correct table. myTable.Location =...
  12. anurc

    drag-and-drop within a treeview

    I am tying to implement a drag-and-drop ability within a treeview. I could do eveything until i got to the point where i need to find a destination node to drop the dragged node. when i tried to get the node form the e.X and e.Y coordinates, i am not able to exactly get the node over which the...
  13. anurc

    How to display images stored in a network share?

    thanks. So that means the photo share should be mapped before the application starts, so that the pictures will be displayed in a picture box?
  14. anurc

    How to display images stored in a network share?

    I have a client-server application, in which my client applications display images stored in a server machine(in a network share). Please advise me, how to do the coding in vb.net? What is best way to do this?
  15. anurc

    How to evaluate a formula string

    I have a formula as string. How to evaluate it using vb.net? eg. I have (10.2+30+10) as a string variable how can i get a sum of this (evaluate this formula) as 50.2 Thanks
  16. anurc

    .net application and crystal report deployment

    I have .net enterprise developer version loaded on my development system and created some crystal reports. It worked great on my development machine that has the whole .Net studio on it. On our production machine, all I have is the framework and it runs .Net apps great but when I tried to run...
  17. anurc

    how to debug a stored procedure using vs.net???

    i heard that i can use the visual studio.net to do a step into debugging of SQLsever stored procedure... can anybody help.. how to do it? thanks
  18. anurc

    visual studio.net - debug a stored procedure

    i heard that i can use the visual studio.net to do a step into debugging of SQLsever stored procedure... can anybody help.. how to do it?

Part and Inventory Search

Back
Top