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

    PrintOpen returns a -1

    Hi all, Does anyone know why a PrintOpen() returns a -1? I was able to print a Word document to a network printer from the computer. I am using PowerBuilder 10.5 build 4523 on a Windows XP 2002, Service Pack 3. Thanks, tinac99
  2. tinac99

    Fulltext CONTAINS not consistent

    Hi, I have a record in the "books" table, column "rawtext" of type varchar which starts with "This is a sample of the case-----------------------------OC Register". When I try to run query: select * from books where contains(books.*, '"this is*"'), the query does not return anything. It is...
  3. tinac99

    reference image in another folder

    Hi, I am trying to reference an image in another folder: c:\dev c:\dev\app1\app1\callingfolder.aspx c:\dev\app2\blue.jpg Callingfolder.aspx is trying to link to the blue.jpg file: <img id="MainMenu" src="../images/menubar-small1.jpg" usemap="#menubar" border="none" /> <map id="menubar"...
  4. tinac99

    Resize Image - recoordingate Image Maps

    Hi, I have an image which I resized. When I resize the image, the coordinates in the image map still reflect the original size. How can I make the image map coordinates go with the resized image? e.g. <img id="ImageMenu" src="menubar-small.jpg" usemap="#menubar" border="none" Width="1108px"...
  5. tinac99

    LinqToSql SubQuery

    Hi, I have need to perform a sql on the following tables: Order ------ order_id order_date cust_id Order_Items --------------- Order_id item_id so I have the following linqtosql: var query = from o in dc.order select new {...
  6. tinac99

    create input tags at runtime

    Hi, I have a project which contains a task to create input tags at runtime. The number of input tags as well as the labels beside it are determined by a dropdownlistbox. Upon change of value of the dropdownlistbox, the system will go to the database to retrieve the labels and the number of...
  7. tinac99

    Optimize sql with subquery

    Hi, Is there any way to optimize this sql, hopefully by removing the subquery? select distinct e.*, c.arraignment_dt, c.case_nbr, c.citation_nbr, c.court_cd, (select count(*) from def d1 where d1.case_id = c.case_id and d1.warrant_request_flg = 'N') as num_warrant_N, /* sort column */...
  8. tinac99

    A namespace does not directly contain members such as fields or method

    Hi, I am trying to figure out the cause for this error: A namespace does not directly contain members such as fields or method which points to the start of the aspx page, e.g.: <%@Page Language="C#" AutoEventWireup="true" CodeFile="Error.aspx.cs" Inherits="Error" %> Can anyone give a clue...
  9. tinac99

    PB crash

    Hi, I have a Powerbuilder 9.0 application which I've had migrated to Powerbuilder 10. When I try to open one of the menus at development time, Powerbuilder crash. Can someone give me any ideas? Thanks, Christina
  10. tinac99

    Unexpected end of file from server

    Hi, I have the following code: ----------------------------------------------- import java.net.URL; import org.jdom.* ; import org.jdom.input.*; import org.jdom.output.* ; import org.jdom.xpath.*; import javax.xml.validation.*; import javax.xml.parsers.*; import java.util.*; import...
  11. tinac99

    MultipartRequest and Tag Libraries

    Hi, I have a JSP which is supposed to upload a file while storing other database information. JSP --- <form action="transcription" name="transcription" method="post" enctype="multipart/form-data"> <abc:text_input type="text" name="firstname"/> <abc:text_input type="text" name="lastname"/>...
  12. tinac99

    jdom xml schema validation

    Hi, I have the following code to validate an xml document with an xml schema(please refer below). It's giving an error: Please help! Thanks, Tina Error -------------------------------------------- 57 cannot find symbol symbol : method setFeature(java.lang.String,boolean) location: class...
  13. tinac99

    java xml namespaces

    Hi, Will the following scripts in the java code(unavailableAgencyName = unavailabilityScheduleElement.getChild("OrganizationAgencyName").getText() ;) work even if I don't reference the namespace prefixes(ns2,ns3,ns4) while getting the value of the element in the xml file? Thanks, Tina...
  14. tinac99

    Element Type not declared

    Hi, I have the following xml file: xml filename: ise_1.xml ----------------------- <?xml version="1.0" encoding="UTF-8"?> <UnavailableSchedules> <UnavailableSchedule ReasonCode="V"> <OrganizationAgencyName>ANAHEIM POLICE DEPT.</OrganizationAgencyName> <IdentificationID>#1</IdentificationID>...
  15. tinac99

    Invalid character value for cast specification

    Hi, I'm having this problem(please see below) whenever I try to create a datawindow using a stored procedure. I am using MSSql Server 2005 and PB 10.5. I am connecting to it through ODBC. Error: Cannot create Datawindow SQLSTATE 22005 Invalid character value for cast specification...
  16. tinac99

    controls in a datawindow

    Hi, Does anybody know how I can loop through all the controls inside a datawindow - including, columnnames, text, computed fields, etc? Thanks, Tina
  17. tinac99

    oleobject - word

    Hi, I'm trying to do a find and replace using the oleobject connected to a word document. Code is written below and it is crashing. Any leads, answers and solutions will be greatly appreciated. Thanks, Tina -------------------------------------------------- oleobject ole_object1 oleobject...
  18. tinac99

    compiles ok but could not get the web page to run

    Hi, I have a java application which runs on JRun. I was able to compile the application, but when I try to run it, it gives the following error below. Can somebody shed some light on how to fix this, please! Thanks, Tina 12/03 17:16:24 error Translator.CompilationFailedExceptionCompiler...
  19. tinac99

    Invalid Datawindow row/column specified at line xx

    Hi, I'm currently using Powerbuilder 10.5. And for some reason, this error pops up when I'm in debug mode but does not pop up when I'm just running the apps: Invalid Datawindow row/column specified at line 59 in open event of object etc... Is there a way I can catch this error even when I'm...
  20. tinac99

    left outer join and *=

    Hi, I'm trying to retrieve a list from one table joined to the same table with separate aliases. Data in the table is follows: table1 ------- category subcategory -------- ----------- 112 1 112 2 112 3 112 4 112 5 113...

Part and Inventory Search

Back
Top