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 Wanet Telecoms Ltd 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: vcharles
  • Order by date
  1. vcharles

    How to view image from application's path?

    Hello, I noticed that I am able to see the image files using ".\image.png" (Without the quotes) using Crystal reports IX alone; However when I include the report in my VS 2008 project, I am no longer able to see the images, any ideas what is causing the problem? Thanks, Victor.
  2. vcharles

    How to view image from application's path?

    Dell, I'm not certain of your explanation, what do I declare MyAppDir% as and where do I declare it? Can you please send me an expample if the last option? Thanks, Victor
  3. vcharles

    How to view image from application's path?

    I tried ".\image file name" but it still doesn't work. Victor
  4. vcharles

    How to view image from application's path?

    Hello, Currently I have to hard code the path of my image files in order to view them from crytal report 2008, is there a way to replace the hard code string with the application's path, in order to give users the flexibility to install the program to the folders of their choice. Thanks, Victor
  5. vcharles

    How to view image listed in ACCESS file and loaded in application's pa

    Hello, Currently I have to hard code (c:\file.png") the path of my image files in order to view them from crytal report 2008, is there a way to replace the hard code string with the application's path code, ( Application.StartupPath\file.png doesn't work )users should have the flexibility to...
  6. vcharles

    How do I view a report using ASP.NET?

    ...Dim crConnectionInfo As ConnectionInfo = New ConnectionInfo crConnectionInfo.ServerName = ("Server.MapPath(AOPT2002org.mdb") ) '***** Works crConnectionInfo.Password = "testaopupdate" setDBLogonForReport(crConnectionInfo, myaop6report)...
  7. vcharles

    Can't view report using ASP.NET

    ...crConnectionInfo.Password = "testaopupdate" setDBLogonForReport(crConnectionInfo, myaop6report) myaop6report.RecordSelectionFormula = "{AOP5.nsn} like " & "'*" & TextBox1.Text & "*'" & "" CrystalReportViewer1.ReportSource = myaop6report End If
  8. vcharles

    Problem with setting application path in setup project

    Hello, The default installation of my setup project is as follows: [ProgramFilesFolder]\[Manufacturer]\[ProductName] The problem is PC in Europe don't have a "Program Files" folder, it's in a different language. When I remove [ProgramFilesFolder] from the setup program, the installation...
  9. vcharles

    Setup Issue

    Hello, Is it possible to create an uninstall option in the setup package? Thanks, Victor
  10. vcharles

    Error white updating records

    Hello, Thanks for pointing out the bad code. I would like to enter multiple data in a grid and save all all the rows entered to a dadabase. Victor
  11. vcharles

    Error white updating records

    Sorry, it didn't work, It gives me the folowing error message. Object reference not set to an instance of an object. Victor
  12. vcharles

    Error white updating records

    ...Source=|DataDirectory|\aop29.mdb" Dim objConnection As New OleDb.OleDbConnection(ConnectionString) Dim sql As String = "Select * from Customer" Dim daaop5 As New OleDb.OleDbDataAdapter(sql, objConnection) Dim cmdb As New OleDbCommandBuilder(daaop5) Dim ds As New DataSet() daaop5.Fill(ds...
  13. vcharles

    Problem with updating records

    I will work on it and get back to you next week. Thanks, Victor
  14. vcharles

    Problem with updating records

    Thank you for the code, the only problem is I'm selecting from multiple grids and some of them are not mendatory, is there a way to use the insert command for only the grids selected? CompanySQL = "INSERT INTO Link_TableA(Company_ID, Receiver_ID) VALUES(@Company_ID, @Receiver_ID)" For example...
  15. vcharles

    Problem with updating records

    Hello, I got it to work partially with the code below, the problem is the data from each grid is saved in different records, is there a way to save the data from both grids in one record?. I don't don't know how to concatenate the code, perhaps that would be the solution. Thanks, Dim...
  16. vcharles

    Problem with updating records

    Hello, I'm getting the following error: The OleDbParameterCollection only accepts non-null OleDbParameter type objects, not String objects. In line : cmdCompany.Parameters.Add("@COMPANY_ID") Can you please help me fix that part of the code. Thanks, Victor
  17. vcharles

    Problem with updating records

    ...Source=|DataDirectory|\aop29.mdb" Dim objConnection As New OleDb.OleDbConnection(ConnectionString) Dim sql As String = "Select * from Link_TableA" Dim daaop5 As New OleDb.OleDbDataAdapter(sql, objConnection) Dim ds As New DataSet() Dim dsA As New...
  18. vcharles

    Problem with updating records

    ...Dim objConnection As New OleDb.OleDbConnection(ConnectionString) Dim objDataAdapter As New OleDb.OleDbDataAdapter("select * from AOP5", objConnection) 'where country in(SELECT COUNTRY FROM AOP5 WHERE SN like " & "'" & result & "'" & ")order by country", objConnection)...
  19. vcharles

    How to link 2 tables using a link table?

    Hello, I finally figured it out Thank You for all your Help. Victor
  20. vcharles

    How to link 2 tables using a link table?

    I just made some changes, but it's still not working the way it shoul, the powepoint file shows the design and desired output, the latest report ends with 2008.rpt. What table should I be grouping by?, I think I'm grouping on the wrong tables/fileds. http://www.box.net/shared/rbi9gebnhg...

Part and Inventory Search

Back
Top