all groups > dotnet faqs > may 2005
Filter by week: 1 2 3 4 5
View DataSet content in De-Bug Mode
Posted by Daren Hawes at 5/31/2005 12:00:00 AM
Hi,
Can we view the contents of a Dataset in vb.net and VS when in Debug Mode?
Thanks
... more >>
Source of components in development projects?
Posted by Lou_Arnold NO[at]SPAM nospam.com at 5/30/2005 8:54:43 PM
In a development environment, what is the source of components for
applications being written? In other words, are a set of components
installed from say Visual C++ .Net??
Let me explain my understanding of .NET:
I understand that in the .Net concept, components (classes and DLLs)
reside on s... more >>
Crysatl report load report failed
Posted by Meheraj shaik via .NET 247 at 5/28/2005 1:12:39 AM
hi friends,
I'm trying to work with crystal reports & i'm receiving load report failed error.
code i'm giving below:
ReportDocument doc=new ReportDocument();
crpt=new CrystalReport1();//my report
doc.load(@"c:\inetpub\wwwroot\proj\admin\reports\CrystalReport1.rpt");
crystalreportviewer1.report... more >>
Hyper link in Datagrid
Posted by Meheraj shaik via .NET 247 at 5/28/2005 1:03:04 AM
hi friends,
I've dynamically created hyperlink and other columns in a grid=2Ei=
want to change hyperlink's text property dynamically=2Ei've two=
tables products & specials=2Edata from product table is diaplayed=
in grid,if that tables id is existing in specials then=
hyperlink's text is edi... more >>
Installing...NET
Posted by Alex at 5/26/2005 12:00:00 AM
I'm trying to instal Ms .Net but at the beginning of the installation it
says
that an application needs to reboot.. and reboots the system.. but after
that i always receive that message..
how can i do?
thanks
Ale
... more >>
dotnet framework 2.0
Posted by Ellis Yu at 5/26/2005 12:00:00 AM
Dear All
Is it compatible to use framework 2.0 in visual studio.net 2003? or I should
upgrade to .net 2005 if I want to use framework 2.0 ? Thanks
Ellis
... more >>
Delegate Endinvoke Kill thread
Posted by chintan jajal via .NET 247 at 5/24/2005 12:54:16 AM
(Type your message here)
Hi all,
Just a have a question regarding delegates.
We had a windows service before which was multithreaded.
Now i want to develop the same in .net
I found out that we can use delegates and that will basically do multithreading for us.
but i found out a issu... more >>
Running programs for non-previleged users on XP
Posted by Sathyaish at 5/23/2005 8:03:53 AM
Scenario
===========
(1) You write a program using some programming language, say, C#.
(2) You make an assembly out of the program by compiling it. It is a
single module assembly.
(3) You create a setup program for this.
(4) During the setup, the user, an administrator group user, sele... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Removing .NET Framework by "brute force"?
Posted by John Apps at 5/23/2005 12:00:00 AM
Does anyone know of a method by which one can remove .NET Framework 1.0 or
1.1 when the uninstall procedure no longer functions?
I need to uninstall and then upgrade to 2.0 as I want to try out the latest
Indigo kit.
--
GWK - Gesellschaft fuer Wirtschafts- und Kulturgestaltung
John Apps
... more >>
fill dropdown list thru data set
Posted by K R Lal at 5/23/2005 12:00:00 AM
Hi,
Any idea how to fill a dropdownlist thru dataset
I done like this
ddLst1.DataSource = myDataSet
ddLst1.DataMember = myDataSet.Tables(0).Columns(1).Caption
ddLst1.DataValueField = myDataSet.Tables(0).Columns(0).Caption
but it is not working ; my dropdown list showing blanck
pleas... more >>
Calling a constructor from another
Posted by Sathyaish at 5/22/2005 7:09:48 PM
How does a constructor of one class call another of the same class?
When would this mechanism make sense or be required?
PS: Two instances I saw are:
(a) While using the Singleton pattern
(b) While using the Factory pattern
... more >>
Types of constructors
Posted by Sathyaish at 5/22/2005 12:42:10 PM
What is a private constructor, and why would a class have one? What are
the other kinds of constructors besides:
(1) public constructors; and
(2) parameterized constructors
And I understand that they are not mutually exclusive of one another.
The above classification assimilates my knowledg... more >>
Where are ref types that are members of value types stored?
Posted by Sathyaish at 5/22/2005 7:30:39 AM
Structs are value types, strings are ref types. If you have something
like this:
struct foo
{
System.String str;
}
foo TheDayToday;
then, where's
TheDayToday.str
going to be stored?
(a) The string is going to be stored on the stack;
(b) The struct is going to be stored o... more >>
Using Crystal Report
Posted by Walid Salah at 5/22/2005 12:00:00 AM
Hi ALL,
I need a help in Crystal Report?!
When I'm using Crystal Report Command Based Report that include Graphs and
Grouping and then change the report command using
report(OBJECT).SetDataSource(Command) it doesn't retreive the correct sql
command and retreive the data of the old command th... more >>
sending email thro SMTP server
Posted by ufraf at 5/19/2005 9:16:01 PM
Hey i am a total newbie in .net.I'm working on an assignment to send email to
the adimin id that's my official id (xx.xx@something.com - the code
developers id) when an invalid user trys to login to the application.I have
to connect to my comapy's server to send emails.In the code when i give ... more >>
Question
Posted by Pramod at 5/19/2005 5:41:49 PM
Replace the TBD comment with a single line of code that causes this program
to display "Win-Dev!" You cannot modify any of the existing code, or add
code above or below the existing code. You can only write one line of code
in place of the TBD comment and you cannot use the Console class.
... more >>
Unable to serialize the session state. Please note that non-serializable objects or MarshalByRef objects are not permitted when session state mode is
Posted by Mike Larkin at 5/19/2005 11:51:18 AM
I am attempting to store my session state via SQL Server...however, one
of my dataset is generating the following error:
Unable to serialize the session state. Please note that
non-serializable objects or MarshalByRef objects are not permitted when
session state mode is 'StateServer' or 'SQLSe... more >>
How do I Implements Parent class interface in child class
Posted by owais at 5/19/2005 12:25:57 AM
Hi,
I have a problem, I want to implements Parent class interface methods in child class. for e.g
-------------- Test1.vb ----------------
Imports System
Imports System.Web.UI
Imports System.Web.UI.WebControls
Imports System.Globalization
Public Class Test1
Inherits RadioBu... more >>
Best way to recursively populate a tree based on SQL Server 2000 backend
Posted by Mark at 5/18/2005 5:22:14 PM
Hi Folks
I have a classic child parent relationship within the same table where an
unlimited number of levels is possible (theoretically). I have front-end
code that recursively populates a tree control by getting the children of
each node etc. etc. This makes potentially hundreds of calls ... more >>
Need help adding a chart in VB.NET
Posted by Patrick at 5/18/2005 3:00:10 PM
I have been able to add a chart in VB.NET 2003 using MSChart Control 6.0, but
the graphics are very primitive. I can ALSO add a MS Chart 10.0 "chart
space", but have not been able to get any kind of chart/graphics to appear in
it. Playing with the Chart 10.0 has led me to believe it is a sta... more >>
Help or comments appreciated.
Posted by Brad Jones at 5/18/2005 11:26:42 AM
<Previously posted in microsoft.public.dotnet.framework.windowsforms>
Hi all. Any suggestions here would be appreciated. Thanks for reading.
I'm primarly a C++ developer but I've been trying to complete development on
a C# application with the following basic requirements:
- The app runs in ... more >>
Write-Only Properties
Posted by Disiac at 5/16/2005 2:54:31 AM
Hi,
MS Class Library Guidelines clearly discourages use of Write-Only properties
yet they're continuously availed in .NET after VB 6. Personally, I really
don't use them anywhere. Tend to find it as giving the 'highest' possible
access to data as compared to a plain read.
However, out of... more >>
Relation between Points & Pixels
Posted by Rashmi Panduranga at 5/16/2005 12:00:00 AM
We know that 1 inch= 72 points.
Please let me know what is the relation between Points & Pixels.
... more >>
Links required
Posted by Rashmi Panduranga at 5/16/2005 12:00:00 AM
Where do I obtain information regarding methods, properties, classes,
interfaces and examples with respect to Microsoft.Office.Interop.Graph PIA?
... more >>
ToolbarCheckButton - no onclick property?
Posted by () at 5/15/2005 5:12:35 PM
I wish to call a js function from a ToolbarCheckButton web control:
<mytb:toolbar>
<mytb:ToolbarCheckButton onclick="fn();" Text="tbText" ID="tbID" AutoPostBack="false"></mytb:ToolbarCheckButton>
</mytb:toolbar>
However, I get the following parser error on page load:
Type 'Microsoft.Web.U... more >>
Sharing data between Page and UserControl
Posted by Jason at 5/13/2005 11:50:46 PM
I've attempted a few different methods for sharing data between a User
Control and the Page in which it resides, but none seem to work.
The UserControl loads some data in the Page_Load method, populates
private data members and provides access to the data via public
properties.
The Page reg... more >>
Impersonation code
Posted by Pramod at 5/12/2005 12:00:00 AM
Hi,
I have the following Impersonation code. This code is in C# and I want
to retrieve the data from the SQL server database using the Specified
windows username and password.
public bool ImpersonateUser(string sUsername, string sDomain, string
sPassword)
{
bool bImpersonated = fal... more >>
Socket problem
Posted by Laszlo Csabi at 5/11/2005 12:00:00 AM
Hi Folks,
I'm using c# to create a server client application.
I have to check if the socket is in"CLOSE_WAIT" state. Anyone knows any
solution for this?
I tried to used Socket.Connected but it doesn't give a false message if the
socket is in "CLOSE_WAIT" state.
Thanks
Laszlo
... more >>
Brack screen when debug or build in .NET 1.1
Posted by WBG at 5/9/2005 9:03:40 AM
Hi!
My screen go to black when I'going to debug or build. I have 2003 Visual
Stutio (Architect Version) with .NET 1.1 with sp1.
Any suggestions.
Thanks
Wilfredo
... more >>
Can't open a SqlConnection
Posted by Mark at 5/9/2005 12:00:00 AM
Hello again....
I have just started with .net and ado.net and am tryng to get a
SqlConnection working.
I know my MSDE is working as I am able to retrieve data from it using an ado
connection and an ado recordset.
When I try to use a SqlConnection I get the following error on the cn.Open... more >>
Please help me to create DLL in Visual Basic .net 2003
Posted by Ajith Nair at 5/9/2005 12:00:00 AM
Hi,
I am new in Visual Basic .net. I did not find any option to create DLL =
or ActiveX module. Please help me to create.
Thanks in Advance,
Ajith... more >>
Is Microsoft phasing out MS Access as a development platform?
Posted by Lauren Wilson at 5/8/2005 12:07:31 AM
Hello folks,
Would love yo get all informed opinions and/or facts on the following:
Over the last few weeks I have spent quite a bit of time reviewing all
the Access and .NET stuff I could find on Microsoft.com. It's seems
harder and harder to find much of anything about Access as a pri... more >>
Help... Just installed Visual Studio .Net 2003 and can't get samples to work
Posted by Mark at 5/7/2005 12:00:00 AM
Hi... I am new to this so appollogies if I am asking in the wrong place...
If not could someone please point me in the right direction. This is driving
me crazy, I only logged on to have a quick play and that was hours ago...
I have just installed VS.net 2003 (full install) and have a couple... more >>
Multi-Solution Model
Posted by csl at 5/5/2005 10:27:19 AM
Does anyone know how to setup a multi-solution model?
... more >>
link required
Posted by Rashmi Panduranga at 5/5/2005 12:00:00 AM
Where do I find the link to get the information regarding how to automate
Power Point by using VB.Net in Office 2003?
... more >>
debuging on Microsoft Visual Studio 2003
Posted by Avi at 5/5/2005 12:00:00 AM
Hello,
I am using Microsoft Visual Studio 2003 Architecture.
How can I debug my code (Aspx, html, javascripts, etc...) ?
Thanks :)
... more >>
writing html (client) on aspx
Posted by Avi at 5/5/2005 12:00:00 AM
Hello,
How can I (on Microsoft Visual studio .NET 2003) :
use HTML code on aspx page
(I have a button, and I want that the event occurs, when I am clicking on
it,
the IDE doesn't let me doing so, and there is a message : ... it must be
converted to HTML.
I want that the button will run on... more >>
newbie on visual studio dotnet 2003
Posted by Avi at 5/5/2005 12:00:00 AM
Hello,
I am new on using visual studio dotnet 2003
(before that, I had the experiment on developing dotnet with notepad).
I need to know about some elementries :
1) Is there any tuturial (step by step - not specialy on .net, but
specifically on the IDE of visual studio dotnet 2003) ?
2)... more >>
newbie : Some quesitons on Microsoft Visual studio 2003
Posted by Avi at 5/5/2005 12:00:00 AM
Hello,
I am new on Microsoft Visual Studio 2003.
Several questions :
1) How can I compile an HTML page,
and check it syntax
(suppose I have a button, that when onClick event occurs,
there is some code behind (alert a message) - so there can be some code ).
2) How can I link objects to... more >>
System Requirements Recomended !
Posted by lovely_angel_for_you NO[at]SPAM yahoo.com at 5/4/2005 4:25:44 AM
Hello To All
Can you please guide me what hardware and software is required for
running the development environment for ASP.NET.
Currently I am having PIII 550 MHZ/128 RAM/40GB HDD/WinXP/IIS 5.0.
Any information will be welcomed.
Thanks
Love
Lovely
... more >>
send embedded Images through e-mail
Posted by prasad at 5/4/2005 12:00:00 AM
Hi,
How to send embedded Images through e-mail.
I am sending Mails using the smtpmail class in .net
thanks in advance
prasad dannani
... more >>
TESTING
Posted by emac at 5/2/2005 12:00:00 AM
Just testing this news account...thanks
... more >>
tutorial for dotnet
Posted by Avi at 5/1/2005 12:00:00 AM
Hello,
I am looking for good tutorial (quick step by step),
that teach me about the Microsoft .NET 2003 architecture, and show how to
work with the IDE.
Thanks :)
... more >>
|