Search Results
Search found 1309 results on 53 pages for 'dr jimbob'.
Page 29/53 | < Previous Page | 25 26 27 28 29 30 31 32 33 34 35 36 | Next Page >
-
-
iPad Development: It's Different in an Exciting Sort of Way
The power of a desktop and the portability of mobile -- all in the same device Fujitsu iPAD - Programming - ipad - Business - LanguagesRead the article
-
A Portable Security Risk
Ubiquity of personal devices with built in web connectivity, office applications, and email fraught with risks to businesses Business - Business Services - Ubiquity - Mozilla Firefox - Aza RaskinRead the article
-
Parallelism: Who Cares?
Parallel computing - Programming - Languages - Hardware - C++Read the article
-
Presented By:
Read the article
-
TeraGrid Application Deadline Approaches
Time requests must be in by April 15 Business - Management Science - Management - Management Information Systems - Call For PapersRead the article
-
The iPhone Isn't Easy
How to get started building an app iPhone - Smartphone - Handhelds - App Store - AndroidRead the article
-
Presented By:
Read the article
-
Presented By:
Read the article
-
SQLAuthority News – Meeting SQL Friends – SQLPASS 2011 Event Log
- by pinaldave
One of the biggest reason I go to SQLPASS is that my friends are going there too. There are so many friends with whom I often talk on Facebook and Twitter but I rarely get time to meet them as well talk with them. One thing I am usually sure that many fo them will be for sure attend SQLPASS. This is one event which every SQL Server Enthusiast…Read the article
-
High Availability for IaaS, PaaS and SaaS in the Cloud
- by BuckWoody
Outages, natural disasters and unforeseen events have proved that even in a distributed architecture, you need to plan for High Availability (HA). In this entry I'll explain a few considerations for HA within Infrastructure-as-a-Service (IaaS), Platform-as-a-Service (PaaS) and Software-as-a-Service (SaaS). In a separate post I'll talk more…Read the article
-
How to Transform a user's search string into a MS SQL Full-Text Search Phrase
- by Atomiton
I've search for answers for this and I can't seem to find an answer to what should be somewhat simple. This is related to another question I asked, but it's different. What's the best way to take a user's search phrase and throw it into a CONTAINSTABLE(table, column, @phrase, topN ) phrase? Say, for example the user inputs: Books by "Dr.…Read the article
-
display data from json file in datagrid
- by kayn
I want to display data from a json files in a data grid using dojo ver 1.0.0. I am able to diplay the data when i declare it on my code but when i store the same data in a json format so i can reference it in my script,i get an empty grid. This is my json file; { data: [ ['10''myfile','Css', 'CS Degree','Dr.…Read the article
-
Dropdownlist and Datareader
- by salvationishere
After trying many solutions listed on the internet I am very confused now. I have a C#/SQL web application for which I am simply trying to bind an ExecuteReader command to a Dropdownlist so the user can select a value. This is a VS2008 project on an XP OS. How it works is after the user selects a table, I use this…Read the article
-
ColdFusion structs Direct Assignment vs object literal notation.
- by Tom Hubbard
The newer versions of ColdFusion (I believe CF 8 and 9) allow you to create structs with object literal notation similar to JSON. My question is, are there specific benefits (execution efficiency maybe) to using object literal notation over individual assignments for data that is essentially static? For example: …Read the article
-
Convert a user's search string into a MS SQL `Full-Text Query` Search Phrase
- by Atomiton
I've search for answers for this and I can't seem to find an answer to what should be somewhat simple. This is related to another question I asked, but it's different. What's the best way to take a user's search phrase and throw it into a CONTAINSTABLE(table, column, @phrase, topN ) phrase? Say, for example the…Read the article
-
named_scope and substings
- by Philb28
I have a named_scope in rails that finds episodes by there directors given name named_scope :director_given, lambda { |dr| {:joins => :director, :conditions => ['given = ?', dr]} } It works great but I would like it to also work on substrings one the name. e.g. instead of having to search for 'Lucy'…Read the article
-
cannot read multiple rows from sqldatareader
- by amby
Hi, when i query for only one record/row, sqldatareader is giving correct result but when i query for multiple rows, its giving error on the client side. below is my code. please tell me what is the problem here. string query = "select * from Customer_Order where orderNumber = " + order;//+" OR…Read the article
-
datatable works in C# winform but not ASP.NET
- by Charles Gargent
Hi I have created a class that returns a datatable, when I use the class in a c# winform the dataGridView is populted corectly using the following code dataGridView1.DataSource = dbLib.GetData(); However when I try the same thing with ASP.NET I get a Object reference not set to an instance…Read the article
-
Trying to get JQuery Autocomplete working on Asp.Net page.
- by JasonMHirst
Can someone shed some light on the problem please: I have the following: $(document).ready(function () { $("#txtFirstContact").autocomplete({url:'http://localhost:7970/Home/FindSurname' }); }); On my Asp.Net page. The http request is a function on an MVC Controller and that code is…Read the article
-
SQL Invalid Object Name 'AddressType'
- by salvationishere
I am getting the above error in my VS 2008 C# method when I try to invoke the SQL getColumnNames stored procedure from VS. This SP accepts one input parameter, the table name, and works successfully from SSMS. Currently I am selecting the AdventureWorks AddressType table for it to pull the…Read the article
-
Make Directory.GetFiles() ignore protected folders
- by Kryptic
Hello Everyone, I'm using the Directory.GetFiles() method to get a list of files to operate on. This method throws an UnauthorizedAccessException for example when trying to access a protected folder. I would like it to simply skip over such folders and continue. How can I accomplish this…Read the article
-
Problem with skipping empty cells while importing data from .xlsx file in asp.net c# application
- by Eedoh
Hi to all. I have a problem with reading .xlsx files in asp.net mvc2.0 application, using c#. Problem occurs when reading empty cell from .xlsx file. My code simply skips this cell and reads the next one. For example, if the contents of .xlsx file are: FirstName LastName Age John …Read the article
-
invalid postback event instead of dropdown to datagrid
- by rima
I faced with funny situation. I created a page which is having some value, I set these value and control my post back event also. The problem is happening when I change a component index(ex reselect a combobox which is not inside my datagrid) then I dont know why without my page call the…Read the article
-
C# - Getting record from a row using DataRow
- by pinkcupcake
I'm trying to get record of a row using DataRow. Here's what I've done so far: uID = int.Parse(Request.QueryString["id"]); PhotoDataSetTableAdapters.MembersTableAdapter mem = new PhotoDataSetTableAdapters.MembersTableAdapter(); PhotoDataSet.MembersDataTable memTable =…Read the article