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!

Recent content by emblewembl

  1. emblewembl

    Get a gridview cell value by column name

    I think this is what you are looking for: dataGridView.Columns[e.ColumnIndex].Name == "ColumnName" or DataGridViewCell cell = this.dataGridView[e.ColumnIndex, e.RowIndex]; I hope that helps! i love chocolate
  2. 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...
  3. 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...
  4. 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...
  5. emblewembl

    Access Denied Message on Web Service Folder

    Thank you thank you, that fixed it! What exactly is the network service account? i love chocolate
  6. emblewembl

    Access Denied Message on Web Service Folder

    It's running Windows Server 2003 Standard Edition Build 3790 SP1, and IIS 6.0 . i love chocolate
  7. 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...
  8. 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...
  9. emblewembl

    Object serialization - convert to xml problem

    Thanks for all the help! I ended up finding another example of the same thing, tried it, and hey presto it now works perfectly. Here's the code in case anyone else needs it: public string Serialize(object objName) { MemoryStream stream = null; TextWriter writer = null...
  10. 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...
  11. emblewembl

    conditional 'where' statement question

    Thanks, that worked great! i love chocolate
  12. 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...
  13. emblewembl

    run application for 5 days

    You could use Windows Scheduler (from Control Panel) to automatically run the application every 5 days from the 1st of the month - I'm not sure whether you could do the second run on the 15th for 5 days within the same schedule, but if not I'd imagine setting up a second schedule event would...
  14. emblewembl

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

    Yaaaaaayy, finally got the time to give this a go and I've now got a page working locally with an image fading in when it loads, and fades out when I click on it, and i've got it working in IE and Firefox. Here's the code: var timeinterval = 40; var opacity = 0; var fadeInId = 0; var fadeOutId...
  15. emblewembl

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

    Sorry Dan, I am up to my neck in work right now so haven't tried it yet as that's part of a background project. Should be trying it his coming weekend so will let you know. Thanks for asking! i love chocolate

Part and Inventory Search

Back
Top