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

    custom site definiton

    I am new to custom site definitions. I am trying to make changes in the onet.xml file. basically I want to get ride of the image on the default page. This was taken from the sts site def. I don't want an image on the right web part, and I also want to add the all users web part over there. Any...
  2. NickMalloy

    multiple insert for list

    I basically want two pages for inserts on a list. one would have prefilled info already entered, and the other would be without that info. How could I accomplish this? Nick
  3. NickMalloy

    dynamic webcontrols in asp.net 2.0

    How do you get data from dynamically created textboxes that are in a placeholder that resides in a content page controled by a master page. I recreate the textbox everytime the page loads. I used this same code in 1.1 and it worked fine, now it isn't. Here is two ways I have tried <code> Dim a...
  4. NickMalloy

    Dropdownlist in a detailsview updating

    I have the following code that has a dropdownlist in the detailsview. When I click update I get this Could not find control 'drpTime' in ControlParameter 'startTimeDisplay'. <code> <asp:DetailsView ID="Detail1" runat="server" DataSourceID="ObjectDataSource3" Width="350px"...
  5. NickMalloy

    asp.net 2.0 controls naming convention.

    I want to know if there is a list of naming conventions for the new controls in asp.net 2.0. Anyone have one. When I say naming convention I am talking like a textbox would start with txt
  6. NickMalloy

    Help with a column

    I have the following query where the inner select is creating an error saying "Syntax error converting the varchar value 'January ' to a column of data type int. How can I fix this?? Select title, story, startdate, enddate, (select monthName from tblMonths where datepart(month...
  7. NickMalloy

    coding standards

    I am working on putting together a document of coding standards for my company and want to work on some data access standards. Can anyone tell me if there some good articles somewhere on this?
  8. NickMalloy

    search box

    I am trying to move where the search box appears on my start page, but can't figure out in Front Page how to move the thing. What can I do?
  9. NickMalloy

    looking for show/hide example

    I am looking for a good example of showing and hiding content within a <div> using css?
  10. NickMalloy

    Visual Studio

    Can you use Visual Studio to edit a theme or do you need to use FrontPage?
  11. NickMalloy

    Looking At Sharepoint

    I am trying to detirmine if sharepoint is the way I want to go. Can someone tell me if sharepoint can do the following and how easy it is to do on these. Documents that are restricted based on a group or by a user. I want to restrict documents where if a user doesn't have access they can't pull...
  12. NickMalloy

    Connecting to MS Access DB through DSN Connection

    What would my connection string look like?
  13. NickMalloy

    help with query

    I have three tables and want to combine them for a query main ---- order_by deptid title name building department ---------- deptid deptname building -------- buildingid buildingname I want to grab everything in the main table, but I want to replace the deptid with the name that corespondes...
  14. NickMalloy

    choose statement

    I have ben trying to figure out how a choose statement works. I haven't been able to find any documentation on it. Say I have a case statement that I know wont work in jet SQL. In sql server it might look like this tbltest.field1, case field1 when '1' then 'pos'...
  15. NickMalloy

    Converting Access Queries to SQL Server

    I have some Access Database where they include sql statements such as last(date) how would you convert this to SQL Server? Would you use MAX?
  16. NickMalloy

    help with SQL query

    I am trying to combine two column into one with an added'/' in between the values. qryHeightWeight2.[Weight (lbs)] + '/' + Convert (decimal(10,2), round([Weight (lbs)]/2.2, 2)) AS totalWgt, I am receiving an error Syntax error converting the varchar value '/' to a column of data type int...
  17. NickMalloy

    working with tables

    I have a page that looks like the following code. Is there a way to tell the page to put the border around the outside table, but not the inside table? <div id="righttop"> <table> stuff here <table> stuff here </table> stuff here </table> </div> Here are my styles #righttop { float: left...
  18. NickMalloy

    creating a horizontal menu using a list

    I want to create a horizontal menu using a list or something simular using css. my code looks like this. I can't figure out how to make this horizontal. <ul class="menu"> <li><a href="#">link 1</a> |</li> <li><a href="#">link 2</a> |</li> <li><a href="#">link 3</a></li> </ul>
  19. NickMalloy

    table with static header

    Is there a way to make a table with a static header that will work in IE and doesn't use Javascript? How would you do this? I tried experiementing with <thead> and <tbody> tags.
  20. NickMalloy

    setting read only on text box

    I want to set a textbox to read only through javascript. My script should first set a textbox to a value of 0.00 and then make it read only. The 0.00 works fine. f.MeritPC(i).value = "0.00"; f.MeritPC(i).readonly = true;

Part and Inventory Search

Back
Top