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: jbenson001
  • Content: Threads
  • Order by date
  1. jbenson001

    Update a table with a Join

    remove the alias "B" from this line update Base B
  2. jbenson001

    Set Master Page properties from UC code behind

    Hello all, I have a user control that is placed on page that uses a Master Page. From the codebehind of the user control, I would like to set some properties on the master page. I haven't found a way to do it. I've tried several version of this: me.Page.Master.title.. however it doesn't...
  3. jbenson001

    Force Reload of CSS Style Sheet

    Hi all, Not sure if this is the right forum, so let me know.. To force the reload of images I know you can append a querystring to the end of path of the file. Can the same thing be done to force the reload of a CSS syle sheet? Thanks, Jim
  4. jbenson001

    CSS with TreeView help

    Hey everyone, :) I am by no means a CSS expert, in fact, I just recently started using it. I need some help to see if this can even be done. I have a treeview control which is only one level deep off of the master node. So basically it is a treeview of cities, when you click the "+"...
  5. jbenson001

    SQL Server 2005 Scripting Options

    Hi everyone, I am trying to find how to set the scripting opitons in 2005. For example, in 2000 you have a wizard where you can choose multiple objects and select multiple scripting options such as generation a CREATE and/or DROP statement: if exists (select * from dbo.sysobjects where id...
  6. jbenson001

    Order By in View problem

    Hi all, I have a view defined as(SQL Server 2005): SELECT TOP (100) PERCENT IsActiveFlg AS Active, Name, Address1 AS [Address 1], Address2 AS [Address 2], City, State, Zip, HomePhone AS [Home Phone], BusinessPhone AS [Business Phone], CellPhone AS [Cell Phone], CustomerId FROM dbo.Customer...
  7. jbenson001

    Case sensitive string compariason

    Hi all, I am devloping a vb app in VS2005. I noticed that the string comparison is case sensitive. Is there a global(project or solution) setting that can be changed so that string comparisons are case-insensitive? Thanks Jim
  8. jbenson001

    Conditional Size of Field

    Hello, I have a report I am using in VS2005. I have address fields being populated from a db. What I would like to do is to adjust the width of the City column so that the City and St fields are right next to each other: MyCity, NJ 12345 This Other City, NY 12345 is there a way to do...
  9. jbenson001

    String Array Search

    I am creating a 1-Dimensonal arry of strings like this: Dim OTC() As String OTC = MyString.Split(",") What I would like to know is how to seach my array(OTC) for a specific value, and get the idex of it. ie. OTC.Find("MyString") (Not working obviously) If I type OTC., I see indexof...
  10. jbenson001

    DataGridView

    When using the datagridview in .NET 2.0, the first row is selected by default. I would like the grid to appear with no rows being selected. I looped through the rows colletion and set the selected property to false for each row, however, the first row is always showing as selcted. Is there...
  11. jbenson001

    .NET 2.0 Error Handling

    I have a question for you gurus.... I am confused in error handling in 2.0. For example, in 1.1, lets say you have a simple page, with a datagrid bound to a dataset. You can use the wizard to create the dataadapter, dataset and connection objects. Then the code is simple .. If Not...
  12. jbenson001

    Template Columns in a DataGridView

    Hello all, Is there a way to add any type of control to a DataGridView other than the standard textbox, checkbox, etc. that are available in the dropdown? I would like to add a checkboxlist if possible. Thanks.. Jim
  13. jbenson001

    DataGridView Binding

    Hello all, I am new to VB.NET. Actually I develop in ASP.NET 1.1 and 2.0 using VB.NET. I have a question about the DataGridView. I am trying to find an event that will give me access to each row as it is being bound. For example, in ASP.NET I would use the RowDataBoundEvent. Then in...
  14. jbenson001

    Cookies Cleared on Shutdown

    Hello all, I had to reinstall XP Pro recently. The issue I am having is that when I restart my PC, and go to IE, all my cookies have been deleted. This is a pain, since I want most of them to be saved. Can anyone tell me why this would be happening, and how to stop it? Thanks, Jim
  15. jbenson001

    Money Data Type

    Was wondering if anyone had an opinion, or heard of any downfalls to using a money data type. I have a column that will store payment amounts. Was wondering if I should use money or something like a decimal(10,2). Any comments or suggestions would be appreciated. Jim
  16. jbenson001

    Using the ProptiesToLoad property

    Using an ASP.NET app you can do: oSearcher.PropertiesToLoad.Add("uid") But what I would like to know is what are the possible propeties available? I have not found a list anywhere in the help or on MSDN. Any help would be great! Thanks Jim
  17. jbenson001

    Membership Provider in ASP.NET 2.0

    Has anyone used this. I am getting a bit frustrated. I want users to log in to my sQL Server 2005 DB using the login control and create logins using the Create User Wizard. I ran aspnet_regsql.exe which created the necessary tables in the DB that I specified. This is fine. The problem is I...
  18. jbenson001

    VS2005(ASP.NET) and Crystal Reports

    Hello all, I am not sure it this is the correct fourm for this question. I am running VS2005 and creating a Crystal Report. I then set the CrystalReports viewer's datasource to the crystal report I just created. The report previews fine in design mode. The problem I am having is that...
  19. jbenson001

    "Invalid Class String" Error When Creating a Diagram

    When I try to create a Database Diagram, I get the above error. I am sa on SQL Server 2000. SP4 has been installed. Has anyone run into this? I have searched Microsoft's KB with no luck Any Ideas??? Thanks, Jim
  20. jbenson001

    Dynamic <DIV> tag???

    Hello all, I am creating a form by adding controls dynamically. One of my controls is a DataGrid which has about 20 rows. In the past when not creating the form dynamically, I put the grid inside of a <DIV> tag so that I can have scroll bars to appear. I know the <DIV> tag is HTML, but is...

Part and Inventory Search

Back
Top