Search results for query: *

  • Users: Neal
  • Content: Threads
  • Order by date
  1. Neal

    Discontinuing Tapatalk

    Due to numerous issues with Tapatalk it has been removed from this forum'ware as it is not needed. This web site is fully mobile friendly (responsive) and will provide a far better experience when used directly. Did you know you can save web sites to your mobile device and launch like any other...
  2. Neal

    Testing VB.NET code

    Dim sFooo As String Public Sub Foo() DoFoo End Sub
  3. Neal

    Test

    Dim Foo As String Public Sub Foo() DoFoo End Sub
  4. Neal

    Test Code Integration

    Dim Foo As String Private Sub DoFoo() MessageBox.Show("Foo") End Sub
  5. Neal

    Test

    Dim foo as String Public Sub DoFoo() MessageBox.Show("Foo")
  6. Neal

    Wow!

    I installed VS.NET 2005 to my now deemed "test laptop" and wow! I cannot wait to get developing in 2005! I'm surprised it's July and we see Beta 1 already, and it ran great! Hopefully we'll see an early 2005 release of this amazing new version! The new components for Winforms are eye...
  7. Neal

    Side-by-Side with VS.NET 2003

    Has anyone proven it safe to install 2K5 Beta on your dev box without affecting your current work?
  8. Neal

    DLL Version Issues?

    Does .NET use "Binary Compatibility?" What I'm concerned is "when will my app break" when DLL's in referencing application are updated. The scenario is: I build a asp.net application that is an add-on, i.e. utility, for another web application. It references DLL's from this application...
  9. Neal

    Restarting a Service in Code

    I have an application I wrote (not a service) that clears log files monthly from my server. My stats program (DeepMetrix LiveStats XSP) seems to choke when this happens. After running my cleaning code, I'd like to RESTART the DMServiceController from the code. Any code samples of how to do...
  10. Neal

    Generating Database Diagram Docs

    I've seen an output from a program called RapTier. Curious if anyone uses this, or anything else to get a documentation/view of a database schema such as SQL Server DB's? Is "RapTier" the one to get or do you suggest another?
  11. Neal

    Numeric expressions against nvarchar(50)

    Hello, I'm developing an application against a database not in my control, I can only query against the structure. A column exists that holds order numbers, but the developers used nvarchar(50) for the column instead of int. I'd like to use expressions to search for order numbers such as <...
  12. Neal

    Getting dates for ThisWeek, LastWeek, etc.

    Does anyone have code to share to get the inclusives dates for the "current week", "last week" etc.?
  13. Neal

    Retrieving list of Host Headers programmatically?

    I'd like to fill a drop down of all host headers bound to the current IIS web site. For example, if you go to www.mydomain.com, there may be other host headers/web sites associated with this very same www.domain.com one. Is it possible, in asp.net/vb.net to retrieve the list of these host...
  14. Neal

    Http_referer?

    How can I catch the URL that was used to link to my web site? HTTP_REFERER doesn't work as that seems to only work on a Redirect. Say you go to google and find my product and click the link. How would I, from my site, capture the GOOGLE source/url of this?
  15. Neal

    Designing for Performance

    I am building a small asp.net application that started out as a small project and is now growing into quite an involved application. I put everything on one page (Default.aspx) and was just using the asp panel control to show/hide areas. Well, the viewstate grew quite large (datagrids in use as...
  16. Neal

    Request vs. ServerVariables, some same?

    Is there any difference between Request.QueryString and Request.ServerVariables("QUERY_STRING") Is there any difference in Request.Urlreferrer and Request.ServerVariables("HTTP_REFERER") I would like to get just the base URL, no page name or parameters (query string). For example...
  17. Neal

    Looking for ADO.NET Blackbelt level...

    Hello, I've read several ADO.NET books such as Bill Vaughn's, Microsoft's ADO.NET Core Reference, etc. Most of the books are ADO.NET basics. I'm looking for how to really ring out ADO.NET and get the most out of it. Anyone have any expert level ADO.NET book recommendations?
  18. Neal

    Sorting a Listbox

    I have a listbox that reads a few files in a web site folder. Any suggestions on how to sort the listitems by creation time? I need to research sorting/string.compare routines I believe. If anyone has any code to share, that would save some time. Thanks!
  19. Neal

    Deconflicting applications

    Let's say I buy an application using VendorNoone.v1.DLL and install it to my web application. I then go buy another asp.net application, but it's using a newer version which is VendorNoone.v11.DLL. When running the web application, there is an error due to ambiguous.... How do you handle...
  20. Neal

    Cache lifetime

    Okay, this one is almost funny! I am developing an asp.net application on my local system, I press the > to start the debugger and view the app, then close the browser to do more work. I have this code to cache a dataset: Dim ds As DataSet = Cache("directory") If Not ds Is Nothing Then...
Back
Top