Search results

  1. W

    Child's Play 2013 - eigth annual donation drive, with matching $

    Are you still matching? Ordered for Nemours Children's Hospital Orlando: Monsters, Inc. (Two-Disc Collector's Edition) Just Dance Kids 2 - Playstation 3 Infantino Activity Toy Set Item Subtotal: $50.05 Shipping & Handling: $0.00 Total Before Tax: $50.05 Order Total: $50.05
  2. W

    Clearwire too good to be true?

    I have clearwire at home, its not LTE. It is SLOW AS MOLASSES in January. I don't know how they can market it as broadband - I can't even watch a youtube video without a few minutes of buffering first. I tend to use my phone more since it's LTE and blows the clearwire out of the water. Now...
  3. W

    VB.net loop coding question

    There really isnt an easy way to use a variable as part of a variable name. You could using reflection, but I'd guess it's just not worth it. Your best bet would be to add the values or controls into an array and then just reference their values using COUNT as the index of the array. Also...
  4. W

    What is VB.net for?

    vb.net is just another .net language. I believe if the same program was written in vb.net and c#, the IL code would be VERY similar. There are some performance differences, but for most operations it is very negligible. Most functionality is interchangeable between vb.net and c#, barring...
  5. W

    replicated SQL with web application

    talion: Unless the applications are custom designed in house, there probably is no way to have it target multiple servers. You can use DNS to redirect to backup copies/sites if your main server goes down, then you'd be resolving the name to a different IP address. Essentially, clustering...
  6. W

    replicated SQL with web application

    In my opinion, If you really are looking into SQL Replication - you need a DBA that knows it. And from the little you've posted here it sounds like SQL replication is a good solution for your problem. Really, with a replicated SQL server and webserver at each site - the application becomes...
  7. W

    Please Confirm MD5 for VSE 2012 Desktop

    I only have an MD5 checker installed. Also, I'm not sure there is any reason to do this since you are downloading it directly from MS - but its better to be safe then sorry I guess! I've only worried about checking MD5's when downloading from 3rd party sources. MD5...
  8. W

    SOLVED - Problem retrieving a PDF file stored in SQL Server in an ASP.NET application

    1) Did you recently move it to Server 2008, and if you upload a new file does it work? Are you sure it's not the upload process that is faulty? Well, I guess the identical copy rules this out, but its worth a guess. 2) Can you verify the file size? IIS really wouldnt randomly change bytes...
  9. W

    Can I easily play Blu Ray through Win 7 Media Center?

    I currently have a Win7 computer that i use soley as an HTPC. It's about 3 years old. Intel Core 2 Duo E7300 Wolfdale 2.66GH 4GB DDR2 800 Onboard NVIDIA GeForce 7150 It plays the recorded TV in 1080 beautifully. I'd like to add a blu ray play, but only if it can be a matter of popping...
  10. W

    SQL vs noSQL

    Is this a system that is already in place? Is it taking 39 hours? I think you are assuming a server can only process them synchronously, whereas it can process multiple asynchronously (probably). You need to do some serious performance testing and see where the real bottleneck is. 1 second...
  11. W

    VBSCRIPT Running incredibly slow

    Although I agree with exdeath, thats not the point of this thread. Put in some message boxes or log to a file a bunch of timestamps to help you figure out where the performane problem is. Also, how many rows are on tbl_customer and tbl_project_main, because you are selecting from them with...
  12. W

    barcode readers + php/mysql

    Wow - necro thread! leony83, you can try to do some fancy javascript to catch the input and fill the forms automatically using keydown/keypress events. You can alter barcode scanners to prefix or suffix the actualy data with an identification string, i.e. "|" + <Product Id> + "|" Otherwise...
  13. W

    Need help setting up my development environment...

    Unless there are source files in that directory (.cs) then there is not much you can do. You need to get the source code for the project. If the source files are there, you can at least ATTEMPT to build a solution file, but depending on the projects size can be very time consuming.
  14. W

    renaming a SQL instance

    It sounds like you are confusing INSTANCE names with HOST names. One HOST can have multiple INSTANCES, and you specify the instance name when it is installed. If you used the default instance name, you dont have to specify it when connecting and can just connect using the HOST name, if you...
  15. W

    Debugging a Web Site using Visual Studio

    Using chrome, load the page and right click anywhere and click "Inspect Element", then click the "Console" button, it will list there what files were not able to load.
  16. W

    Weird keyboard for programming

    I've always preferred to connect a USB keyboard to any laptop when using the keyboard extended amounts. But yes, keyboard layout is important.
  17. W

    SQL Dump to MySQL import - question

    I dont know if this will help, but I recently used this companies product: http://dbconvert.com/products.php?pDB=6#mssql to convert mysql->SQL and it worked beautifully. I would've paid much more then $100 for the software it did it's job so well.
  18. W

    Building a database for storing user uploaded images

    I'm not sure what you are looking for - but I have a few suggestions: 1) If you do not need more then one caption per photo, just add the caption to tbl_member_photos. 2) 255 may be too short for url/file paths. 3) Unless you really have a need for a 1M char caption, avoid varchar(max) - set...
  19. W

    Your relative works in.....

    Banks / Credit cards do not receive an itemized list of what was bought, only the store name and total. Source: I've developed applications that integrated with many different credit card gateways.
  20. W

    Selective importing from flat file to SQL table

    if you are using SQL2008 you can look into using MERGE. Otherwise, you'd be best using a staging table I think also. UNLESS, you know for a fact the first 1M rows are all pre-2005, I believe on import you can tell it to skip a certain # of rows.
  21. W

    Integrating Web Scraping into a website

    Scraping is definitely one of the *least* preferred ways of doing this. If you are scraping fandango, for example, I could almost guarantee that it is against their TOS. Also, if they change their layout, you'll probably have to change your scraping code, which means you're site will...
  22. W

    ASP.NET / C# - Read DB and apply coordinates to picture

    Your description is kind of vague - but I agree with mark, it sounds like it'd be better to start out with a floor plan and draw dynamically on top of that. To draw the layouts of the rooms would be a bit more complicated. .NET has a built in graphics library that makes creating/editing...
  23. W

    VBScript Help - Top 10 Processes by CPU

    I dont know if it will be useful at all but your issue took my interest to see if it could be done in powershell...it looks like this might be helpful, if you can use powershell. http://www.richards-blog.com/html/?p=15
  24. W

    SQL query to find business days of the month

    adding WHERE DATENAME(dw, ACTIVE.TRANS_DATE) <> 'Saturday' should work
  25. W

    SQL query to find business days of the month

    That will work unless you have a business day where there are no rows, then it will not return a row, where you probably want to to return 0.
  26. W

    Windows DBMS > MySQL Community Edition VS SQL Server

    If you've designed it for MSSQL, SQL express will probably with with little to no changes. There's a newer version/technology coming out, or maybe its out, but I cannot remember the name - that is a completely standalone DB, no install needed. Similar to access but uses MSSQL technology. A...
  27. W

    Using an Access Email to kick off an Access Database macro

    Just be sure to sanitize/parameterize(is that a word?), even though its for your own person use, an email with the subject of: Hi, how are %you'; delete from users; --% could be very dangerous.
  28. W

    parsing values in SQL w/ delimiter

    Oh, and similar to your RPARSE that you mentioned would be the RIGHT command: http://msdn.microsoft.com/en-us/library/ms177532.aspx But that wont help you since the number of chars could change.
  29. W

    parsing values in SQL w/ delimiter

    Similar to your other thread if it's always "AMOUNT: " then use replace. If you must use 3 replaces, one for "AMOUNT:" one for "$" and one for all spaces.
  30. W

    Mostly running, is protein supplement necessary?

    Ghiedo: I'm not really doing long runs yet, they are 35-45 minutes now but I will be doing longer runs soon...what do you suggest for recovery? Would taking the protein shake in the morning instead of /along side breakfast be an OK option? Right now I'm doing 3-4.5 miles 3-4 times a week. One...
  31. W

    Mostly running, is protein supplement necessary?

    So I'm focused on losing weight by restricting calorie intake and a lot of running. I'm running about 10-12 miles a week now and am planning on increasing it about 10-15% a week with the ultimate goal of a sub 120 minute half marathon in December. I am doing a small amount of other strength...
  32. W

    DATEPART(HH,GETDATE()) AS 'SubmissionID',

    I'm sure there is an easier way to do this but it it what i came up with: SELECT replicate('0', 2-LEN(DATEPART(HH,'1/1/11 9:00am'))) + CONVERT(varchar(2),DATEPART(HH,'1/1/11 9:00am')) AS 'SubmissionID'
  33. W

    1&1 hosting for Windows, question about ASP.NET connection to MSSQL

    All your datasources should retrieve their connections from the web.config - use the same connection and just change it whether its on the server or on your computer. They layout of your tables and columns should be the exact same between your home computer and the hosted version. I don't...
  34. W

    Prevent Full Screen Applications From Drawing On A Windows Form

    I don't have much input to help you, but read this msdn blog post...it gives some very good info about always on top which might help. http://blogs.msdn.com/b/oldnewthing/archive/2011/03/10/10138969.aspx
  35. W

    need help with a MS SQL import issue

    Not to go off topic, but you peaked my interest with this...OP if you have powershell you can do the same thing basically, though i'm not sure how well it will work for large files as I don't have one to test. cat <sql filename> | select -skip 2492470 | select -first 10
  36. W

    need help with a MS SQL import issue

    Homerboy: did you see my recommendation? You can also put breakpoints in the script task which will let you see the problematic data. Have you tried opening the file with notepad++? I've used it on 2GB files with no problems, but yours is much larger so I'm not sure if it'll work for you or not.
  37. W

    need help with a MS SQL import issue

    I had a similar problem. My solution was adding a script task that took in the date columns and if they were invalid defaulted them to 1/1/1900. Try 'check if DOB is valid If IsDate(Row.dob) Then 'good date If...
  38. W

    Shakes fist @ amazon!

    If it item was indeed sold by amazon you should be OK. The one time I received the completely wrong product they overnighted me the correct one free and included a label to return the wrong one. All of the times I've dealt with amazon customer service have been great.
  39. W

    official veggie gardener's thread

    I harvested 35lbs (total) of cucumbers, spaghetti squash, and butternut squash yesterday! Here are some pics of my current garden: https://picasaweb.google.com/wannafly37/GardenPics# Although, the spaghetti squash is not doing well any more- it is covered in a white fungus/dust...It might be...
  40. W

    .net framework 4.0 sdk does not show in programs list

    If you are looking for the "Visual Studio Command Prompt" then you need to install Visual Studio. Though, I'm not sure if the express version includes it but it should.
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/    |