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 strongm 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: nenuknifer
  • Order by date
  1. nenuknifer

    function to open/close DB

    My method is same as jemminger. I put all the functions(global and local) into a file named sysFuncions.asp and then include it in my each .asp file. I guess that you could use a class to solve this problem. I have read an article about class in vbscript, you can search it using...
  2. nenuknifer

    i'm using C++ builder 5 standard ed

    Maybe your prior program is still running. In that case, the compiler can not open the file of program and change it. If not, Hmmm... I've no idea.
  3. nenuknifer

    Connection to DB

    See this thread333-308284
  4. nenuknifer

    Connection to DB

    Reinstall office2000 if you use that. When there is no Microsoft Access in my computer, the code contains database manipulition does not work. So I suspect that your ADO wrong. If you give me more, maybe I'll give some suggestions. Good Luck!
  5. nenuknifer

    page not updating

    May I see your code? If I can, I think I will give some advices. Is it a commecial application?
  6. nenuknifer

    Connection to DB

    I never used ODBC. The following code is very useful to me. Assume my database is located here: d:\db\mydata.mdb <% Option Explicit Const PATH = &quot;d:\db\mydata.mdb&quot; Const PROVIDER = &quot;Microsoft.Jet.OLEDB.4.0&quot; Dim objCon, objRS set objCon =...
  7. nenuknifer

    synchronized combobox example??

    I hope the following code will be helpful. Hmmm, it is a problem of javascrits not asp I think. If it is not suitalbe, feel free to tell me. <html> <head> <script language = &quot;javascript&quot;> function set() { var option; option = document.forms[0].select1.selectedIndex...
  8. nenuknifer

    error

    You can Response.Write(Guestbook.FirstName). It seems to be that your Database bad designed. Maybe the field FirstName of GuestBook must be write in and it is not null.
  9. nenuknifer

    A newbie attempting to connect to .mdb..help. Please?

    www.w3schools.com You will get all you wanted. Feel free to tell me if it annoys you.
  10. nenuknifer

    Is there a way to Incrementing Strings.....

    I hope the following code will be helpful. In my computer, it works. <% Option Explicit dim strTest dim strTemp, strSwap strTest = &quot;1234-AB&quot; strTemp = Left(strTest,Len(strTest) - 1) strSwap = Right(strTest,1) output(&quot;Original Data<br>&quot;) outPut(strTest)...
  11. nenuknifer

    Insert or Update - that is the question

    I think I have understood your meanings. The following is my thoughts: First, open the table that stored the information of winners. Make a query to find if the specific winner you have retrieved from the scores of this week. set obj_r = Server.CreateObject(&quot;ADODB.Recordset&quot;) dim sql...
  12. nenuknifer

    Are C++ Builder programs portable?

    If you don't choose that, you will get a very (I can't imagine it) large program. This annoys me much. If there is no support of VCL library, the length of program will approach VB ones(a bit inflation). Any thoughts?
  13. nenuknifer

    Help Needed in counting elements in array

    Please give more, Zyrenthion. If you do that, great appreciated.
  14. nenuknifer

    Help Needed in counting elements in array

    #include <vcl.h> #pragma hdrstop //*********************************************** //instance of tek-tips //*********************************************** #include <iostream> #include <string> #include <fstream> #include <conio.h> using namespace std; struct Sndex { char arr_code[4]...
  15. nenuknifer

    Converting AnsiString to Char......

    Like this: char *ptr_new = new char[Text.Length()+1]; strcpy(ptr_new, Text.c_str()); you should declare Text to be AnsiString.

Part and Inventory Search

Back
Top