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

    Select number of occurrences from join table

    Here is my table structure: StudentID First Last 1 John Doe 2 Jane Doe ClassID StudentID Instructor Time 1 1 fsd 11:00 2 1 asf 12:00 3 2 jkl 12:00 I...
  2. Westond

    get records from 2 databases

    I have 2 databases "A" and "b" they are both on the same server. They are seperate applications except I would like for database b to be able to access the user record in database a. Database b has some userid values that match the database a users table which has all the names and user info...
  3. Westond

    What do I need to use Crystal Reports?

    What do I need in order to use crystal reports in my web apps? Do i have to have a server version of crystal? When I compile my we app does a link to the report work without asking the user to download the report? I have not been able to link to a report on my local using the debugger why...
  4. Westond

    TreeView

    I have a page that needs to have a treeview that is populated from a database. Below is a little bit of code that i have been playing with. I would like the data in the hashtables to look like this if it were to work correctly. Parent1 - Child 1 - Lvl 1 Parent2 - Child 2 - Lvl 2...
  5. Westond

    Windows will not load?..

    When I start windows it comes to the page that says windows xp pro and has a bar that keeps going accross. It never gets past that point, the hard drive light stops blinking also. Safemode will load just fine adn I have tried to do a rollback there but it did not work. I have also tried to...
  6. Westond

    Site search without database?

    Is it possible to have a search box on my site without having to use a database? Where can I find some information on this? THANKS!
  7. Westond

    Object reference not set to an instance of an object.

    What causes this error? Here is an example that will cuase it. I have a listbox and when someone clicks on a entry in the listbox I tried to do: string x; x = listbox1.SelectedValue.ToString(); I am tring to understand the general rule on this because I come across it alot. Thanks for any...
  8. Westond

    Dev Environment question

    In VB you can select a dropdown the top left then the one on the right will display all the available event handlers for that object. I really like C# syntax but those dropdowns at the top are almost useless in c#?.. Is there a way to get the same functionality there as you get in vb? How do...
  9. Westond

    SP Pass Values into another query

    SELECT AVG(field1 + field2) as theAverage FROM table WHERE .... UPDATE Table SET Field = theAverage where .... Why doesn't this work?
  10. Westond

    Read a datatable

    Hey guys, I have a dt in c# and all I am tring to do is read the records out of it.?? label1 = dt.Rows[0].Table.Column["field"]; something like that .. How do I get the value of "field" to display in the label? Thanks Wes
  11. Westond

    Assign query result to variable

    Here is basically what I have: @in_1 @in_2 if exists(Select x as value from table) BEGIN Here I want to be able to say @in_1 = value but it doesn't work? says invalid column name? I also tried using the variable in place of value in the select but that didnt work either. END...
  12. Westond

    Debugger does not show styles or images

    Here is my structure: wwwroot/site - in this folder I have .CSS files, an Images folder ect. wwwroot/site/paSystem - in this folder I have a .NET module I am working on. If I run the debugger for wwwroot/site/newSystem it browses to http://localhost:4829/paSystem/file.aspx so the debugger...
  13. Westond

    Stored Procedure check for recordcount

    I have a stored proc and what I would like to do is run a select query then based on the recordcount insert or edit. SELECT * FROM Table if recordcount = 1 UPDATE Table set x = 1 WHERE... else INSERT INTO Table ()VALUES() THANKS Wes
  14. Westond

    Browse without publishing

    I have 3 servers I work on Local, Testing, and production. When I have the code local its fine I can browse directly or use debugger. When I move the code up to testing I have to publish the code in order to browse. I don't mind publishing the code for the production server but it is a pain to...
  15. Westond

    Auto Postback

    Hey guys/gals, I have a form that has some checkboxes with autopostback enabled. What I want to happen is when the user checks the box the postback takes place but it sends the user back to his/her place on the form. Right now they will have to scroll down if the postback event happens. Is...
  16. Westond

    Auto postback with anchor

    Hey guys/gals, I have a form that has some checkboxes with autopostback enabled. What I want to happen is when the user checks the box the postback takes place but it sends the user back to his/her place on the form. Right now they will have to scroll down if the postback event happens. Is...
  17. Westond

    Restrict Permissions but allow IIS

    How can I restrict permissions but allow some users access to IIS? Thanks
  18. Westond

    Restrict Permissions but allow IIS

    How can I restrict user permissions but allow some users to access IIS? Thanks
  19. Westond

    HELP

    Hey Guys/Gals, Here is my problem. I have a large project that is in Coldfusion that has a login which creats a session variable called Auth. All new code must be in .NET so I am adding a new module to the application but I need the files to be covered by login ie session.Auth. How do I pass...
  20. Westond

    Easy Question...I think

    I have a large site that and i use a application variable that has the root defined in it so I can use code like #application.root#/images/mypic.jpg. What I want is to make the root variable dynamic so the site can be placed under any folder structure and still work. I dont think I can use...

Part and Inventory Search

Back
Top