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 bkrike 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. firstdivision

    Display Events on Internet

    Hi, We have an internal sharepoint installation that has event lists we'd like to display on our public website in a read-only format. This must be a common need, but I have been unable to find any information about it yet. The site is hosted in a .NET environment (Framework 1.1), with Visual...
  2. firstdivision

    Using Information_Schema - Find auto-increment primary key

    Hi, I'm using the INFORMATION_SCHEMA tables to get the information to generate Sql statements. One unique problem I've come across is how to identify if a column is an auto-increment field. I need to know this so that I can write the insert statement without this field. Here's the two...
  3. firstdivision

    Framework Unregistered Overnight / Reboot

    Hi, There are three workstations in the group where I work that are constantly having the .NET framework uninstalled if we reboot and then leave the machine on overnight. When we arrive in the morning and try to load an ASP.NET application we get a "Server Application Not Available" error. In...
  4. firstdivision

    Public "Test" Sql Servers to connect to...

    Hi, I'm writing an ASP.NET application that will be used to connect to remote (or local) SQL Server databases. Does anyone know of a place to find public "test servers" that I would be able to connect to to test out my app? I have a server of my own, but I would like to try more... thanks, FD
  5. firstdivision

    Conditional SUM

    Hi, I did find a solution to this problem on my own, but it's really inefficient (I joined two sub-queries together), so I wanted to ask here because I'm sure there's a more elegant solution. Basically it's an accounting problem, where the data (debits and credits) is stored as follows...
  6. firstdivision

    DataTable in Session Bonbs out (sometimes)

    Hi, I have a datatable stored in the session that is bound to a datagrid with paging enabled. When you first load the page you can click through the datagrid pages fine, but eventually (maybe after 9 clicks) you'll find that the datatable in the session suddenly has zero rows (and the datagrid...
  7. firstdivision

    Just Curious RangeValidator Behaviour

    Hi, Just kind of wondering, why does a single dash (i.e. "-") pass the range validator control as a "single between the values of 0 and 24"? I realize that this is probably because you could have "-123", but I would think that just "-" should fail. Kind of like how "$123" fails when it's set...
  8. firstdivision

    String.Format - WeekdayName Replacement

    Hi, Since this code: WeekdayName(DayOfWeek.Monday, True) returns "Sun" (i.e. Sunday). I'd like to find a way to get String.Format (or some other method from the Date namespace) to do the same thing (return the abbriviated day of the week). My guess is that the error in the above code is...
  9. firstdivision

    Catch SqlException

    Hi, Is there a better way to access the error codes in ASP.NET for a SqlException than: Try 'access data class which re-throws the sql error exception if it finds one Catch sqlerror As SqlException Select Case sqlerror.Number Case 2627 'Sql error for key vilation...
  10. firstdivision

    Populate datagrid with subset of datatable

    Hi All, I'm trying to select subsets of data and bind them to programatically generated datagrids. The code I came up with seems like it should work, and it almost does....but not quite When I do this: TheDataGrid.DataSource = MyDataSet.Tables("MyTable").Select("MyItem='" & AnItem & "'")...
  11. firstdivision

    SourceSafe Integration

    Hi, I've previously enabled the SourceSafe integration with Visual Studio 2003 by running the install from the SourceSafe CD itself. Now I need to enable SourceSafe integration in Visual Studio 2003 but I don't have the SourceSafe CD available. Is there another place to get the required...
  12. firstdivision

    ActiveX FTP control?

    Hi, Has anyone ever used an ActiveX FTP control to allow users to FTP files right from a web page? If yes, can anyone recommend a good one? A free good one? :-D Thanks, FD
  13. firstdivision

    VS.NET - ASP.NET - SourceSafe - Projects - Deployment

    Hi, I'm a little confused about the integration between Visual Studio 2003 and SourceSafe. I currently have one large Visual Studio project stored in SourceSafe. What I want to do is split the project into multiple projects so that I can work on one portion of it at a time and release a...
  14. firstdivision

    New Controls Unseen by codebehind

    Sorry for the Subject, I couldn't think of a good way to describe this problem. The long description is: I just Find-and-Replaced a bunch of server control from a textbox to a label. However, the in .vb code behinds Visual Studio thinks the controls are undeclared (little blue line under...
  15. firstdivision

    Bind Queue Object to Repeater

    Hi all, I posted this first in the Classic ASP forum by accident, sorry for the cross-post. I have a Queue object that contains hyperlink objects. The queue object is bound to a repeater, with the intention of printing out a list of links. The repeater works (the template is printed the...
  16. firstdivision

    Bind Queue to Repeater

    Hi all, I have a Queue object that contains hyperlink objects. The queue object is bound to a repeater, with the intention of printing out a list of links. The repeater works (the template is printed the correct amount of times), but I can't figure out how to reference the hyperlinks inside...
  17. firstdivision

    Stored Proc Partially Runs, no error

    Hi, I have a stored procedure that's inserting a new record, getting the new ID, and then updating a second table with the new ID. When called from the ASP.NET page, the procedure runs, but only the first statement (as far as I can tell). So I end up with the record created, but no child...
  18. firstdivision

    Switch databases on the fly (same server)

    Hi All, I might have to be able to do this, so I thought I'd ask if it was possible first. :) What I (might) need to do is switch databases on the same server. The databases will have the exact same structure, but different data. I know it can be done through the File -> Connection menu...
  19. firstdivision

    Re: Common Dialog FAQ

    Hi, When using the common dialog control found on: http://www.tek-tips.com/faqs.cfm?spid=705&newpid=705&sfid=2484 Shouldn't the common dialog return the filename and the extension when ShowSave is called? Or am I just doing something stupid here... Here's the code I use when calling: Dim...
  20. firstdivision

    Data Type - Double, wrong value used

    Hi, I have a function that (basically) multiplies two numbers together. The two input parameters are Double data types. The values that get put into these parameters come out of a SQL server 2000 database (stored as real). When I hover over the statement that calls the funtion, the value...

Part and Inventory Search

Back
Top