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

    Passing structs between C# and C

    I'm currently working on a language binding for the Y Window system. I'm attempting to pass a struct from my C# library to a C library. I'm very new to this but I have considerable experience with C#. Here is the struct defined in C: struct object { int oid, cid; struct object *next...
  2. cwinans

    Oracle Timestamp to Sql Server Datetime conversion

    I'm importing data from an Oracle database into Sql Server. Everything is going smoothly except oracle table timestamp columns. I've made the conversion from timestamp to char using TO_CHAR(field_name,'MM/DD/YYYY HH:MI:SS PM') which puts in in the sql server format. Am I doing something wrong...
  3. cwinans

    executing sql server stored procs in php

    Can anyone give me a nice example of how to execute sql server stored procedures in php... I've searched everywhere I could think of and found nothing? Maybe instead of using the built in mssql* functions someone knows how to do it using the generic odbc functions? Is it even possible? I hope...
  4. cwinans

    I'm currently developing a version

    I'm currently developing a version of MineSweeper in Java for my Special Topics course at Penn State. I've seen lots of versions out there... none utilizing the full benefits of Java and it's object oriented abilities. I've written the underlying model for a truly object-oriented version. I'm...
  5. cwinans

    getting thru a proxy

    I am behind a proxy at work. I found an example to get through it but it doesn't work. It was just a matter of setting a couple properties such as: Properties props = System.getProperties(); props.put("http.proxyHost", "http-proxy.trans.ge.com")...
  6. cwinans

    Is there a Javascript (JScript) API available?

    Is there a Javascript (JScript) API available for manipulating PDF files in a web browser such as searching for text within a pdf file being displayed in Internet Explorer? I hope this helped! ;-) - Casey Winans
  7. cwinans

    Finding Text In A PDF From An External Source (IE)

    I was recently given the challenge to find a way to find text in a pdf file from out side the pdf viewer. For example, there is a framed web page, on the left is a list of "bookmarks" which are all links from an html page. The right frame is loaded with an PDF file. My employer wishs...
  8. cwinans

    PL/SQL Syntax... w/ Example

    Hey, I need to create a temporary table that is populated with the results of a SELECT statement. Could anyone give me some sample or pseudo- code that accomplishes this? It's for a stored procedure that I'm revamping for a project I am working on for my company's intranet. Thanks. I hope this...
  9. cwinans

    I need to make my stored procedure better...

    Here's the problem. I created a stored procedure that took in a number of parameters. Those parameters were then checked to see if they contained the value of "ALL". If they did they were basically disregarded in the WHERE clause of the SELECT statement being created (by using the...
  10. cwinans

    I need some info on SQLWarnings.

    I need some info on SQLWarnings. When should I use them as opposed to SQLExceptions, or shouldn't I bother? I'm trying to get as much info on what my class is doing behind the scenes. It currently works fine on our development server, but when pushed to staging nothing happens... no errors...

Part and Inventory Search

Back
Top