| Thread | Last Post | Replies |
|
| HOW to filter by Hour using DataView.RowFilter ? | 22 Sep 2005 04:18 GMT | 2 |
Hi, I use DataView to filter my record. But when I use: ls_filter += " and DATEPART(hh, CA103)=" + i ; mydv.RowFilter = ls_filter;
|
| Stop repaint of RichTextBox? | 22 Sep 2005 03:29 GMT | 8 |
I have code where I append text to a rich text box. I grab the current SelectionStart and SelectionLength before I append the text and then after I reset the SelectionStart and SelectionLength to their former values. I then do a ScrollToCaret() to insure that the selection still ...
|
| UserControl newbie question | 22 Sep 2005 03:17 GMT | 3 |
A UserControl in a Windows Forms application can be placed several times on forms of the application or do I need to create a Control Library for doing that ? I did a UserControl in my App, but I cannot drag that control to other
|
| Avi file protection | 22 Sep 2005 01:42 GMT | 1 |
I have some private wmv and avi files. I would like to protect these files programmatically. One idea is to make some player with c# and use these files only with this player.
|
| when to use delegates and events | 22 Sep 2005 01:03 GMT | 4 |
I have a question about delegates and events I have a basic understanding of each, but in the apps I'm building I'm never needing to use these tools. I'm wondering when and where you should use these features. I am assuming that they are used in your
|
| How to get first and last fridays in a month? | 22 Sep 2005 00:49 GMT | 2 |
Is there a way I can get dates for first and last fridays of a month? Any suggestion would be helpful. Thanks.
|
| basic c# problem | 22 Sep 2005 00:30 GMT | 7 |
I work mostly with vb.net and today only started doping some C#. Can some translate the following vb code in C# '--Here conn is connection object If Not (conn Is Nothing) Then
|
| Call a dot-net dll from C++ | 21 Sep 2005 23:30 GMT | 5 |
Hi, please instruct somebody how to call a dll written in dot-net from a C++ program. Thanks
|
| Custom Controls | 21 Sep 2005 23:08 GMT | 1 |
I have created a custom control which contains an asp:dropdown inside it and embedded my custom control in my web page. I am accessing this dropdown via javascript. The Problem: when this asp:dropdown control was embedded directly in my
|
| How can I update multiple object references at once? | 21 Sep 2005 23:00 GMT | 3 |
I'm working on an application where some common objects are consumed thorough the application. The issue is that such a common object - say some kind of graphics object - shall be replaced by another object now and then, and then all references should be updated at once. Say I ...
|
| accessing a function in a dll file | 21 Sep 2005 22:55 GMT | 1 |
Friends, I would like to access a function in a dll file. I have the call from a vb programme, it looks like Declare Function bapiVersionInfo Lib "bapi" (ByVal versionString As String,
|
| Call Java library using C# | 21 Sep 2005 22:43 GMT | 4 |
I am just wondering if I could call java library using C#. The reason to do that is my application wants to automate OpenOffice and create document. Thanks in advance Alan
|
| Can someone tell me where is a good article about learnig C# Datag | 21 Sep 2005 22:42 GMT | 2 |
Hi, Where is a good place on the internet for me to learn about how to use the datagrid. My grid's datasource is a dataset with one table from a DB. I need to know how to perform Edit, Delete and insert for the grid. The books I have are not that detail. I appreciate it ...
|
| string concatenation | 21 Sep 2005 21:37 GMT | 3 |
I have a Template base class and another subclasses of Template. I have a tree structure of template object. class Template {
|
| C# Newbie | 21 Sep 2005 21:32 GMT | 19 |
In VB i can do the following..... With DataSetThoughtsForm1.tblYourThoughts(0) .ProfileID = Session("UserID") .ThoughtName = txtThoughtName.Text
|