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 Mike Lewis 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: 3DDD
  • Order by date
  1. 3DDD

    Editable DataGrid (ASP.NET 2.0)

    I have an editable datagrid in ASP.NET 2.0 There are two text boxes (TemplateColumn) inside the data grid. Requirement is when user enter some value in textbox1 and leaves then populate textbox2 with item description fron the database. Textbox does have OnTextChanged event but unable to find...
  2. 3DDD

    Display PDF in Crystal Reports

    Hi All, Does any one know how to display PDF in crystal report? I want to change the PDF files dynamically using vb.net. I have tried using OLE Object (Adobe Acrobat 7.0 Document) but with this I am not able to change the PDFs dynamically. All I get is the same PDF file which I browse while...
  3. 3DDD

    How to open report in a new window?

    Hi All, Does any one know how to open a report in a new window? I have a text box in a report and its action is set to open a report. The new report open in the same window. Is it possible to open this report in a new window? Regards,
  4. 3DDD

    Saving PDF files

    Hi All Does any one know how to upload PDF file on server to a known location using vb.net ? Thanks in advance.
  5. 3DDD

    Cancel Form Problem

    Private Sub button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button1.Click textbox1.CausesValidation = False ActiveForm.Dispose() End Sub
  6. 3DDD

    Datetime picker control

    Hi All Is it possible to navigate year by year using datetime picker in vb.net? if yes, please let me know. TIA 3DDD
  7. 3DDD

    Trimming a string

    Dim sTest, sFileName As String Dim iPos As Integer sTest = "C:\Program Files\Ares\AUTHORS" iPos = sTest.LastIndexOf("\") + 1 sFileName = sTest.Substring(iPos, sTest.Length - iPos)
  8. 3DDD

    Web Services

    Here is the complete scanerio: We are sending emails using .net. The contents of the message are taken from a file "test.html". Now I want to execute web service when someone opens an email. May be there could be a way to call web service using eithe javascript or vbscript embedded in html...
  9. 3DDD

    Problem with combo box in datagrid

    On combo box selectedIndexChanged, save the value in the datagrid cell.
  10. 3DDD

    Web Services

    Hi All Is it possible to execute web service(developed in vb.net) using plain html which is send as msg body in an email? if yes, then how?? Thansk in advance.
  11. 3DDD

    How to validate URL

    thank you !!
  12. 3DDD

    How to validate URL

    Hi All Is there any way to validate URL? Usign reg exp for URL validates just the http: part... Any Ideas?
  13. 3DDD

    Invoke .NET program from SQL SERVER SP / TRIGGER

    I need to call a Visual Basic .NET object when a specific event happens in SQL Server. I can capture this event through an INSERT trigger on a table, but how do I call the Visual Basic .NET object from the trigger? Any Ideas???
  14. 3DDD

    Allow keyboard letters to bring part of list in datagrid

    thanks a lot!!! Its working if a cell is selected. Is there a way to select just a cell instead of a row? Thanks a lot:)
  15. 3DDD

    Allow keyboard letters to bring part of list in datagrid

    Thanks for your reply. Row is selected succesfully. But how to scroll the grid automatically in order to show the selected row??
  16. 3DDD

    Allow keyboard letters to bring part of list in datagrid

    Hi All Is there a way to select a row in datagrid list based on keyboard letter pressed? On datagrid key press event do i need to check each letter pressed or is there any other simple way? For eg: A datagrid with names such as "Alferdo, Berrano, Germabny, Chinsa, New, Old, Next, Person". If...
  17. 3DDD

    Read and Write PDF file in sql server using BLOB

    is there any other way to display pdf file saved in binary format?? Any other ideas?
  18. 3DDD

    Read and Write PDF file in sql server using BLOB

    Hi All I have successfully uoloaded pdf file in sql server database using DATABLOB. Does anyone know how to read back pdf file in picture box?? The following code gives an error while reading pdf file: Invalid parameter used but works fine for reading jpg, tif, gif. Dim b() As Byte =...

Part and Inventory Search

Back
Top