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 Wanet Telecoms Ltd 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: faithful1
  • Content: Threads
  • Order by date
  1. faithful1

    why is it????? can open file using < a href, but not javascript

    Hello, I'm going crazy trying to figure this one out. Any help would be appreciated. I can open up a local file using <a href="\\servername\sharename\filename" however, when I pass this to javascript, trying to do a window.open("\\servername\sharename\filename") I get file not found. The...
  2. faithful1

    Split function

    Please help. this would seem to be very easy, but turning into a nightmare for me. I need a split function that returns the last section of a string delimited by a given character. For example, I would like to split 'test-01-02' by '-' and have it return 02. Please help. Thanks!
  3. faithful1

    Must be easy! On Datagrid Remove borders from pager only!

    Can somebody please tell me how to remove the border from around the built in paging area? It seem like this would be simple! Thanks in advance [upsidedown]
  4. faithful1

    Rebind Datagrid on Edit - send value to Bind()

    Hello, I have a datagrid with an EditCommandColumn. My oneditcommand is Sub doEdit(ByVal sender As Object, ByVal e As DataGridCommandEventArgs) dgUsers.EditItemIndex = e.Item.ItemIndex queryAlpha(sort) End Sub When I rebind the data which is queryAlpha(sort as string), I...
  5. faithful1

    Help!!Can Add user to Active Directory, but can Not update

    Well, this is very strange to me. I can add a user to Active directory via a custom component. However, I can not update an existing user. This code is part of a component I am writing. I get the unknown error at the line **user.Properties["description"].Add("New description"); public void...
  6. faithful1

    Connect to Active Directory

    I am very new to this! Is there anyone who point me in the right direction on how to connect to active directory and view objects, especially in creating a directory entry and when a username and password is required. I am using Dim enTry As DirectoryEntry = New...
  7. faithful1

    Connect to Active Directory

    I am very new to this! Is there anyone who point me in the right direction on how to connect to active directory and view objects, especially in creating a directory entry and when a username and password is required. I am using Dim enTry As DirectoryEntry = New...
  8. faithful1

    Stored Procedure Values to Array

    I am calling a function that returns the top N partnumbers. Once I have the results, I want to take these partnumbers and enter them into another table. So far I have the following. I call the Stored Procedure successfully, but I need to enter the values into another table only if the stored...
  9. faithful1

    Add ID Column to DataTable - PLEASE HELP!

    Does anyone know if it is possible to add an id column to an existing datatable that autoincrements? I have tried, but the id column is null. I am filtering a cached datatable so the ids for the records will constantly change. This is what I have tried...but NO LUCK! I get zero records, I...
  10. faithful1

    filter datatable and bind to datgrid. HELP!

    Hello...i am trying to filter a datatable and rebind the results to my datagrid. My datagrid columns display displayed like so: <datagrid autogeneratecolumns=false> <asp:templatecolumn> <itemtemplate> <%#Databinder.EvalContainer.Dataitem,&quot;varLastName&quot;)%> </itemtemplate>...
  11. faithful1

    Filter Datatable and Bind to Datagrid

    Hello...i am trying to filter a datatable and rebind the results to my datagrid. My datagrid columns display displayed like so: <datagrid autogeneratecolumns=false> <asp:templatecolumn> <itemtemplate> <%#Databinder.EvalContainer.Dataitem,&quot;varLastName&quot;)%> </itemtemplate>...
  12. faithful1

    Dynamic Button - Who am I?

    Hello...I have created some dynamic buttons and a click event, however, I am having problems distinguishing which button was clicked. How can I display the name of the button that was clicked? Here is my sample code of the button created and the addhandler event. Thank you in advance...
  13. faithful1

    Iterating through controls - how do I display child controls?

    Hello... I am using the code below to display all controls on my page, however the result is only the parent controls(as follows): System.Web.UI.ResourceBasedLiteralControl System.Web.UI.HtmlControls.HtmlForm System.Web.UI.LiteralControl I do have textboxes on my page. I believe the textbox...
  14. faithful1

    Experts...Help! Complicated! Instr and Split Functions

    First of all, please forgive me if this makes no sense! =) I have an input parameter that returns a string as such: 1/Santa Ana,3,6,15,29,36,11,13,14,51,52,53,54/Jim Gohl,17,18,20,21,22,23,25,26,27,33,34,35/Joe Babcock The format is: location number(s)/Name The list just gets longer and...
  15. faithful1

    Help! Select List value to be sent to SQL query

    Hi, I am trying to create a page that does a query on an sql database then stores those values in a select list. Once the user selects a value from that list, I want to query the same database with the value that was selected and display those on the same page. So far, my first record set and...
  16. faithful1

    One Radio Button, Two Select Boxes

    Please forgive me if this is confusing, I am a newbie =) I have a form that has one radio button and two select boxes. I want the user to choose one of two options with a radio button. That will disable the opposite select box and enable the select box they chose. For example, the radio buttons...
  17. faithful1

    Scheduled Report to Printer Fails - Seagate Info 7.5

    When scheduling a print job to send to a printer, the job fails with no explanation. I can open the report from the server in Info Desktop in the designer mode, choose file and print and the report prints. The printer I am printing to is a network printer, and that printer has been installed on...
  18. faithful1

    db2 cast timestamp to date

    How can I cast a timestamp to a date and group by that date. Currently I am using cast(fieldname as date), but I get duplicate dates when I group by that field.

Part and Inventory Search

Back
Top