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 SkipVought 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. Maven4Champ

    drivers/permissions restricted for EXE ran as local domain non-admin account

    Hi all, I'm at a loss and coming to this group in hope for an answer or insight. The scenario is as follows. We have a C# windows desktop application. The application will kick off an exe file which populates an INI file. The INI file is populated with data and then read in by the C# client...
  2. Maven4Champ

    CentOS 5 (Apache + GoDaddy UCC SSL)

    https://creative-clarity.com So, as you notice, the site shows as a security risk / invalid certificate due to a self-signed certificate where the cert is only valid for domU-12-31-36-00-1D-F1. I'm needing some assistance ASAP on how to properly install/configure either apache (httpd.conf)...
  3. Maven4Champ

    The connection's current state is closed...MySql db

    Hi, I am having an issue with the data reader and re-used open connections. I am getting the following error 4 times upon loading of my AddProjections.aspx page. System.InvalidOperationException: There is already an open DataReader associated with this Command which must be closed first. at...
  4. Maven4Champ

    Page crashses in IE6 - "Operation Aborted"

    All, I am having a very odd, and to the client, a very scary issue with my website. The site can be found at http://www.hixonandburger.com/index.htm and apparently the homepage ONLY throws an exception that states "operating aborted" in IE6. It seems to work in FF2 and FF3 and higher versions...
  5. Maven4Champ

    Can't center header on Firefox/IE when width changes

    Can anyone help on this? We go live on this tomorrow evening and I am trying to tweak the remaining stuff (i.e. this CSS) to get it ready for our fundraiser event. Any help is greatly appreciated.
  6. Maven4Champ

    Can't center header on Firefox/IE when width changes

    That's true but it only works on the small brackets that fit on the immediate screen. Click "View Full Bracket" and the page grows wider - but notice the header is still at the original centered position and isn't actually centered on the whole page...
  7. Maven4Champ

    Can't center header on Firefox/IE when width changes

    http://creativeclarityllc.com/Bracket4.aspx There is my page. I am trying to center the header on the page regardless of page width (i.e. if someone opens the single East bracket, its centered. If you open the full bracket, the page width drastically changes so we need to re-center the header...
  8. Maven4Champ

    bug in IE6/7 displaying inline list and input form

    Steve, Even though it's Joomla (a CMS), it's standard CSS and HTML that I am using for the actual structure and design. It looks as if I was testing in IE8 an not IE7 - good catch. As for the text not showing in Netscape, I'm not too worried about that. I would like to figure out with some...
  9. Maven4Champ

    bug in IE6/7 displaying inline list and input form

    All, a link to my page with the issues quite visible are is as follows: http://elance.creative-clarity.com/ As you can see, I have a few small issues that I am working on. The two I hope to have help with are the navigation and then search input form field. 1.) Navigation The navigation looks...
  10. Maven4Champ

    How to build a 2-dimensional array (2 columns, varying # of rows)?

    Ok I tried this and it may work: Dim oraArray(1, myDataset.Tables("MY_TABLE").Rows.Count - 1) As Object For r As Integer = 0 To myDataset.Tables("MY_TABLE").Rows.Count - 1 ReDim Preserve oraArray(1, r) oraArray(0, r) = dt.Rows(r).Item(0)...
  11. Maven4Champ

    How to build a 2-dimensional array (2 columns, varying # of rows)?

    I am starting with a dataset actually, see code below: Dim oraSQL As String oraSQL = "Select column1, column2 from db_table" Using connection As New OracleConnection(make_connection(my_environment)) Dim oracommand As New OracleCommand(oraSQL, connection)...
  12. Maven4Champ

    How to build a 2-dimensional array (2 columns, varying # of rows)?

    Hi all, I have a very general question that I hope to find assistance on. I have a Grid View that is populated with two columns (resp_key and resp_name). I want to loop through this gridview and add the values to a 2-dimensional array (2 columns w/ varying number of rows). From there I want to...
  13. Maven4Champ

    Remember state of checkboxes in Grid View

    Just as an FYI, I am still having trouble on this one so any assistance is greatly appreciated.
  14. Maven4Champ

    Best option for visually displaying errors on ASP page via VB code

    Well, I think I now have it working. I used an ArrayList to hold my values and in my FOR EACH loop, added values to the array list. I then call the array list as my datasource for the gridview and guess what - it does work! I just wasn't sure of the ability of the gridview on this one but it...
  15. Maven4Champ

    Best option for visually displaying errors on ASP page via VB code

    Hi all, I was hoping to get some input on a logical (and most efficient) way to dynamically build a grid (or html table) that displays validation errors that a user might encounter during a validation sub process. There is no "data source" of where these errors come from but simply a string...
  16. Maven4Champ

    Remember state of checkboxes in Grid View

    All, I have a near-complete solution built to manage our application roles and responsibilities. In the Grid View, I run a validation on what is checked and if two roles that should not be associated with a single person (segregation of duties) then it highlights the row in red, disables the...
  17. Maven4Champ

    System.IndexOutOfRangeException: There is no row at position 'xx'

    jebenson, Looks like that works better - thank you. Another lead-in question with this result. Nothing is happening in my loop after reading those records and comparing... I have tried Response.Write() but it only returns one record and taking that out never yields the results I expect. I am...
  18. Maven4Champ

    System.IndexOutOfRangeException: There is no row at position 'xx'

    I am receiving this error at position 330 in my loop. Here is the code: Dim excludedList As New ArrayList() For Each dr As DataRowView In dv1 excludedList.Add(dv1.Table.Rows(x).Item(0).ToString) x = x + 1 Next It...
  19. Maven4Champ

    number of indicies less than dimensions in array

    Whoops - I got to "click" happy. I have it adding rows into the array now with my original syntax not using the last line of code. I will now need to figure out why its erroring out with no row at position "xx" Thanks!
  20. Maven4Champ

    number of indicies less than dimensions in array

    All, Receiving this error when trying to declare, and add to a dynamic array. I may be doing this wrong because arrays aren't my speciality AT ALL. Here is the code I have so far: Dim x As Integer = 0 Dim excluded As String() Dim excludedList As New...

Part and Inventory Search

Back
Top