Search results for query: *

  1. B

    Rules / Guidelines for using Ribbon control?

    I downloaded the Ribbon control that resides on CodeProject.com. I am trying to use this and am unable to as it errors out. I was wondering if there is any special rules for using this. I wouldn't think so but when I go to show the form that contains the Ribbon control, I provide a Try Catch...
  2. B

    Dynamically modifying an ASP Repeater Control column?

    I have an asp:repeater control on a form. It contains 4 columns. Based on a certain value as a result of a database read, the 4th column, needs to contain a button control else it will contain plain text. How do I this in the code-behind using VB.Net? The code that I have is below but it's not...
  3. B

    Opening and Reading a Web.Config file for connectionstring

    I have a web application that is needs to go to the Web.Config for the connection string. Do you have a code example in VB.Net?
  4. B

    Opening and Reading a Web.Config file for connectionstring

    Can anyone show me a code snippent on how to open and read a Web.Config file and locate the connectionstring? Thanks,
  5. B

    VS 2003 and Panels question

    Yes...I finally tried CssClass and that worked! Thanks
  6. B

    VS 2003 and Panels question

    I have a VS 2003 Web app that I'm creating. I'm using a Panel control and I'm trying to apply a CSS class to this panel. However, when I try code the following statement <asp:Panel class="pnl2" runat="server"> it doesn't like the "class" attribute saying "could not find any attribute 'class'...
  7. B

    First time for this Error Message?

    Here is my code and yes, I believe I know what your saying. I've revised the code and now I'm getting the "Database Login" prompt (See attached screenshot). Also, I think the code that I have is more than what I need. Private Sub rptSingleWorkOrder() Try strSQL =...
  8. B

    First time for this Error Message?

    That's just it....my code, from the point of where I call the routine until the routine ends throws no exception. I don't even know where or how the error gets generated because I've stepped through the entire process. Kinda weird! As I mentioned, I've never seen this kind of error before.
  9. B

    First time for this Error Message?

    Annie, That still didn't work. Got the same message again.
  10. B

    First time for this Error Message?

    I have a VB.Net app that generates quite a few Crystal Reports (that's the plan anyway). My problem is that I keep getting the attached error. This particular query uses 2 tables. I have some other reports (I just started developing them) that use only 1 table and they work fine. So, I'm...
  11. B

    Can't load file or assembly?

    I keep getting the following error message when I try and run a VB.Net app. This program, EBOLVendorReports, calls the DLLEbolFtp.DLL. I have recompiled the DLL and then recompiled the EBOLVendorReports that calls it and it still won't work. I have even tried rebooting my machine and it still...
  12. B

    How do you sort a Structure Array?

    John, Thanks for the clarification. After reading it more carefully, I tried it and it worked perfectly! Thanks again!
  13. B

    How do you sort a Structure Array?

    JohnH, Your post makes a little more sense to me, the last example specifically. With that in mind, I need to return 3 values (which would be the 3 fields I'm sorting by) in the function. Public Function CompareAge(ByVal x As student, ByVal y As student) As Integer Return...
  14. B

    How do you sort a Structure Array?

    I'm using VB.Net 2005. I have created a Structure Array that contains 7 fields. I am trying to figure out how to sort this thing and have no idea. I've been reading up on the Array.Sort function and I'm bombarded with Overloads. I just don't know how to set up the statement. Below is my code...
  15. B

    Crystal Reports Error ?

    Been there done that....still doesn't work!
  16. B

    Crystal Reports Error ?

    Has anyone ever seen this error???
  17. B

    Crystal Reports Error ?

    My company has an application that utilizes Crystal Reports 11. This application runs on terminal servers and has recently been throwing the following exception. Please see the attachment. Has anyone ever received this error before. What causes it? Thanks,
  18. B

    Strong Assembly Name Error?

    I developed this DLL so does that mean I need to sign it? If so, I have already done this, however, I did not password protect it. We have no need to do this with inhouse apps.
  19. B

    Strong Assembly Name Error?

    Has anyone seen this error before and how can I correct it? Please see the highlighted line in the Error List of the attachment. Thanks,
  20. B

    Problems using RDO Redemption Object?

    I am using the Outlook Redemption Object library and having a difficult time in using the RDO Objects. All I'm trying to do is send multiple emails using email information from a .csv file. I've used the Redemption Objects before successfully but not the RDO Objects and the reason I need to use...
Back
Top