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. 3587ch

    Invalid attempt to read when no data is present.

    Can anyone tell me what I'm doing wrong here? Imports System.Data Imports System.Data.SqlClient Imports System.Data.DataSet Imports InfoSoftGlobal Partial Class MultiSeries Inherits System.Web.UI.Page Dim MyConnection As SqlConnection Dim MyCommand As SqlCommand Protected Sub...
  2. 3587ch

    vs 2005 or vs 2008

    I have a couple of ASP.NET 2.0 applications that I'm told might benifit from a move to VS 2008 AND asp.net 3.5. I have been using VS 2005 and ASP.net 2.0 for a while, but I'm woundering if it is easy to move the applications or if it will be as big of an issue as it was moving from VS 2003 to VS...
  3. 3587ch

    Number of concurrent users

    I know there are a number of variables that factor into this, but I was woundering if anyone had any experience with the following environment? ASP.NET 2.0, a good size data collection application, on a shared host: my question is do you think it could support 25 concurrent users?
  4. 3587ch

    How do we allow Canadian addresses in our database

    I have a database and it is setup for USA address format Street, City, State (AB), Zip. What would I need to do let a user enter Canadian addresses? I know it's a silly question. Thank you,
  5. 3587ch

    Can I create an API for my ASP.net app

    The majority is writen in codbehind.
  6. 3587ch

    Can I create an API for my ASP.net app

    Not sure if I will, but just curious how it's done. Does anyone have any information on how I could create an API for an ASP.net/VB.net web app I created? Thank you,
  7. 3587ch

    Security Model Question

    Great information, Thank you so much,
  8. 3587ch

    Security Model Question

    When setting up an asp.net application using SQL Server 2005 as the database, I can create roles in the database and assign users to the roles and then in the app limit their access to pages or objects. I have scene system where once a user is assigned to a role there is a page with many many...
  9. 3587ch

    Trying to migrate Access to SQL Server 2005 Express

    It does a really poor job of upsizing the queries and code when you wan to create an adp file. I was hoping that someone might know of a better option. Thank you,
  10. 3587ch

    Trying to migrate Access to SQL Server 2005 Express

    I'm trying to migrate Access to SQL Server 2005 Express. I installed the SSMA but it will not connect ot my Express server (don't know why) I have Management Studio Express, but it does not include the Import options. Does anyone know how I can mirgate? Thank you,
  11. 3587ch

    Trying to identify money columns in gridview

    Jason, I'm not sure I get what yor telling me, yet. Here is what I'm doing now to bind the gridview. Basically I get an SQL statement from a query tool and then put it in a datareader and bind it to the gridview. I have never done the mapping you have suggested. Sub BindData() Dim...
  12. 3587ch

    Trying to identify money columns in gridview

    My columns are auto generated for my grid, they are not always the same columns each time it is rendered. I need to check and apply currency formatting if the column is money. This sample works to apply formatting, but it does not specifically check for money. Does anyone have an idea how I...
  13. 3587ch

    How can I parse out results

    The Split() worked great, may I ask another question? How do I get everything to the right of a = sign in a string? So if I have a variable sACCOUNT that has ACCOUNT=1234567 How can I get just the 1234567? Thank you,
  14. 3587ch

    How can I parse out results

    I have a third party function that does a process I pass it some parameters in the sParams string and then it returns a number of parameters in a result string. How can I get just the parameters out of the Result variable? Call pressLink(Me.hwnd, sParams, Result)
  15. 3587ch

    What is the last event to fire when a form opens

    What is the last event to fire when a form opens?
  16. 3587ch

    How can I stop the fliker

    I have tried putting docmd.echo false in the on current, load, activate, and open events but cannot stop the fliker of the screen. Is there anything else I can try? Thank you,
  17. 3587ch

    Trying to validate a combo box

    I have a form with a combo box that I want to make sure a user always selects from, for new or existing records. I tried using the Validation properties of the control but that does nothing. I used Is Not Null in the Validation Rule and a message in the Vlaidation Text. Is there a better way...
  18. 3587ch

    Want to show only first 40 characters in query column

    In a query column I would like to show only the first 40 characters that have been entered into the comments field. Is this possible? Thank you,
  19. 3587ch

    How can I find missed years

    I have a tblpayments with a clientid and payment date, payments are made yearly (sometimes). I need a way to findout for each client which years they missed. How can I do this? So I might say between 2005 and 2009 which clients missed a payment and then I need to know their clientID and the...
  20. 3587ch

    How can I get a number of minutes

    I have two combo boxes with time slots I need to calculate the number of minutes between the two times selected. cboTimeSlotA = 8:00 AM cboTimeSlotB = 2:30 PM This would be 390 minutes

Part and Inventory Search

Back
Top