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: rnooraei
  • Content: Threads
  • Order by date
  1. rnooraei

    Adding double quote to a string

    Hi I would like to add double quote around ListBoxColumn.Items(counter).Value which is comming from listbox, I tried to use "\"" but it did not work. Thanks for help For counter = 0 To (ListBoxColumn.Items.Count - 1) If ListBoxColumn.Items(counter).Selected = True Then...
  2. rnooraei

    Error on ExecuteScalar() - NullReferenceException

    Here is the code Dim SqlMetroDateMin As String = "select top 1 Format(E13A101.TIME, 'yyyy/mm/dd')AS tmin from E13A101 where fmin=(select min(fmin) from E13A101 where month(TIME)= " & ddlMonth.SelectedValue & " and year(TIME)= " & ddlYear.SelectedValue & " ) and month(TIME)= " &...
  3. rnooraei

    Capturing Data in Crystal Report

    Hi Is there any way I can capture data from detail line of crystal report(in runtime) and save it to database. Any help is appreciated. Thanks Ramin
  4. rnooraei

    Problem with log-in using SetDatabaseLogon()

    Hi This syntax is working with ACCESS database crReport.SetDatabaseLogon("bar_adm", "******") Now I migrated the database to SQL SERVER and the syntax shoulb like crReport.SetDatabaseLogon("bar_adm", "******", "KINGSTON", "BAR_TEST") but I can not log in to database. here is my connection...
  5. rnooraei

    Error connecting DataSet with SQL Server

    Hi Any suggestion for this error message. I got this error message when I did migration from my access database to SQL Server. Thanks Line 3: Incorrect syntax near '?'. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace...
  6. rnooraei

    Migrating ASP.NET 2.0 with Access to SQL Server.

    Hi I have a small application which has been built with ASP.NET 2.0 and Access database. Now I want to move this application to SQL Server, Should I rebuilt the datasource with SQL Server? I did change the connection string but didn't work for me. any help appreciated. here the sample of my...
  7. rnooraei

    Migrate Access database to SQL Server

    Hi I would like know what will be involved to migrate from Access database to SQL Server database. My application it works based on windows authentication. Any help appreciated Thanks
  8. rnooraei

    Problem with Group

    I have the following formula which is attached to a group. The ELSE part is not working. It supposes to check for CONTACT_ID and if there is no CONTACT_ID, it should show "Not Assigned" but in my case it doesn't show any title for this group. any help appreciated. if not isnull...
  9. rnooraei

    open report in pdf format

    Hi I have this code that open my crystal report. I would like to send it dircet to pdf file not open with crystal report because when I open it in crystal report I get broken link for print, export, ... I tried CRRedist2005_x86.msi and it didn't work. is there any way to do that? Thanks...
  10. rnooraei

    System.mdw problem

    Hi I have created a new System.mdw file using Work group Administrator in different place and call it BAR.mdw. I would like to have only my BAR.MDB connect to this MDW but seems whatever database I open, it will be effected by this file. Any help appreciated
  11. rnooraei

    Security and DBA password

    Hi I have been told to create a read-only access to Access database for reporting purpose. I learned how to do that using Workgoup Administrator (System.mdw) and create User and Goup Account. Here is my problem My database has password so when you pass the first level which is User Account it...
  12. rnooraei

    Setup read-only user account

    Hi I have been told to create a read-only access to Access database for reporting purpose. I learned how to do that using Workgoup Administrator (System.mdw) and create User and Goup Account. Here is my problem My database has password so when you pass the first level which is User Account it...
  13. rnooraei

    CrystalReportViewer Icon from the toolbar is Missing

    Hi If veiw crystal reports on my desktop the icons at the top of the report show up. When I use a browser from a our intranet (after deployment), the Icons are missing. Thanks for help
  14. rnooraei

    Implementing crystal report

    Hi I have crystal report as part of my ASP.NET 2.0 application. when I ran it from my desktop, It was working fine. I implemented in server and now I get the following error message. Any help appreciated The report you requested requires further information...
  15. rnooraei

    LinkButton on GridView

    Hi I have the following code in my GridView, I would like to make my linkbutton visible or invisible (depend on action) please see the following code Dim CancelButton As LinkButton = CType(Me.grdContacts.FindControl("LinkButton_Cancel"), LinkButton) Dim DeleteButton As...
  16. rnooraei

    Template Editing Mode in GridView

    When I insert a new row into GridView using FormView, I would like to populate the GridView in edit mode (EditItemTemplate) not ItemTemplate. The reason is I want to edit that inserted row right a way. How could I do that? Any help appreciated Thanks
  17. rnooraei

    Popup message

    Hi How could I have a javascript pop message in the following code? I don't have any button to attach my code like this Button1.Attributes.Add("onclick", "javascript:return confirm('My message')") I would like to popup a message when I switch beetween to event. Any help appreicated. Thanks...
  18. rnooraei

    Problem with onClick attribute

    Hi I dont't know why I can not call javascript here. There is not popup message. any help appreciated. Protected Sub grdContacts_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles grdContacts.RowDataBound If e.Row.RowType =...
  19. rnooraei

    Focus on Popup message

    Hi I have the following code to get confirmation, before deleting a row. My problem is the popup window not always get focus which means it already open but user can not see it (it is going behind the current window). How could I fix this problem? Any help appreciated. Thanks Protected...
  20. rnooraei

    Read-only Database Access

    Hi, I'd like to create a user that has read-only access to a database. Any help appreciated. Thanks

Part and Inventory Search

Back
Top