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 strongm 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: *

  1. sarahnice

    Non modal form accessible from modal forms

    I thought so but was still hopeful. Thanks for your reply. I think the best option is to close the form3 when form2 is opened, forcing the user to re-open form3 from form2. Thanks
  2. sarahnice

    Non modal form accessible from modal forms

    Hi all, I am updating an existing application. The current situation is that the user can open a modal form (form1) from the main app window. From this form, they can open another modal form (form2). On the form1 I have added a button that opens a non modal form (form3). form1 and form3 are...
  3. sarahnice

    Count duplicate rows once

    Hi all, I have a table that I need to count the records, grouping them by proj_id and date_entry. This is fine until I try to only count duplicate record once. The table is as follows Management: proj_id, date_entry, name What I want to do is to have a count of all projects grouped by year...
  4. sarahnice

    Printing from Quick Reports Preview Screen not working

    Hi all, I am using Quick Reports with elphi 2005. I can preview a report fine but if I click on the print button on the preview screen, the report won't print. I get a small progress window, which stays at 0%, then disappears after about 3 seconds and the report doesn't print. If I print via...
  5. sarahnice

    Crystal for Win32 (Delphi 2005 Architect Edition)

    There are CrystalReportViewer and ReportDocument objects available when I create a new .NET project but when I try to edit my existing Win32 project, these objects are not available. They do not appear in the tools menu. If I select File > New and try to add a new Crystal Report, then it won't...
  6. sarahnice

    Crystal for Win32 (Delphi 2005 Architect Edition)

    Does anyone know a way to get crystal working with win32. I am using Delphi 2005 Architect Edition and my project is Win32. I am using Quickreports but would like to start using Crystal Reports. If I create a new .NET project, then I can use Crystal but I can't in my existing Win32 project. Is...
  7. sarahnice

    "Open With" always opens notepad

    Sorry for long delay. I was using CustomizerXP which had an option set to open all unknown files with notepad. I unchecked that option and all is good again.
  8. sarahnice

    Find utility not working

    Sorry for the long delay but after I did a clean install, then installed updates 2 & 3, it works again.
  9. sarahnice

    Referencing user control within user control from web form

    Had already added that line but still the same error.
  10. sarahnice

    Referencing user control within user control from web form

    Sorry, here is the error i'm getting Compiler Error Message: BC30002: Type 'WebUserControl1' is not defined.
  11. sarahnice

    Referencing user control within user control from web form

    I've tried the sample you gave me but I get the following error: Compiler Error Message: BC30001: Statement is not valid in a namespace.
  12. sarahnice

    Referencing user control within user control from web form

    All of this so far really doesn't do anything. I'm just trying to get the problem of referencing a user control to work. main.aspx: <%@ Page language="VB" debug="true" Inherits="MainControl" Src="~/codeBehind/main.aspx.vb" %> <%@ Register TagPrefix="Components" TagName="Right"...
  13. sarahnice

    Referencing user control within user control from web form

    I have registered the user control and it shows up fine on the aspx page. The problem arises if I try to access any of the functions in the ascx.vb file from the aspx.vb code behind file. I have declared the class for the user control as public and the functions i'm trying to access is also...
  14. sarahnice

    Referencing user control within user control from web form

    I haven't declared any namespaces for any of the code behind files. I just wanted to know if I should have.
  15. sarahnice

    Referencing user control within user control from web form

    I've tried that but keep getting the type not defined error. If I change the type to UserControl, ie Public WithEvents MyUserControl As UserControl then I can get it compile but can't access any of the functions in that control because they are not a member of 'System.Web.UI.UserControl'...
  16. sarahnice

    Referencing user control within user control from web form

    Hi all, I have an aspx page (main.aspx), which contains a user control menu.ascx, which in turn contains another user control poll.ascx. The code behind for the poll.ascx file works fine to a point. I want to call a function in this file depending on which of two buttons has fired the...
  17. sarahnice

    Access user control elements from code behind?

    Thanks for all your help. Got it working now.
  18. sarahnice

    Access user control elements from code behind?

    Thanks for the help. I'm starting to get something resembling what i'm looking for now.
  19. sarahnice

    Access user control elements from code behind?

    Apologies if this should go into a seperate thread. The reason for this user control is to implement an opinion poll on my sample site. I want the RadioButtonList to give a list of options, which are populated from the dataset. When the user selects an option and clicks on the vote button, the...

Part and Inventory Search

Back
Top