One way to generate data in DB Dude is to use the Regular Expression generator, but using regular expressions can be intimidating...
There is a great post by gert with list of RegEx expressions.
You can find it here.
Ideas, examples and thoughts about software development by Maor David-Pur.
It took me long enough, but finally I'm using Google Apps For Domains.
I've started using their free service (2 GB Email. with your own domain name) and have moved all of my current emailing aliases into that email service.
As you probably know, the spam filtering is awesome and the search capabilities are, well, Googlishious. No more need to pay for hosting or spam filtering!
I like the email web interface but do not forget: I can access my emails with pop3 from outlook, so no problem getting a "hard copy" of my emails offline.
My Calendar also hosted at google, so I'm all set.
Google docs looks amazing!
Navigation
The new home page has a sidebar that lets you filter the documents by tag (renamed to folder in the interface), by type or by collaborator. You can now see all your files by default, not only the documents or spreadsheets active in the last 30 days.
The folders can now have descriptions and you can send a document to a folder by using drag and drop!
Sorting
Google removed the option to sort the files by name or author, so the only available sort option is by date.
Search
The search box includes an autocomplete feature for file names, folders, authors.
Why output script from VSTS for Database pro failed to execute in Management Studio?
Database pro output scripts are valid t-sql syntax, but remember: Database pro uses SQLCMD to deploy databases.
How can you make it run?
In Management Studio you need to swap into SQLCMD mode.
MSDN introduce a Performance Comparison of Windows Communication Foundation (WCF) with Existing Distributed Communication Technologies.
The conclusion is that "WCF is 25%-50% faster than ASP.NET Web Services, and approximately 25% faster than .NET Remoting. Comparison with .NET Enterprise Service is load dependant, as in one case WCF is nearly 100% faster but in another scenario it is nearly 25% slower. For WSE 2.0/3.0 implementations, migrating them to WCF will obviously provide the most significant performance gains of almost 4x."
You can fine the entire comparison here.
Another Scrum template to try with Team Foundation Servere is avalable: eScrum, from Microsoft, which is a Web-based, end-to-end project management tool for Scrum built on the Microsoft Visual Studio Team Foundation Server platform.
You can download it from here.
I've just noticed there's a new release of the Ajax Toolkit control with several improvements. Scott Guthrie has a cool post on the new stuff in the toolkit.
You can get it from here.
Once you want edit a recore, add new or deleted a recored in your data grid you may want to save it in the database.
How do we do it?
Code example:
private void myDataGrid_UpdateCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
{
string productName, productDescription;
// Gets the value of the key field of the row being updated
string key = myDataGrid.DataKeys[e.Item.ItemIndex].ToString();
// Gets get the value of the controls (textboxes) that the user
// updated.
// Each cell has a collection of controls. In this case, a TextBox control.
// The first column -- Cells(0) -- contains the Update and Cancel buttons.
TextBox tb;
// Gets the value the TextBox control in the third column
tb = (TextBox)(e.Item.Cells[2].Controls[0]);
productName = tb.Text;
// Gets the value the TextBox control in the fourth column
tb = (TextBox)(e.Item.Cells[3].Controls[0]);
productDescription = tb.Text;
// Finds the row in the dataset table that matches the
// one the user updated in the grid. This example uses a
// special Find method defined for the typed dataset, which
// returns a reference to the row.
dsProducts.CategoriesRow r;
r = dsProducts.Categories.FindByProductID(int.Parse(key));
// Updates the dataset table.
r.ProductName = productName;
r.ProductDescription = productDescription;
// Calls a SQL statement to update the database from the dataset
sqlDataAdapter1.Update(dsProducts);
// Takes the DataGrid row out of editing mode
myDataGrid.EditItemIndex = -1;
// Refreshes the grid
myDataGrid.DataBind();
}
For more information about DataSet updates, navigate to: http://msdn2.microsoft.com/en-US/library/y2ad8t9c(VS.71).aspx
We are hiring new ALM consultant and .NET team leader.
send your cv to: maor at srl dot co dot il
My company, SRL, organized yesterday very interersting presentation which delivered by Mr. Brent Carlson, CTO and co-founder of LogicLibrary, on "New methodologies and governance in SOA implementation".
The event focused on explaining how to avoid SOA becoming ABOS (A Bunch Of Services), by managing (governing) the process of creating those services and making sure the organization re-uses it's pre-existing resources.
It is common known that we we need a solution that enables enterprises to understand what assets exist, where they’re located and how each fits into a company’s business and technical landscape.
So, how can we satifty this need? ....Mr. Carlson introduced LogicLibrary's solution: Logidex application, with which the governing mentioned above can be done. It seems this is relevant to very large organizations, not medium and small companies.
Maybe I didn't understand him well , but I had the feeling that Logidex sees TeamSystem only as Source Control repository and expect to get other inputs from other applications (Like defects management system etc.). I came back home very confused and I prommised my self to investigate this issue more deeply.
A common question by asp.net developers is what project model should I use for asp.net application? Web Site project (which introduced with VS 2005) or Web Application project (which delivered as add-in for VS 2005 and built-in within VS 2005 SP1)?
There is no thumb rule. Every project model has it's own advantages (and diss-advantages off course...). I hope this post will help you to understand better the differences between 2 of them.
Web Application project model
Web Site project model
Ok, all is great, but you want to create your web site now. Which model should you use?
Worried about security? Microsoft has published patterns & practices Security Checklists Index for .NET framework 1.1 & 2.0.
You can find there:
Take care...
This release includes refactorings dedicated to ASP.NET development.
Great tool!