Search results

  1. I

    question about effect on imeem.com

    It is an overlay (or a modal) window and you can get Google hits using terms like "javascript overlay login." The easiest way to implement this would be to use jQuery UI: http://jqueryui.com/demos/dialog/#modal-form. If you want to get to the underlying details, refer to the sample here...
  2. I

    Consulting the .NET SDK

    I don't think you can get a list of implementers. We have hundreds of libraries throughout our company that have implemented IList<>. How is Microsoft supposed to track that info? Even for their own internal libraries, how is the .NET team going to know what the SQL Server team with the base...
  3. I

    Working on a web game similar in some respects to Ikariam

    I'd go with the second option, too, but can you elaborate on how the updated data will be used at the Website level? Also, LINQ makes things easier and fancier, but if you're going to be running the same piece of code over and over again, you better code a SPROC that gets called from the Windows...
  4. I

    Displaying a small icon in a ListViewItem's text (.NET 3.5)

    Have you looked at the SmallImageList property? Essentially, you create a repository of images (go with BMPs - PNGs will stretch out) using an ImageList control. Then, point the ListView.SmallImageList property to this ImageList. There is also a LargeImageList, if I remember correctly. Edit...
  5. I

    Couple of Q's related to working with teams

    Maybe I am speaking for myself, but I have observed this trend [of checking code in every few minutes] quite frequently. However, the major reason (at least in our environment) is that people hate losing work - many a times your IDE may crash, taking with it those 30 lines you added in the last...
  6. I

    Software Transactional Memory

    Folks in Redmond have been busy: http://msdn.microsoft.com/en-us/devlabs/ee334183.aspx I installed it on a VM running Server 2008 and VS 2008 - no issues so far. They are planning on including this in Framework 4.0. There is a white paper (PDF) which should provide ample starting info...
  7. I

    Excel: Finding data within a row within another row

    =IF(ISNUMBER(SEARCH(A1,B1)), TRUE, FALSE) SEARCH is not case sensitive - if you want to perform a case sensitive search, replace SEARCH with FIND. As a side note, ISNUMBER is used because SEARCH and FIND return the starting index of the search term [if found].
  8. I

    SQL help

    Why don't you just create a default constraint? Unless I misunderstood your question. Try and stay away from triggers :).
  9. I

    SQL reporting help needed

    I am sure if you post more details, folks here will be able to come up with effecient queries. I am alluding ot the structure of your tables. Also, you mentioned OLAP/SSAS - are you working on a cube, and you are struggling with MDX queries? Again, please post the details of your backend schemas.
  10. I

    Visual Basic on Windows Vista x64

    What kind of errors are you receiving? Some details would help.
  11. I

    Question about excel

    It can be done - look up the Shapes.AddPicture() method on MSDN and/or Google. To determine the cell, set the Excel.Range property before calling AddPicture(). The AddPicture() method is in the "Core" Office Interop library - meaning it can be used for Word and Powerpoint also (I haven't...
  12. I

    Duplicate rows in sql

    This probably is not going to help the OP, but I have dealt with a few projects where this was a business requirement (and realistically, desirable). Within the data warehousing realm, we have used Integration Services' Fuzzy Lookup transformation. We don't necessarily delete/cleanse the data...
  13. I

    What would I look into if I wanted to make live window previews?

    Thw DWM stuff is already wrapped into the second link I posted above :).
  14. I

    What would I look into if I wanted to make live window previews?

    Here: http://dotnet.dzone.com/tips/w...s-7-taskbar-10-minutes It covers jumplists, overlay, window peek, and progress bar. You may need this: http://blogs.microsoft.co.il/b...ws-7-taskbar-apis.aspx
  15. I

    Silverlight 3 is out

    http://www.iis.net/media/experiencesmoothstreaming Posting from my Tablet - keeping it brief :)
  16. I

    SQL Date Parameter

    You probably want to create a drillthrough report (or a subreport)? Look at the samples here: http://www.gotreportviewer.com/
  17. I

    New to SQL Server

    You need to specify what exactly you're using - ASP.NET, Windows Forms, SSRS, Crystal Reports, etc. Also, elaborate a bit on your design so that the DB folks here can understand your dilemma.
  18. I

    How to deal with UTF-16 strings and SQL

    As others have said, use parameters to avoid injection attacks; especially so, since this is a game server. In case of a server failure, you can create a method that loops over the SqlCommand's parameter collection and builds a "command string" by replacing the parameter name (within the...
  19. I

    How to deal with UTF-16 strings and SQL

    I am still a bit hazy about your UTF16 requirement. Also, what do you mean by the "final string?" Is it the blurb that contains the entire command that was issued via ADO.NET? Maybe you can give us all an example about what you exactly need to achieve... I can think of using RegExs, SMO, or...
  20. I

    is .NET 100% backwards compactable?

    Refer to this: http://blogs.msdn.com/astebner...009/04/20/9557946.aspx
  21. I

    C# mysqlconnector - how to check for loss of con?

    Even if you're issuing multiple commands, you should [in most logical implementations] close the connection. You have to remember that when you call Open() and Close(), you're not physically opening and closing a connection - you're simply accessing a connection from the pooler. In short, let...
  22. I

    Win 7 Possible RTM 7260

    They are already on build 7261 cause they found an issue in 7260. 7260 has the "rtm" in it because it was deemed the escrow build internally. For people who don't know the terminology, escrow means that "this" *is* the build unless they find a breaking issue. In this case, it seems they did...
  23. I

    looking to go back to school

    Assuming you're a US citizen, the first thing you should do is apply for financial aid (fafsa.us.gov) - I think the 2009-2010 application process ends on June 30th. So if you're planning on going back this year, better hurry up :). As far as undergrads go, you should receive some sort of...
  24. I

    C# Generics With Comparisons and Math Ops

    You don't need dynamic typing for this. Also, if it is 95% duplicate code, and if generics can't help, then revert to good old inheritance and polymorphism - create a base class with virtual methods? Others can weigh in on this thought. ?? I lost you here...
  25. I

    C# mysqlconnector - how to check for loss of con?

    It shouldn't matter, but what is the type of "m_con" object? The DbConnection class (base class for all SQL connections) exposes a StateChange event which is raised every time the state of the underlying connection changes. Here is the link...
  26. I

    Database design question

    Ignoring the tone (:)), there is truth in this - I see "username" more as serving the business need (similar to address, name, etc. columns). In order to ensure uniqueness, simply put a constraint on the username column. You can also create a non-clustered index if your queries are based on...
  27. I

    Code for the weakest coder

    ^^ What KB said ^^. This is another good reason to have design and code reviews - they are, IMO, mini coaching/mentoring sessions for the weakest coders. Of course, your team should be enabled and empowered to ask questions... if the weakest ones are interested in learning and growing, they...
  28. I

    a VMware\windows question

    I think you should be OK with it if you're distributing the image within your organization, and your organization has a volume license (assuming you used the volume license keys). If you want to be in utter compliance, contact M$ or your legal department (if you have one).
  29. I

    Thanks everyone

    Nice going, dude. Ensure you keep yourself in-the-know when it comes to superficial programming and scripting for maximum job satisfaction :). Good luck in your future endeavors.
  30. I

    C# Generics With Comparisons and Math Ops

    Overloading operators for Generics is not supported [at this time]. See if this helps: http://www.codeproject.com/KB/cs/genericoperators.aspx You'll have to use reflection APIs, but it can be done. However, as noted earlier, this is a much needed feature for Generics, and when it becomes...
  31. I

    Washing data?

    It is also a term used in data warehousing. Primarily has to do with cleaning, consolidating, and standardizing data, but is often confused (within the data warehousing realm) with fuzzy lookups. If this is an M$ shop, the could very well be alluding to fuzzy lookups and grouping...
  32. I

    Setting up PC and laptop for development in .NET

    I just build VMware images and carry them around on a portable hard drive. Whenever the need arises, I simply plug in the hard drive and load the image. In my case, I have a 7200 RPM HD which slows down over USB, but I hardly notice the difference. Of course, I don't do any performance testing...
  33. I

    C# Debug/Compile Question

    I am curious (been some time since my Network Analysis course) as to why you're using UDP - I mean I understand that there are no acknowledgments going back and forth like TCP, so the noise is reduced, but UDP can drop packets and overwhelm the network. So in your case, Cyclo, how are you...
  34. I

    VS 2010 and Framework 4.0

    I have my corporate box running VS 2005 SP2, VS 2008 SP1, VS 6, VSS, CM Synergy 6.5, Eclipse, SQL Server 2005 SP3, SQL Server 2000 SP4, SQL Server Express 2008 SP1, and SQL Server 2008 SP1. I'll agree that there is a 'fear' associated with installing multiple versions of an application on a...
  35. I

    ASP.NET - Creating Controls in Code

    Can you add this to the Page_Init and see if it helps: AJAXSciptManager.RegisterPostBackControl(button1); Assumptions: AJAXScriptManager is the ID of your ScriptManager. button1 is the id of the first button (in your case, this presumably will be done in the for loop and each new button...
  36. I

    ASP.NET - Creating Controls in Code

    I remember solving this issue on one of the projects I worked on a long time ago. I don't have the code handy, but see if this helps: http://msmvps.com/blogs/luisab...anel-through-code.aspx
  37. I

    VS 2010 and Framework 4.0

    For the curious ones amongst us: http://blogs.msdn.com/jasonz/a...mework-4-0-beta-1.aspx
  38. I

    PHP or C#

    Care to share a few? Not that I'm advocating the Framework, but I'd like to know them (just in case).
  39. I

    Planning my last year for my CS major

    Must do Operating Systems - unless you've other similar courses... my two cents.
  40. I

    Following up after an interview

    Since people are talking salaries here, though this might be of interest to some: http://online.wsj.com/article/SB124181970915002009.html
sale-70-410-exam    | Exam-200-125-pdf    | we-sale-70-410-exam    | hot-sale-70-410-exam    | Latest-exam-700-603-Dumps    | Dumps-98-363-exams-date    | Certs-200-125-date    | Dumps-300-075-exams-date    | hot-sale-book-C8010-726-book    | Hot-Sale-200-310-Exam    | Exam-Description-200-310-dumps?    | hot-sale-book-200-125-book    | Latest-Updated-300-209-Exam    | Dumps-210-260-exams-date    | Download-200-125-Exam-PDF    | Exam-Description-300-101-dumps    | Certs-300-101-date    | Hot-Sale-300-075-Exam    | Latest-exam-200-125-Dumps    | Exam-Description-200-125-dumps    | Latest-Updated-300-075-Exam    | hot-sale-book-210-260-book    | Dumps-200-901-exams-date    | Certs-200-901-date    | Latest-exam-1Z0-062-Dumps    | Hot-Sale-1Z0-062-Exam    | Certs-CSSLP-date    | 100%-Pass-70-383-Exams    | Latest-JN0-360-real-exam-questions    | 100%-Pass-4A0-100-Real-Exam-Questions    | Dumps-300-135-exams-date    | Passed-200-105-Tech-Exams    | Latest-Updated-200-310-Exam    | Download-300-070-Exam-PDF    | Hot-Sale-JN0-360-Exam    | 100%-Pass-JN0-360-Exams    | 100%-Pass-JN0-360-Real-Exam-Questions    | Dumps-JN0-360-exams-date    | Exam-Description-1Z0-876-dumps    | Latest-exam-1Z0-876-Dumps    | Dumps-HPE0-Y53-exams-date    | 2017-Latest-HPE0-Y53-Exam    | 100%-Pass-HPE0-Y53-Real-Exam-Questions    | Pass-4A0-100-Exam    | Latest-4A0-100-Questions    | Dumps-98-365-exams-date    | 2017-Latest-98-365-Exam    | 100%-Pass-VCS-254-Exams    | 2017-Latest-VCS-273-Exam    | Dumps-200-355-exams-date    | 2017-Latest-300-320-Exam    | Pass-300-101-Exam    | 100%-Pass-300-115-Exams    |
http://www.portvapes.co.uk/    | http://www.portvapes.co.uk/    |