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

  • Users: emblewembl
  • Content: Threads
  • Order by date
  1. emblewembl

    Databindings & Custom Object - control not automatically refreshing

    I'm developing a Windows application which starts by populating one object of type Meeting. It's set up as follows: private static Meeting masterMeeting; //get meeting data and populate masterMeeting object. masterMeeting = rtd.InitialiseMeetingData(selectedLocation); This sucesfully...
  2. emblewembl

    Designing a custom control

    Hi, I've designed an object which has several text properties and I'd like to show a list of these objects (in a Windows application) where each one acts as a button and also has an image shown next to it which will show if it is old, active, or pending. I don't think that the ListView does what...
  3. emblewembl

    SQL Insert Problem

    I have a stored procedure which is called from a web site at say every 2 minutes which returns a set of rows of data about entries in a race. If one of the fields in any of the entries is set to 1 rather than 0 I would like to perform the following actions: 1. Get the related id for the entry...
  4. emblewembl

    Access Denied Message on Web Service Folder

    Hi, I have had a web service running successfully on our test server for several weeks with no problems - it builds pdf docs out of data once per day. I moved it to the live sever yesterday and I keep getting an error message when it tries to create a new PDF file in the specified folder. I am...
  5. emblewembl

    View / stored procedure performance help needed!

    Hi, I am having to do some calculations on some data in an sql database and I haven't had to do anything like this before so I am not sure that I am doing things the best way - in fact I'm sure I'm not! I'm hoping someone out there can give me some advice so that I can improve. I need to...
  6. emblewembl

    Object serialization - convert to xml problem

    I am developing a web service which will output a string which the user of the web service can then convert to xml and do whatever they like with it! I am serializing my object then returning the string and it's all working fine. However, I have built a test website to access the webservice and...
  7. emblewembl

    conditional 'where' statement question

    I have a view which gives me a list of data - here's the code: CREATE view iVRunners as select r.racecardid, r.trackid, r.coursesurface, e.entryid, e.programNo from racecards r, schedules s, entries e where r.racedate = s.mDate and e.racecardid = r.racecardid group by...
  8. emblewembl

    How do you get a smooth transition between photos with javascript?

    I'm building a web page to show photo albums and there is a next and back button which changes the big image to the next one in the list. However, when you change from say a portrait to a landscape photo the transition can look very clunky. Here's the url...
  9. emblewembl

    How do you pass array to javascript function from asp.net page?

    I'm building a photo viewer website and i've got a page loading with thumbnails showing for each image in a specified folder. If you click on a thumbnail you see the picture in full size. I want to add next and back buttons to the page so the user can just keep clicking the next button to see...
  10. emblewembl

    Html Formatted email - string problem

    I'm building an html table to send as an html email but some of the string seems to change slightly when it comes through (I'm viewing the email in hotmail). Here's how I'm buiding the string which gets passed to the email function: StringBuilder emailMessage = new StringBuilder()...
  11. emblewembl

    Return PDF document from webservice

    I've built a web service which gets some data and builds a pdf file then saves it in a specified folder on the server. It's all working great, the web method just returns a true or false indicating whether the document was created properly or not. My client will be using this and they will then...
  12. emblewembl

    Flash movie won't play in IE

    I'm pretty new to Flash so bear with me..... I've made my movie which loads images in from a folder (these are referenced in an xml file), published it in swf, html and exe form. If I double click the exe file it all works great, but I need to upload this to a server so i want users to open the...
  13. emblewembl

    Ho do you publish application updates

    I've got 2 clients with c# applications installed and these need updates fairly regularly. I am looking into the idea of putting updates online and adding a 'Get Updates' button to the software so that they can download and install the updates as and when they are released. I know you can set...
  14. emblewembl

    Firefox scrolling div problem

    I've built a basic page for viewing photographs which includes a div containing all of the thumbnails - the div is fixed width and a horizontal scroll bar is used to view all the thumbnails. The div references a css class which contains the property: overflow:auto; .... to show scroll bars...
  15. emblewembl

    Firefox div scrolling problem

    I've built a basic page for viewing photographs which includes a div containing all of the thumbnails - the div is fixed width and a horizontal scroll bar is used to view all the thumbnails. The div references a css class which contains the property: overflow:auto; .... to show scroll bars...
  16. emblewembl

    Javascript Browser Compatibility Help

    Hi all, I very rarely have to write any javascript and have just done a site for a friend which needs javascript to load a big image onto the screen when any thumbnail is clicked. Basically it all works exactly as we want in IE 6 but I am interested in how this javascript will work in other...
  17. emblewembl

    .net 2.0 setup project and application settings questions

    Hi all, I have created a setup project which will install my .net2.0 windows application and any dependencies. The setup project asks the user where they would like to install the software - is there anyway that I can access this value in my application so that I can store it as an application...
  18. emblewembl

    Conditional where statement

    Hi, I've got a stored procedure which returns a list of race data ordered by date and time where the race date is >= to today, i.e. all races that have not yet happened. The conditoinal bit of the stored procedure looks like this: where tid.raceid = r.raceid and m.meetingDate >= @today It...
  19. emblewembl

    Select count where question

    I've got an sql database table which contains 2 columns, 'name' and 'position'. The names aren't unique, i.e. there might be more than one row for mr smith, one with position = 2, one with position = 3. I need to build a stored procedure that selects each distinct name, and a count of position...
  20. emblewembl

    Display photos and collect selection details

    Hi all, i'm helping a friend out and am going to build a web page using asp.net (C#) to display thumbnail images from a particular folder on screen, each with a name, and a checkbox. The user will go through them, check every one that he wants ordered and click a button which will send an email...

Part and Inventory Search

Back
Top