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

  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

    thanks for the reply, bluejay. but I need to search the word(s) in multiple columns in multiple tables. My example above is just the simplified version.
  3. 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...
  4. tinac99

    reference image in another folder

    Callingfolder.aspx is supposed to be the home page with a menu bar leading to different subsystems with different databases but sharing one session all across the systems. I changed the folder structure and put folder app2 under the c:\dev\app1\app2\. It still didn't work with the ref...
  5. 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"...
  6. 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"...
  7. 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 {...
  8. tinac99

    create input tags at runtime

    Thanks for the response, guys. I tried the DOM methods and it generated the same output. I'll try the show/hide method and I will keep you posted. Best, Tina
  9. 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...
  10. 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 */...
  11. 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...
  12. 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
  13. 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...
  14. 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"/>...
  15. 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...
  16. 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...
  17. 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>...
  18. 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...
  19. tinac99

    controls in a datawindow

    Thanks! Helped a lot!
  20. 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

Part and Inventory Search

Back
Top