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

  • Users: ETN
  • Order by date
  1. ETN

    How to split big database diagram on many pages?

    Just to be more clear: On the client page: table clients: .id_client (PK) .id_country (FK from table countries) ... table countries . id_country (PK) ... ...other tables On the vendors page: table vendors .id_vendor (PK) .id_country (how to make the relationship?) I could want to make a...
  2. ETN

    How to split big database diagram on many pages?

    I am designing a big database (over 200 tables). Having all thoses tables is quite hard to read. I can separate my tables on separate pages successfully but I would like to be able to have on each pages the tables for a particular process (i.e. Clients tables on a page, Vendors tables on...
  3. ETN

    How to make 2FK going to the same parent?

    Found the answer: On the Name tab of the relationship in the Database Properties Window, be sure to change the inverse phrase from "is of" to "is XXX of" where XXX is the name of the column in the FK table. For example, for FK1 below, I changed the phrase to "is HOME_LOC of" and for FK2, I...
  4. ETN

    How to make 2FK going to the same parent?

    Hi, I have a little problem making 2FK to the same parent. Here is an example that is not identical but look like my situation: - I have a table LOCATION, that contain (ID_LOC,NAME,CITY,...) - I have a table INDIVIDUAL (ID_IND,NAME,PHONE,...) Then I have my table INDIVIDUAL_JOB (ID_IND...
  5. ETN

    Disabled control values

    The Page_Render did not work because it is called after SaveViewState Event ! Page_PreRender Event is the last event called before the SaveViewState is called, so this was the right choice for you! ;-) To refresh your memory, here is the order of the events: - Page_Init - LoadViewState -...
  6. ETN

    Organizational Chart / Get pictures dynamically

    With Visio 2003 Pro, I have created an organization chart and have made a connection to a database so I can put shapes on my diagram and get employees directly from my database. This works fine. My problem is that I have also a directory containing all the employees pictures (the directory...
  7. ETN

    How to design recurring events?

    Thanks it is too easy, I have not thought about this solution..
  8. ETN

    How to design recurring events?

    Hello, I want to make a little meetings rooms reservations application. I wonder what is the best way to design the database for the case someone wants to book a room for several days or weeks (i.e. 09:00-11:00). I guess "copying" the reservation multiple times is not the right thing to do...
  9. ETN

    Archiving Word/PPT documents

    We are looking to a solution to archive word and powerpoint documents. We have lessons plans (over 1000) that change regularly and we need to consult previous plans often. There is a function in Word in the File menu that enable to manage versions but because many peoples can work on the...
  10. ETN

    *need* to insert binary data into sql server image column

    Here is a thread I just found: http://www.tek-tips.com/viewthread.cfm?qid=456096
  11. ETN

    *need* to insert binary data into sql server image column

    Have you found your answer ? I'm stucked with the same problem...
  12. ETN

    DHTML DIV ON TOP OF OTHER ?

    Ok i found out that putting a z-index higher than all my others DIV works... I don't know if there is another way althought... It is OK for my case but in some case where everything is dynamic (i.e. the number of divs) it can be hard to determine the "High" value...
  13. ETN

    DHTML DIV ON TOP OF OTHER ?

    Hi I have a calendar with div layers for each days of a month. Because the layers are not so big (the container layer is 800*600) when events can't enter in the day-layer I display the 18 first characters and I want the user to mouseOver the day-layer and I open another layer containing all the...
  14. ETN

    how do I check for a session?

    excellent script-thanks CFP!
  15. ETN

    search with more keyword

    verity is hard and complex.. you can just set all your string to lower or higher... i.e and LOWER(tblItems.BusinessDescription) Like'%#Lcase(FORM.BusinessDescription)#%'
  16. ETN

    CF MX 7, VSpider, and creating a usable Collection...

    Have you found an answer to your question? I am trying to find help me too on VSpider but there isn't a lot of ressources... The forum is now at: http://webforums.macromedia.com/coldfusion/ You can also go at the community ressources: http://www.macromedia.com/devnet/community/coldfusion.html
  17. ETN

    File Last Updated Date Stamp

    thnaks a lot, great way of showing the Last Updated in a page.
  18. ETN

    Advanced Drop down

    interesting code Dave, thanks :-)
  19. ETN

    Advanced Drop down

    Like you said it depend on what you want to do. You made me think of another feature to add to this script: being able to browse the list with the arrow key. Here is the code (in the findvalue function) [code] // if the right or up arrow has been select then goto the next record else if...

Part and Inventory Search

Back
Top