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

    MSBuild

    Hi all, We are planning build our application using MSBuild, I would appreciate if some one can provide some useful links to it.. Thanks for all your help..
  2. compu66

    Microsoft Enterprise Logging

    Hi all, We are using MS Enterprise logging and I would like to know if it supports loggerMaxSize and LoggerFileRolls. I appreciate if I anyone can provide me with some useful links . Thanks in advance for all your time.
  3. compu66

    how to compare datareader value in if

    Hi all, I am getting an error patientid as not declared Dim strstatus As String = drAccessionNumbers.Item(1).ToString() If (DirectCast(drAccessionNumbers("status"), String) <> "Provisional") AndAlso (DirectCast(drAccessionNumbers("status"), String) <> "Completed") Then sql = "UPDATE...
  4. compu66

    Hyperlink tooltip dont show up

    Hi, Here is my code For Each Task As ExamTask In Tasks(AccNum) Dim lnkTask As New HyperLink lnkTask.ID = "lnkTask_" + Task.ExamTasksID.ToString() lnkTask.ImageUrl = Task.ImageURL lnkTask.NavigateUrl = "Javascript:window.showModalDialog('../Reports/AddExamTask.aspx?acc=" &...
  5. compu66

    How to disable the javascript pop up for a control??

    Hi all, I want to disable javascript popup for a linkbutton? Is there any way. The reason is the popup should come for only linkbutton1 but due to some coding that cant be removed its getting popup even for linkbutton2 which is not required. Is there any way to stop?? Thanks for any help in...
  6. compu66

    Hyperlink doesnt respond properly

    Hi all, I have a hyperlink "Save" which should through a pop up when the "setcategory" (which is another hyperlink when user click it opens a javascript window with a dropdown from which a category need to be selected) is not selected. Now my problem is when initially I click on "save"...
  7. compu66

    How to validate a textbox for the spaces

    Hi all, I have textbox,if the user enters spaces it should throw an error. I think it can only be possible by custom validator.Or is there any thing other way than this. Thanks.
  8. compu66

    can I dispose dataset when returning the dataset

    Hi all, If we dont dispose the objects in finally what happens?? In my opinion if the objects are not disposed properly the application might run slowly because of improper resources.Am i right?? IF i am returning a dataset then in finally block if I dispose the dataset ,in any of the...
  9. compu66

    disposing the objects

    Hi all, If I write cmd.connection.dispose() In this only connection object gets destroyed ,or even command object also gets destroyed. Thanks for any help in advance.
  10. compu66

    how to write the nested ifelse in javascript

    hi all, can any one help me out with it. Thanks
  11. compu66

    There is weeks difference using this code to calculate age?? How to so

    Hi all, I am unable to figure out the problem.How there is weeks difference coming up. If sDOB <> "" And sScheduleDate <> "" Then If IsDate(sDOB) And IsDate(sScheduleDate) Then Try sDOB = Convert.ToDateTime(sDOB)...
  12. compu66

    Disconnected architecture

    Hey all, I am little confused,in disconnected architecture do I need to use this commands con.open() con.close(). I am suure its not necessary and not required but just confiramtion will help me. Thanks for help in advance.
  13. compu66

    how to hide '|' character when there is no date inthe textbox

    Hi all, I have a textbox where I have to display as abc | 123 . I could do it.But when the textbox has no repective values there should be nothing in the textbox but the character "|" is still visible.how to get rid of it. Thanks for any help in advance.
  14. compu66

    How to pass the value of the textbox

    Hey all I have a textbox which is visible,when visible the textbox values pass to another page(billing pge) properly. But from admin side we have the ability to disable modules.So if this textbox is disbaled then the vallues obviously dont pass. But heree my task is even if the textbox( which...
  15. compu66

    how to pop up a window for the linkbutton

    Hi all, I have a linkbutton,how to pop up a javascript for it. I tried but it does come up. btnSave.Attributes.Add("onclick", "javascript:ShowAlert();") Thanks for any help in advance
  16. compu66

    can I pop up a alert window for a linkbutton

    Hi all, I have a link button(btnsave). In the application there is btnsave_click handled. for this i am trying to pop up the javascript alert window. in .vb btnSave.Attributes.Add("onclick", "javascript:ShowAlert();") In the .aspx file i wrote function showalert(){ alert("this is already...
  17. compu66

    Datagrid datakeys error

    hey Dim dataindex as interger=(CInt(datagrid.DataKeys(CInt(e.Item.ItemIndex)))) I am getting Index out of range exception for this. Thanks for any help in advance.
  18. compu66

    How to validate a hyperlink

    Hi all, I have a hyperlink ,my requirement is if the hyperlink is not clicked then an error message should pop up. all validations provided are for input control and this is hyperlinks.How to handle it. Thanks.
  19. compu66

    Why does this happen

    Hello Public Function GetFTPInfoSQL() As SqlDataReader Dim cmd As New SqlCommand Dim da As New SqlDataAdapter Dim ftpInfo As SqlDataReader Try cmd.Connection = New SqlConnection(ConnString) cmd.Connection.Open()...
  20. compu66

    what is Request.form do

    Hi all I got a small problem usig this.When the controls were not there this was giving an error. Anyways can any one make me clear with what exactly is request.form does and any things to keep in mind while using this. Can any one provide any proper link to it. Thanks

Part and Inventory Search

Back
Top