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 SkipVought 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: Digimon02
  • Order by date
  1. Digimon02

    Call Monitoring System PABX

    Can anyone give me some idea how to create Call Monitoring System of PABX? Please help me... [sadeyes]
  2. Digimon02

    Meta-Search Engine

    thanks. i'll give you an star and a medal [medal]
  3. Digimon02

    Meta-Search Engine

    hi. Can you give me some idea or sample codes how to create a Meta-Search Engine? ::-)
  4. Digimon02

    #include ASP header in ASP .NET page

    May be you should include Script = VBSCRIPT runat=SERVER [2thumbsup]
  5. Digimon02

    HTTP/1.1 404 Object Not Found Serv

    HTTP/1.1 404 Object Not Found Server: Microsoft-IIS/5.0 Date: Fri, 05 Dec 2003 07:04:58 GMT Connection: close Content-Type: text/html What does this mean? i'm just testing a simple Perl Script this is the code in my .shtml <HTML> <TITLE>Test File</TITLE> <body> <!--#include...
  6. Digimon02

    Include ASP page in HTML Page

    what is the syntax of including asp page into html page? i try to include this before the <HTML> tag <!--#include file=&quot;HitsCounter.asp&quot;--> but nothing happen
  7. Digimon02

    Posting in Forum through e-mail

    can i use it to read mail?
  8. Digimon02

    Posting in Forum through e-mail

    i'm developing a web forum with a features of replying to post thru email... how can i do this?
  9. Digimon02

    Script Error

    I think AtiveConnection of ADO in asp did'nt necessarily need to be set by Connection object, string is also a valid value.
  10. Digimon02

    Replace Function

    you can do it like this replace(iId1 & &quot;, &quot;,iID2 & &quot;, &quot;,&quot;0&quot;)
  11. Digimon02

    picture on report

    ok thanks for the help.
  12. Digimon02

    Store entire files in an SQL table.

    Sample of Storing and retrieving image 'BeginAppendChunkVB Public Sub AppendChunkX() Dim cnn1 As ADODB.Connection Dim rstPubInfo As ADODB.Recordset Dim strCnn As String Dim strPubID As String Dim strPRInfo As String Dim lngOffset As Long Dim lngLogoSize As Long Dim...
  13. Digimon02

    picture on report

    how can i do this... i have this product report where list of product are displayed. i want the picture of each product to be included in my report. only the picture path is saved in the database.. im using vb.. and field definition report
  14. Digimon02

    Validate on Submit

    a brief sample... hope this give you an idea.. set rs = Server.CreateObject(&quot;ADODB.Recordset&quot;) with rs .ActiveConnection = {YourConnectionString} .Source = &quot;SELECT * FROM CustTable where CustNo='&quot; & request(&quot;CustomerNo&quot;)& &quot;'&quot; .CursorType = 0...
  15. Digimon02

    SQL Help for ASP Report

    try this.. SELECT * FROM tSTATS st inner join tMEMBERS mem on st.FAMILY_ID = mem.FAMILY_ID left join tStudents s on mem.FAMILY_ID = s.FAMILY_ID WHERE PAID_STS='Y' and LIST_STS='Y'
  16. Digimon02

    Filter Data in ASP

    you can sort it in the query... ;>
  17. Digimon02

    Create Table problem (database)

    try to enclose the field name open with bracket. open is reserved word in SQL Server..
  18. Digimon02

    Text inputs in lower case

    skippypaul try this code... Private Sub Text1_KeyPress(KeyAscii As Integer) Select Case UCase(Chr(KeyAscii)) Case &quot;A&quot; To &quot;Z&quot;, Chr(vbKeyBack), Chr(vbKeySpace) 'Allowed Case Else KeyAscii = 0 End Select End Sub hope i help you... [pipe] Tholits
  19. Digimon02

    Which control has focus on a form in VB6?

    the most basic way is to use the GotFocus of the controls.. Declare a module level variable which where you will store the name of the control. Set the name of the control in this variable in GotFocus event of all the controls. Use this variable to know which control has the focus Ex...

Part and Inventory Search

Back
Top