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 wOOdy-Soft 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. andrewbadera

    Flash/JavaScript communication problem ... scope?

    JavaScript SetVariable and GetVariable seem to work fine, but ActionScript within the Flash object doesn't seem to be seeing the variables update ... http://cf.democratandchronicle.com/widget/frontpage2.html object code: <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"...
  2. andrewbadera

    Schema for bulk loader

    Can anyone help me generate a schema for the following XML? <?xml version=&quot;1.0&quot; encoding=&quot;iso-8859-1&quot; ?> <story> <storyfilename> <![CDATA[0125BUO_gang22.xml]]> </storyfilename> <storyorder>0</storyorder> <section> <![CDATA[1]]> </section>...
  3. andrewbadera

    secure user signups and logins, JavaScript/ASP

    hello- looking to implement a secure-as-reasonable user signup and login process. I intend to carry out all user information and password interactions under SSL; I'm debating implementing MD5 hash clientside and passing the result of hashing the password to the DB and store the MD5 hash vs...
  4. andrewbadera

    Gregorian calendar add/roll issue

    I have a 5-day Gantt-style timeline chart I'm working on with next/previous week buttons. On next/previous 7 days are added or subtracted from the current DAY_OF_YEAR value. It seems to scroll previous with no problems ... but at the end of September, it rolls back to the beginning of September...
  5. andrewbadera

    Calendar.getInstance

    I have a project scheduler I'm building, and I seem to be able to move back and forth between weeks just fine with: if (actionCmd == &quot;nextWeek&quot;) { cal.set(Calendar.WEEK_OF_YEAR, (cal.get(Calendar.WEEK_OF_YEAR) + 1)); } if (actionCmd == &quot;prevWeek&quot;) {...
  6. andrewbadera

    &quot;floating&quot; label?

    I have a Gantt-style &quot;chart&quot; that I've build using JPanels as a representation of days of the week, and I'm using the 2D API to draw rectangles representing project timelines across the day-panels. I need to label these rectangles with job numbers ... is this possible to do with any...
  7. andrewbadera

    date-range sql statement

    Under SQL Serever 2000, I'm trying to pull projects out of the database to display on a 5-day Gantt-style project timeline chart. Therefore, I need all projects that occur on any of the 5 days on the chart (range[dateStart-dateEndProj] contains range[1st day-5th day]). is there a way to pull...
  8. andrewbadera

    ocx licensing issue

    Hi All- I have a project where I find myself picking up where another individual, no longer with the company, left off. The project, from what I understand, was originally 16-bit VB 4.0. It was migrated to 32-bit 4.0, then to 6.0 With my original install of VB 6.0 Enterprise, I tried to run...
  9. andrewbadera

    odd DISTINCT requirements

    I have a client with a less than fully normalized data model. they have products with product codes, class, category, manufacturer and notes fields. Originally, I was told the product code was unique; I later discovered that they have products sharing product codes but existing as separate...
  10. andrewbadera

    Swing help please

    I'm fairly new to Java, having written a few HTTP web-bots and some console JDBC stuff, and have only been using Swing for the last week or so. I'm putting together an labor and resources scheduling application, and chose to use a third party calendar Swing component. the first one I used had...
  11. andrewbadera

    help with JOIN please

    the following statement: SELECT DISTINCT(tOrder.intOrderID), SUM(CAST(ProductOrder.monTotal AS money)) As OrderTotal, ProductOrder.intProductID, tOrder.dtReceived, tOrder.dtShipped, Product.intProductID, tUser.intUserID FROM tblProductOrder As ProductOrder JOIN tblProduct AS Product ON...
  12. andrewbadera

    best way to produce &quot;paging&quot; effect in results

    hello- I'm developing an online e-comm site with 5700 products; this of course leads to product searches returning dozens, if not hundreds or thousands, of results. As such, I need to page the results, 25 or 50 to a page. What's the best way to do that? The IDs in the database are sequential at...
  13. andrewbadera

    java &amp; POP mail

    I need to write an email POP'g and scraping application that parses XML email attachments (I'll be going DOM, they're short, single-record files) and passes the parsed data to a database located external to my client's network, with their website ISP, probably by making a URLConnection to an ASP...
  14. andrewbadera

    accessing and access mdb on xp pro

    having the following difficulty: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC Microsoft Access Driver] The Microsoft Jet database engine cannot open the file '(unknown)'. It is already opened exclusively by another user, or you need permission to view its data...
  15. andrewbadera

    access database security

    what can I do to &quot;lock down&quot; an access database? I have an access database deployed to a client website with a third-party ISP; I suspect they'd like to try and resell the solution I'm writing for them, and that's something I'm fine with, just so long as I get a royalty or cut of some...
  16. andrewbadera

    what's the best SQL syntax

    to get a result when: one table (tblUser) has a many-to-many relationship with other tables (tblClass and tblCategory)? furthermore, what's the best way to store the relationship in the DB? I had it normalized, with tblUserClass and tblUserCategory illustrating the relationship, but due to the...
  17. andrewbadera

    SQL Statement difficulties

    SELECT * FROM bulbdirectSQL.dbo.tblProduct AS Product JOIN bulbdirectSQL.dbo.tblCategory AS Category ON Category.intCategoryID = Product.intProductID JOIN bulbdirectSQL.dbo.tblBase AS Base ON Base.intBaseID = Product.intBaseID JOIN bulbdirectSQL.dbo.tblVolts AS Volts ON Volts.intVoltsID =...
  18. andrewbadera

    PIck database integration

    Anyone ever done it? Via ODBC? Via FlashCONNECT? TIA- --Drew Badera

Part and Inventory Search

Back
Top