all groups > dotnet general > february 2005 > threads for thursday february 3
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
MAPI in dot net
Posted by Ishan Bhalla at 2/3/2005 10:25:02 PM
Hello,
We used to use MAPI - CDO.DLL in VB 6 for sending mails.
Any idea which DLL i can use in VB.net
Thanks in advance
Ishan... more >>
Adding records to MS ACCESS
Posted by Manish Sawjiani at 2/3/2005 8:01:02 PM
Hi Experts,
I am just into dot net and i want simple code for adding records into Access
table (97) using oledb. There are no queries in the databases and there is
only one table:
Friends with the following fields: FriendID (AutoNumber) FirstName, LastName
and DateOfBirth
Please I have tr... more >>
isapi
Posted by Aaron at 2/3/2005 7:58:14 PM
whats the difference between an isapi filter and isapi extension?
thanks
... more >>
"401 unauthorized access" error
Posted by ag at 2/3/2005 6:09:44 PM
Hi guys.. need your help.
We have abc.asp page on the source server which calls a .net component on that server. The component is in MTS running under say "domain2\id1" identity. The component uses HttpWebRequest to call xyz.asp on the target server. Both servers are under the same domain say dom... more >>
not use IE for ASP debugging
Posted by mcnewsxp at 2/3/2005 4:53:22 PM
is there a way to use another browser for ASP debugging besides IE?
tia,
mcnewsxp
... more >>
Object reference not set to an instance of an object :(
Posted by UGH at 2/3/2005 4:27:22 PM
I am looping the grid rows to set the values in the dropdownlists. I keep
getting a run time error "Object reference not set to an instance of an
object." The error occurs on line where it says liitem=
dp.items.findbyvalues(st). I am not sure what I am doing wrong. I included
my codes so som... more >>
log errors
Posted by Aaron at 2/3/2005 3:46:58 PM
I have a web app written in c#. is there an universal way to all log errors
(sql, asp.net, server errors...)?
Thanks
Aaron
... more >>
VS Form-Designer executing form code.
Posted by SR at 2/3/2005 2:39:21 PM
Hi there,
I'm facing a little problem:
I got a class named childBase that inherites from Window.form.
I got another form somewhere that inherites childBase.
I got some code in the childBase_Load event.
My problem is that when I'm trying to design some forms that inherites
from childBase... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Why not "new SqlDataReader()" ?
Posted by Ricola ! at 2/3/2005 2:24:49 PM
Why do I say:
SqlDataReader dr;
instead of
SqlDataReader dr = new SqlDataReader();
--
Texeme Textcasting Technology
http://texeme.com
Indie Pop Rocks @ SomaFM
http://somafm.com/
... more >>
How do I make Network Shares fully trusted?
Posted by Lewis at 2/3/2005 1:47:03 PM
I have "My Documents" redirected to a network share but when I go to open a
project it says that the share is not fully trusted.
I found this info:
> The simplest (least work) in this situation is to change the machine policy (those 3 options are known as policy levels). Under the Intranet zon... more >>
Connection Pooling
Posted by Miss at 2/3/2005 10:37:33 AM
Hi,
I have a very basic question regarding the connection pooling.
To use the built in connection pooling, do I have to have a connection
object created in some shared class?
Right now, I have a data access class created and disposed each time
database query is made(connection is created an... more >>
"Unable to create Web project... The file path... does not correspond to the URL..." error using VSS with VS2003 in a Team Developemt environment
Posted by David Webb at 2/3/2005 9:41:04 AM
The problem started when the Working Folder for a project was somehow set to
the folder of another project. I set the correct working folder in VSS and
deleted the .vbproj files that had been created in the wrong folder on the
hard drive. Before I discovered these files, .NET kept trying to creat... more >>
FTPGetFile overwrite problem
Posted by David Baumgarten at 2/3/2005 8:35:09 AM
I am trying to download a file from a ftp server and if the file already
exists to overwrite it.
Here is my code:
FtpGetFile(hConnection, "1.pdf", FLocation & "\Temp\" & "1.pdf",
False, 1, 0, 0)
If file does not exists then this returns true and downloads file.
If file already ex... more >>
.NET form and Web Browser control
Posted by mfdatsw1 at 2/3/2005 8:35:05 AM
I have a .NET VB form that contains a Web Browser control. In the document in
the Web Browser I have JavaScript that responds to certain click events
within nodes (not buttons or other controls). How do I get information about
the click event back to the parent VB form? I want the parent form ... more >>
telling images apart with AI / image recognition ?
Posted by Mad Scientist Jr at 2/3/2005 8:08:14 AM
Has anyone worked with code that can look at two JPG images (I am
talking about relatively small ones, 40x40 pixels or less) and quickly
analyzing them to see how similar or different they are? Is bitmap
comparison supported by .net's graphics libraries? Initially I could
compare JPG or BMP file... more >>
Cryptic error message
Posted by Shabam at 2/3/2005 8:04:46 AM
I keep getting a 500 error when going to a certain directory that's made
from a virtual folder using UNC. I looked in the log file and found this:
2005-02-03 15:25:17 192.168.1.150 GET /aa/test.jpg - 81 - 192.168.1.150
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+.NET+CLR+1.1.4322) - 500... more >>
Connection to SQL server
Posted by TS at 2/3/2005 7:15:08 AM
Hi all,
I'm trying to connect to an SQL database from my vb.net form, but getting an
error message. The code I used is the following:
Private Sub ConnectSQL_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles ConnectSQL.Click
Dim myConnection As SqlClient.SqlConne... more >>
code behind pages not visible in solution explorer?
Posted by Chris at 2/3/2005 6:35:02 AM
Hi,
I've had this problem before and don't know how to fix.
My aspx.vb code behind pages do not appear as child to the aspx page in my
asp.net application in the visual studio environment in the solution explorer
window.
Instead of being able to click on the code behind page I have to r... more >>
knowcolor enumeration
Posted by PaulUK at 2/3/2005 4:53:01 AM
When I use the following C# code:
string [] colorNames = Enum.GetNames(typeof(KnownColor));
colorNames does not contain the full list of member names detailed in the
System.Drawing.KnownColor enumeration, but just a subset. Why is this?
Paul.
... more >>
DataGrid Paging
Posted by Stephen at 2/3/2005 1:35:02 AM
I've got the below datagrid set-up below and Im trying to get the paging
wired up. The correct numbers are coming back based on the amount on pages
there should be however the on-click event of each page number isn't working.
Does anyone know which event I use and what code I need to add to ac... more >>
Problem CheckBox
Posted by slidera NO[at]SPAM poczta.onet.pl at 2/3/2005 12:27:32 AM
Hi
Have have problems with CheckBoxs
because when a click on the CheckBox, rb.Text.Trim() write to me
results as how many exist CheckBoxs, but I want only one result
But when I click next CheckBox, the rb.Text.Trim() should be add to
result
public void DetayGoster(object sender,EventArgs ... more >>
|