Monday, August 31, 2015

Bytes Posts by Kara Hewett

I am a frequent bytes contributor.  Although this help is archived after awhile, the links can be found below.

How to add local database in installshield limited edition?
Replies: 2
Views: 524
Posted By Kara Hewett
Does the project use ODBC? If it uses ODBC, then please ensure that the ODBC connection has been created for the database.
WinForm: Drag & Drop is blocked
Replies: 
Views: 423
Posted By Kara Hewett
You can handle the PreviewMouseUp event to catch the moment when the user clicks on a column header:

[C#]

private void view_PreviewMouseUp(object sender,...
 
Replies: 5
Reading html tag Using Xml reader
Views: 958
Posted By Kara Hewett
Hi HtmlAgilityPack and regular expressions...

Hi

HtmlAgilityPack and regular expressions can be used to parse HTML very effectively. HTML can be formatted using "classes". You can then parse on the class such as:

XPathValues =...
 
Replies: 5
What can I do about this?
Views: 435
Posted By Kara Hewett
A few good examples of Raise and Control of Print...

A few good examples of Raise and Control of Print Dialog Boxes can be found here:

http://www.tutorialspoint.com/vb.net/vb.net_print_dialog.htm

http://support.microsoft.com/kb/322710/en-us/
 
Replies: 1
Database connection in Designer hosting and retriving data from databas.
Views: 437
Posted By Kara Hewett
What version of C# are you using? WPF provides...

What version of C# are you using? WPF provides fast data retrieval and binding to a database into data views.
 
Replies: 6
If it is possible? some of different fields merge in a calculation filed on a query
Views: 341
Posted By Kara Hewett
The Microsoft Visual Basic string class includes...

The Microsoft Visual Basic string class includes numerous methods that could be used for the merge of fields. The complete list is at the URL below. In addition to Left, Right and Mid, you could...
 
Replies: 0
WPF RxFramework Guide
Views: 485
Posted By Kara Hewett
WPF RxFramework Guide

Could someone recommend a comprehensive WPF Rx (Reactive Extensions) Framework? I've found many individual code snippets and tutorials but not an in-depth, comprehensive guide?
 
Replies: 3
C# Data Grid Toolkit
Views: 577
Posted By Kara Hewett
Thank you! Would you have a suggestion for WPF...

Thank you! Would you have a suggestion for WPF that has similar functionality to DevExpress WPF GridControl but free?
 
Replies: 3
C# Data Grid Toolkit
Views: 577
Posted By Kara Hewett
C# Data Grid Toolkit

Does anyone have a good C# DataGrid toolkit that is free but includes data sorting, grouping, summing, and configuring colors on the fly? Also I would like to support large datasets of millions of...
 
Replies: 2
how to connect/save/update data to the database ?
Views: 3,378
Posted By Kara Hewett
The connection to the database should use OLEDB. ...

The connection to the database should use OLEDB.

Sub DB_Utility()
Dim strConnection as String = "Provider=Microsoft.Jet.OLEDB.4.0;"
strConnection += "Data Source=Northwind.mdb"
...


No comments:

Post a Comment