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 Chriss Miller 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: SGLong
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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#...
  4. 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"...
  5. 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...
  6. 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...
  7. 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...
  8. 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
  9. 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))...
  10. SGLong

    Need Solution For Unique Rounding Problem

    I need to take some security prices (i.e. Stocks, Bonds, etc.) and round them up to the nearest $0.05. For example, 21.4358 becomes 21.45 and 14.5110 becomes 14.55. Does anyone have any programmatic solutions for this other than a "brute force" CASE construct? Steve
  11. SGLong

    How To Close Acrobat Reader

    Using tips from this forum I am using VFP to background print PDF files. Also using tip from here I am closing the Acrobat Reader. The closing of Acrobat is only partially successful. The program disappears from the task bar, but if I open up the task manager I still see AcroRd32.exe in the...
  12. SGLong

    How To Dynamically Add Valid Method

    I have a form with an existing grid. In certain circumstances I need to dynamically add a column to the end of the grid. The problem is that the text box for that column needs to have a VALID event built also. This is what I have so far: LOCAL nCurrentColumnCount nCurrentColumnCount =...
  13. SGLong

    No update tables specified error

    I am running a fairly simple SQL Passthru command (see below) and am receiving the following error message when I try to access the result set (the 'BROWSE' command below): No update tables are specified. Use the Tables property of the cursor (Error 1491). nHandle =...
  14. SGLong

    How To Use Crystal Report Without Predefined Dataset

    Currently I have a web page where I build a report dynamically and display it as a text item. I'd like to come up with a nice looking report using Crystal Reports, but everything I read seems to indicate that the data set needs to exist at design time. It doesn't - it only exists at run time...
  15. SGLong

    Designer Generated Code Not Generating

    I've just upgraded from Visual Studio 2005 to Visual Studio 2008 (Version 8) and whenever I add a new control to an existing web form (or create a brand new web form) none of the "Web Form Designer Generated Code" is generated. Is there a switch or setting somewhere that I need to set in order...
  16. SGLong

    Replicating VFP data to SQL through triggers

    We want to start taking advantage of SSRS (SQL Server Reporting Services) but the bulk of our data is in VFP tables. I was thinking that if we created SQL counterparts to all of our tables we could use VFP Triggers to keep the SQL table synchronized with its VFP counterpart. This would allow...
  17. SGLong

    What Type Of Control To Use

    I'm trying to determine how various web sites handle the Question / Answer type of presentation. I'm talking about where there is a list of Questions that look like a link control and when you click on it the answer appears between the clicked link and the next one in the list. Sample code...
  18. SGLong

    VFP6 to VFP8 Menu &amp; Screen Problems

    We are getting ready to deploy an upgrade to our application - moving it from VFP6 to VFP8 and have noticed several things that may be "deal breakers". I've searched here and the help files for clues and haven't found anything. 1] When we start up our Application under VFP8 the menu bar shows...
  19. SGLong

    Using Crystal Reports With MS Access

    I have a web-site that I've developed using MS Access that I'd like to add some reporting capability to. The few that I've done so far are "printer friendly" html pages, but they end up looking odd depending upon the browser and version viewing them. From this forum it's clear that Crystal is...
  20. SGLong

    Updating SQL Table Via SqlExec

    In VFP the use of an UPDATE command to a fox table returns the number of rows that were updated to _TALLY. I'm building an UPDATE command to SQL and using SQLEXEC to run it. Is there a way to get back from SQL the number of rows that were updated also? Steve

Part and Inventory Search

Back
Top