all groups > dotnet general > october 2004 > threads for sunday october 10
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Noobie Question: Hooking a dataset into .MDB?
Posted by (Pete Cresswell) at 10/10/2004 9:24:46 PM
I'm about to start climbing the .Net learning curve.
Would like to start by reproducing a little application that I already have up
and running using an MS Access front end. It manages information for class
reunions. Seems to have the basics: parent/child records, "Find"
functionality, Ad... more >>
2 javascript questions
Posted by Aaron at 10/10/2004 7:52:18 PM
how would i use document.write to write this input box? i can do it without
quotes but i need them for my purpose
<input type="textbox" name="input" value="something">
i did this but it doesn't have the double quotes
document.write( '<input type="textbox" name="input" ' + 'value="' +
ente... more >>
Date format with VBNET
Posted by Bernard Bourée at 10/10/2004 6:08:46 PM
I have some problems with the date formats with VB.NET
Here is my code:
dim dDateF as New DateTime()
dDateF = Today
'Suppose Today = 31/12/2003 format FRANCE
dDatef = Format(dDate, "dd/MM/yy")
'give me 12/31/03 that is the US format !!!???
My regional settings are set to FRANCE (WinXP)
... more >>
Problem With Exception Management Application Block
Posted by apt35lo NO[at]SPAM aol.com at 10/10/2004 4:57:38 PM
Hi All,
I'm basically just trying to get started with the Exception Management
Application Block and am having some technical difficulties. All I
want to do to begin with is create a simple Windows Application (which
I have done and named "ExceptionManagementTester") and within it
create and... more >>
how to add a column in a master detail realtionship using datagrid controls?
Posted by Juan at 10/10/2004 3:38:40 PM
I built a form that displays a master-detail relation ship, now i need to
add a column to the datagrid displaying the master data, this column
corresponds to the text name of a column stored in the master table as an
integer (the foreign key, i need to display the text name of the foreign key
st... more >>
issue command line statements
Posted by Job Lot at 10/10/2004 3:29:09 PM
how would I run osql command from within console or windows application?
For e.g. how would I run following command, which I normally type on command
prompt
osql /U alma /P mypassword /i titles.qry /o titles.res
thanx
... more >>
load a droplist in VB when the edit is clicked in a datagrid
Posted by Stanley J Mroczek at 10/10/2004 12:11:01 PM
I am trying to load a droplist in VB when the edit is clicked in a datagrid.
I tried to use OnDataBinding and loading the droplist in subroutine "loaddd".
I get this error Object reference not set to an instance of an object.
Here is the code:
<asp:TemplateColumn runat="server" HeaderTex... more >>
Code size limit or bug?
Posted by John Smith at 10/10/2004 12:10:10 PM
I'm using VS.NET 2003. One of the modules in my VB.NET project has over
10,000 lines of codes. If I Build solution, the compiler sometimes hangs on
that project at "Performing main compilation...". I have to close the IDE
with an exception (prompted for send report to MS). This problem happen... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Windows Service and Recovery
Posted by Mike Mazar at 10/10/2004 11:35:04 AM
I have a service which I create in vb.net. I'm trying to use the Recovery
feature of Windows 2000/XP to restart the service if it fails to start. Looks
like there are some steps that a service must perform for this feature to
work, like settings the value of WIN32_EXIT_CODE. Does anyone know h... more >>
transactions
Posted by Iain Mcleod at 10/10/2004 10:42:04 AM
I wish to do a series of inserts on a sql server database in the context of
a transaction. The inserts will be done as a series of stored procedure
calls. I wish to be able to rollback any inserts should one fail.
A quick google on ".net transactions" and the following page comes up:
http:... more >>
how to get to a cell in dataGrid?
Posted by s-galit at 10/10/2004 9:43:04 AM
i want that a specific cell in the dataGrid will be in focus,
also i want that the user will be able to edit a specific cell (like
cut,copy,paste)
how can i do that?
how can i get to a specific cell?
thanks
... more >>
ASP .NET Failed to load resources from resource file.
Posted by Ramani at 10/10/2004 6:43:02 AM
Hi,
We are running a ASP .NET application on Win2K server (.NET framework 1.1)
I have recently started getting this error - Failed to load resources from
resource file.
I would like to understand what causes this error.
It is a multi-language app and in Application_BeginRequest we do
Th... more >>
Kill own process
Posted by Peter Schmitz at 10/10/2004 5:13:02 AM
Hi,
I' m currently developing a service that displays a window to the user
(interactive). Now, when the user cancels the window, the whole process shall
be killed. But how can I kill my own process in VB.NET?
Thanks a lot
Peter... more >>
Problem with structure between C++ and .NET
Posted by Peter Schmitz at 10/10/2004 2:11:02 AM
Hi,
I want to call a C++ function in my additional DLL out of my VB.NET code.
Unforunately, this function needs a structure as an argument and here's where
the problems begin:
This is the C/C++ declaration:
typedef struct _MYSTRUCT{
BOOLEAN one;
BOOLEAN two;
UINT anint;
BOOLEAN th... more >>
Calling Invalidate on Custom Control Causes Other Controls to Stop Rendering...
Posted by garbage NO[at]SPAM societygames.com at 10/10/2004 1:36:08 AM
I have this very basic Custom Control:
public class TestPanel : Panel
{
public TestPanel() : base()
{
this.SetStyle(
ControlStyles.AllPaintingInWmPaint |
ControlStyles.Opaque |
ControlStyles.UserPaint,
true);
}
protected override void OnPaint(PaintEventArgs e)
{ ... more >>
|