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 Chriss Miller 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: cgreynes
  • Content: Threads
  • Order by date
  1. cgreynes

    extended ascii/unicode string conversion to stanard ascii

    I encountered problems when sending certain characters from Windows VB to IBM Mainframe Cobol/DB2 such as ‘(left single quote) or ’(right single quote). All the characters after the extended ascii got cut off. I don't have problems when sending '(single quote). Is there any vb functions to...
  2. cgreynes

    beginner problem when installing Oracle 10g personal

    Hi, When I installed Oracle 10g in my workstation, I got errors in the Database Configuration Assistant. 1st Error: ORA-12639: Credential retrieval failed. 2nd Error: ORA-03114: not connected to ORACLE I searched using google and found the details below but still dont know how to fix it...
  3. cgreynes

    Dynamically calling method of another class

    Hi, How do I call a method of another class based on the class name returned from database? for example - public class ActParent {} - public class ActChild1 extends ActParent { public void execute(Bean bean){ } } - public class ActChild2 extends ActParent { public void...
  4. cgreynes

    How to get Server Name?

    hi, is there a way to get the system's name? the server's name value will be saved in the database together with the error number. thanks clark
  5. cgreynes

    Package compile error "cannot resolve symbol"

    Hi, When I compile the .java file from the book, I get a "cannot resolve symbol". It point to the bean file. BankCustomer.java ------------------------------ package coreservlets; import java.util.*; public class BankCustomer { private String id, firstName, lastName; private double...
  6. cgreynes

    JSP 2.0 Expression Language not working

    Hi, I am learning JSP. I cannot make the Expression Language to work. For example: ${1+1} should equal 2. It turns out it only prints "${1+1}". I followed the book and I installed SDK 1.4.2 and modified web.xml (see below). Is there anything else I should do? <web-app...
  7. cgreynes

    convert BSTR to char and vice versa

    hi, i'm new to visual c++. i have problems converting from data type BSTR to data type char. problem occurs when compiling to a release version, not to a debug version. here's the code STDMETHODIMP CPassword::Validate(BSTR bstrLogID, BSTR bstrPassword, BSTR *pbstrMessage) { char *pCommand =...
  8. cgreynes

    Unable to use MIME type in https

    hi, i encountered an error &quot;Could not open ***File Name***&quot; when i use this line... Response.ContentType = &quot;application/vnd.ms-excel&quot; or any other application like word when i turn on https. is there a way to fix this. thanks
  9. cgreynes

    im new to visual c++. how do i conv

    im new to visual c++. how do i convert BSTR (data type or class type) to char * (string)? i am creating an ATL dll
  10. cgreynes

    drag &lt;div&gt; object with mouse

    hi! i have a calendar layer on my page. how do i drag the layer using the mouse? the code below is slow. i have to drag the layer slowly or else the layer will be left behind. <div id='calendar' onmousedown='setMouseXY(event);bMoveCalendar=true;' ondragstart='doDragStart();'...

Part and Inventory Search

Back
Top