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. SGLong

    Configuration Problem - Element 'buildProviders' cannot be defined below the application level

    As far as I can tell, the web.config file is in the root folder - 'public_html' on the website and 'MyRootFolder' on my local machine. The .rpt files are in subfolders from there - 'public_html/Reports' and 'MyRootFolder\Reports'. It just doesn't make any sense to me.
  2. SGLong

    Configuration Problem - Element 'buildProviders' cannot be defined below the application level

    I"m extremely frustrated. I've built a new website (VS 2010 - C#) and am trying to deploy it and I cannot get past the above error. I've Googled so many different posts and studied all of their suggested solutions. Some of them seem very straight-forward and others just don't give me enough...
  3. SGLong

    How do I Call a SQL StoredProcedure from JavaScript

    Thanks... that will help (I hope!)
  4. SGLong

    Having trouble validating a login password

    I’m building a web based user access system based on the asp.Net Membership, Roles, and Profile system. I’m able to create new user accounts with a SQL stored procedure. Now I’m trying to validate a user login working against the stored use account details. My aspnet_Membership table...
  5. SGLong

    Unable to read a SQL UniqueIdentifier element in C#

    Never Mind... I was able to figure it out.
  6. SGLong

    Unable to read a SQL UniqueIdentifier element in C#

    I have a ASP.NET page in C# that calls a stored procedure and returns a small result set, and I'm unable to read the UniqueIdentifer element from that result set. What am I doing wrong? Steve Here is the final select statement of my Stored Procedure that contains the value I need the C#...
  7. SGLong

    Hiding a HTML table in code

    That's what I needed...thanks!
  8. SGLong

    Hiding a HTML table in code

    I am working on an ASP web page that contains a HTML table with an id value. In the code behind file I want to toggle the visibility of the table but am not able to find a reference to it in intellisense. Here's a partial extract from the aspx file: <table id="tblRegInfo"...
  9. SGLong

    Where Is My Control

    It took a while, but I was able to identify the 'context'.
  10. SGLong

    Where Is My Control

    It's been a few years since I've done any C# coding and I'd like to brush up on things and get back into the job market. From the FinishButtonClickEvent I'm trying to access the fields I've created in my form (UserInfo), but for some reason VS2010 is not able to resolve them, giving me the...
  11. SGLong

    How To Determine if A Connection is Already Open

    Mike, We are using MSSQL-2005 and MSSQL-2008. JRB, Some of the procedures we call can be called several times per record, let alone per table. Opehing a connection multiple times on a 3000 to 4000 record set is taking a lot of processing time unnecessarily. As much as I dread the task...
  12. SGLong

    How To Determine if A Connection is Already Open

    I'm running into a problem where I need to know if I already have a connection to SQL established so I don't waste time opening another connection. I have several procedure files that are issuing a command like nHandle = SQLCONNECT('MyDatabase') There are times when the main program also...
  13. SGLong

    Connectivity Error Migrating DBF to SQL

    Mike, Sorry to report that they didn't work here. I don't know what version you used but we're still on VFP 6 here. For your first suggestion I got 'The multi-part identifier "sp.key" could not be bound.' For the second one I ended up with a column called 'expr' that had 'sk.key' in every...
  14. SGLong

    Connectivity Error Migrating DBF to SQL

    Mike, Thanks for the tip. I'll give it a try and let you know what happens. Steve
  15. SGLong

    Connectivity Error Migrating DBF to SQL

    Mike, I've been tasked with migrating off of native VFP tables to SQL. There is a fair amount of code that would have to be modified if I were to change the column name. If there's no other alternative that's what I will do but I will need to present a convincing argument to my manager for...
  16. SGLong

    Connectivity Error Migrating DBF to SQL

    I am trying to migrate a DBF into a SQL table and am having a 'keyword' problem. The DBF contains an integer field called 'key'. I've created the SQL table with that value (actually [key]) and it works fine. The problem is when I try to create a VFP Remote view using the view designer it...
  17. SGLong

    VFP Compiler for .Net by etecnologia.net

    Thanks... that's sort of what I had suspected when I saw that the last update was March 2010.
  18. SGLong

    VFP Compiler for .Net by etecnologia.net

    I just found this when doing a Google search. Has anybody used this yet? http://www.etecnologia.net/products/VFPCompiler/VFPCompiler-index.htm Steve
  19. SGLong

    How To Use F2 and F10 Function Keys for Custom Purpose

    I am working on a data entry screen where I want to emulate the keystrokes used on a Bloomberg Terminal. My emulation works fine for keys F3 thru F9 and F11 but there is no response to F2 or F10. In the KeyPress event I placed the following diagnostic code. WAIT WINDOW ALLTRIM(STR(nKeyCode))...
  20. SGLong

    Need Solution For Unique Rounding Problem

    Thanks for all the tips. I found an associate who was a whiz at Algebra, and with his help this is what we came up with: nRtnVal = (nPrice + 0.05) - MOD(nPrice, 0.05) DbMark was probably the closest to the solution we came up with. Following his lead, changing the '0.05' to a parameter...

Part and Inventory Search

Back
Top