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: *

  1. discusmania

    image placement,replicate,rotate and etc

    hi guys... what i want to do is to develop a canvas where user can pick a shape and put in the canvas manipulate it. It's like a microsoft paint software but i want a customize one. anyone has any ideaa how to do that? Thanks and regards Ron
  2. discusmania

    Submit Button just working for IE

    i've a form . the submit button is working fine in IE but not in other browser. What could be the cause? Thanks , Rgrds Ron
  3. discusmania

    Read from excel data and insert into oracle Db using VBA

    Hi guys... This is the first time i try to code in VBA in Excel. I need to know is there any sample code that read data from MS sperad sheet and input it to oracle database. I'm new here , your help is very much appreciated Regards Ron
  4. discusmania

    Net send (or something like that) using asp

    Hi, I try to send message through a network , like thing that you can do using net send command. I use this code: computer="10.228.202.146" msgtext="Just a test, please close the screen" NamUsr="MVT" Set server_shell = Server.CreateObject("wscript.shell") server_shell.Run "%comspec% /c...
  5. discusmania

    Serial port communication

    Hi guys, i want to get data from a station that link to a pc through a serial port.i'm thinking of writing a visual basic program to communicate to the station( using MScomm) and install the program on the pc.I want everytime data was entered through serial port, the data will be written to a...
  6. discusmania

    Length(size) of the database field

    H guys, I want to get the length of database fields (i'm using oracle database) out in the ASP code. i know that the property for field name is .name. what is the property for size? regards rOn
  7. discusmania

    Date Problem

    guys, What's my problem actually this is my code in asp strinsert="insert into score (badge,score,qid,date) "&_ " values('"&badge&"',"&score&","&qid&",#" & Date() & "#)" this is the error: insert into score (badge,score,qid,date) values('12319',3,1,#6/1/2004#) Microsoft OLE DB Provider for...
  8. discusmania

    Microsoft OLE DB Provider for ODBC Drivers error '80040e14'

    Hi guys, i got this error: Microsoft OLE DB Provider for ODBC Drivers error '80040e14' [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression 'table plant_listing where id in('1')'. /dept/amt/software/fms/myown/update.asp, line 54 and the code is...
  9. discusmania

    Too few parameters

    Hi guys, I run this code: local_name=request("local_name") if local_name<>"" then strdetail="SELECT id,local_name,latin_name,other_name,location,desc,origin,usage,sender,picture from "&_ "plant_listing where local_name='"&local_name&"'" response.Write strdetail set...
  10. discusmania

    Unspecified error message

    hi guys, i've run this code: <% dim cs cs="Provider=Microsoft.Jet.OLEDB.4.0;" &_ "DataSource=d:\inetpub\wwwroot\dept\amt\software\fms\myown\plant_listing.mdb;User ID=admin;Password=" Set cn = server.createobject("ADODB.Connection") cn.open cs strlocal_name="select distinct...
  11. discusmania

    Unspecified error message

    hi guys, i've run this code: <% dim cs cs="Provider=Microsoft.Jet.OLEDB.4.0;" &_ "DataSource=d:\inetpub\wwwroot\dept\amt\software\fms\myown\plant_listing.mdb;User ID=admin;Password=" Set cn = server.createobject("ADODB.Connection") cn.open cs strlocal_name="select distinct id,local_name...
  12. discusmania

    How to insert data from excel worksheet to oracle database

    Hi guys, Need your help on how to insert data from excel worksheet into oracle database table. I want it to automatically after i click one button. Does anyone has a script that i can reuse?? Thanks and Regards, Ron
  13. discusmania

    Convert (insert) excel spreadsheet data to oracle data

    Hi, Base on data in excel spread sheet, i want to have a button that can insert the data there into a table in oracle. Let assume that the excel column header are the same as fields in oracle table. Please help me to do it. Thanks and regards, RoN
  14. discusmania

    get radion button name

    hi Guys... 1. I have 3 controls, all radio button namely (opt1,opt2,opt3). options for opt2 are :(A,B,C) opt3 :(D,E,F) and opt4: (G,H,I) 2. what i want to do is once the user pick any option for opt3, it will return me the control name ( which is opt3). the same goes for the rest. is it...
  15. discusmania

    Get the control name

    hi Guys... 1. I have 3 controls, all radio button namely (opt1,opt2,opt3). options for opt2 are :(A,B,C) opt3 :(D,E,F) and opt4: (G,H,I) 2. what i want to do is once the user pick any option for opt3, it will return me the control name ( which is opt3). the same goes for the rest. is it...
  16. discusmania

    Type Mismatch

    Hi All... ihave the codes below but it will give me this error when i ran it: Microsoft VBScript runtime error '800a000d' Type mismatch /dept/AMT/Software/causes/quality_measurement.asp, line 225 where line 225 is: dpku=no_defect/total_handle * 1000 please help me to rectify what's the...
  17. discusmania

    I have this query that runs slow li

    I have this query that runs slow like hell (event until script time out when running from ASP page) and it take minutes when query from sqlplus prompt. Does any one have ideas to speed up the query? please help me... SELECT /*+rule*/ count(cause) cause_occ FROM act_item t1,DOWNTIME t2...
  18. discusmania

    get the integer value , using SQL statement

    Hi... Let say I have an oracle database table name employee with badge column. sample data for this column are: badge ----- 00004567 00002345 00012345 00012319 00234567 and i have a string , lets say '4567'. so i just want out information for employee 4567. I try to use this command : SELECT *...
  19. discusmania

    autocheck the checkboxes

    Thanks for your suggestion.. atually what I want ot do is , lets say i have a string A=&quot;199,20,200,99,9&quot; then when i open a window that list down checkbox for example : 1. ||199 2. ||34 3. ||70 4. ||200 5. ||50 I want checkboxes no 1 and no 4 will be checked cause the value is...
  20. discusmania

    Search in a string

    Hi Guys.... Long time never see you all.... actually i have a question ...let say I have a string stringA=&quot;199,99,203,20&quot; i want to search whether 99 exist in the string or not. I try to use instr(1,stringA,&quot;99&quot;) but it return me both 99 and 199 which i dont want. i just...

Part and Inventory Search

Back
Top