all groups > dotnet general > august 2006 > threads for monday august 28
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
overview Lib Com SDK
Posted by John Devlon at 8/28/2006 10:41:18 PM
Hi,
Does anyone know where I can find a complete overview of all Lib's, Com's
and SDK's for Visual studio and ASP?
(Commercial and non-commercial)
thanx
John
... more >>
Enterprise Library Forum
Posted by uanmi at 8/28/2006 8:21:01 PM
Please create an Enterprise Library Forum asap.
There is no help on gotdotnet for the many people asking questions.
My project is stuck without some answers.
--
regards, Mark... more >>
asp.net projects can be copied to another machine and work?
Posted by bic at 8/28/2006 7:14:01 PM
asp.net projects can be copied to another machine and work? Or one has to
create a new project and then add existing pages and class lib?
--
bic... more >>
Dial-up connection
Posted by Frank Hardy at 8/28/2006 6:43:13 PM
Hi,
I have to change the phone number of a dial-up network connection by a C#
program. Then the connection should be connected. How can I do this?
TIA for any help,
Frank
... more >>
Virtual desktop makes .NET modal dialog panels disappear
Posted by jbrock NO[at]SPAM panix.com at 8/28/2006 6:22:54 PM
At work we are using a virtual desktop manager called AltDesk
(http://www.astonshell.com/), and it is causing a weird and extremely
annoying problem with the VB.NET application I am developing.
If I start my app, open a test form using ShowDialog() (this is a
menu choice on the main app), and ... more >>
Locking controls in a form object
Posted by RichG at 8/28/2006 3:52:02 PM
I want to lock all controls except the buttons on a form. I sometimes need
the form to call lockForms(Me).
public sub lockControls(frm as form)
for each ctrl as control in frm
if left(ctrl.name,3)<>"btn" then
ctrl.locked=true
endif
next
end sub
Unfortunitly "ctrl... more >>
Tabs and Indents
Posted by Laurence at 8/28/2006 3:06:26 PM
In VS.2005, using VB.NET
My editor is behaving strangely.
If I press the tab key, the line moves over the appropriate
number of spaces. When I click on another line, the line that I had tab'd on
moves over more spaces.
I have changed the tab and insert, but it doesn't seem to work.
The... more >>
How can I manually logout upon errors with forms authenticatioN?
Posted by AAOMTim at 8/28/2006 2:16:02 PM
I want to automatically logout if certain conditions occur in my application.
Calling Session.Abandon() does not force a logout. What can I do?
--
Tim... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How to insert images into a Microsoft Word document using VB.NET??
Posted by JSL at 8/28/2006 1:51:50 PM
How to insert images into a Microsoft Word document using VB.NET??
my code:
Public Function PictureReport()
(it doesn't work!!!)
On Error Resume Next
Dim oDoc As Word.Document
Dim range As Word.Range
oDoc = GetObject(strIniFileName)
oDoc.Bookmarks.Item... more >>
BeginSend timeout?
Posted by Bob at 8/28/2006 12:53:11 PM
This question has been brought up before but I have yet to find a reasonable
answer. Can someone explain to me how to create a timeout for the BeginSend
method? I have seen where people say to create a timer and then have it
close the socket when the timer expires but this is not a true sock... more >>
Mousewheel event...
Posted by Dave K at 8/28/2006 12:33:02 PM
I seem to be missing something... I want to use a mousewheel event in my
VB.NET app... and there's a lot of example code on the net showing how to use
the mousewheel event... and the .NET docs discuss the mousewheel event...
but there doesn't seem to BE a mousewheel event. in VS 2003 or 2005... more >>
File Types in Deployment Project - "Open With" List
Posted by Mark.V.Sullivan NO[at]SPAM gmail.com at 8/28/2006 12:26:39 PM
I have encountered the same problem another posted about several months
ago. Unfortunately, there was no result posted on the old thread. I
will let the original message text stand and ask if anyone can help me
with this..
"I have created a deployment project for a .NET program which opens a... more >>
Newbie ASP.NET Question
Posted by Sean at 8/28/2006 10:41:02 AM
I am working with an ASP.Net web application in VB.net. I am trying to save
these characters: (<, >) in a database as text. The problem is that whenever
I enter something like: "<text>" it says that whatever is in the
textbox(which is "<text>"), is not safe/malicious/etc. I was wondering if ... more >>
DataAdapter.Update( )
Posted by Tom Costanza at 8/28/2006 6:55:01 AM
Is there any way to see the final SQL that gets executed by the Update( )
method. I'm getting a syntax error for the SQL, but all looks OK as far as I
can see. I need to see the SQL with all the parameters replaced.
Connecting to a MS Access database.
Thanks,
Tom Costanza... more >>
Make a Base64 string Url Safe
Posted by Rasmus at 8/28/2006 6:35:01 AM
In a asp.net site i need to make a url link like this:
http://server.com/test.aspx?base64=c+KAnMOfxZLDqhd2w4DCtMOmwr8hawkCdsK9YH7igqwITuKAmcOhXAcDxbjFoR3Cum/DqwFJRU7DpzbigJlYZD1cJcKBwqgaBsObw6VxMMW9wrTDpD7CpSTDkeKAuuKAlFfDt8W+Jz3CvhM7w5HCjeKAneKAuT3Dn8WTw5zigKErw6QFxaF+wrvDksOkwqjDq1fCrsOewrc=
I... more >>
Characters missing when reading from file.
Posted by bart.kowalski NO[at]SPAM gmail.com at 8/28/2006 5:42:04 AM
I'm trying to read a text file that contains international
(specifically Polish) characters line by line. I'm using the following
C# code:
FileStream lStream = new FileStream(pFileName, FileMode.Open);
using (StreamReader lReader = new StreamReader(lStream))
{
string lLine;
while ((... more >>
What's wrong with my IIS after I installed Sharepoint portal serve
Posted by George Shui at 8/28/2006 12:13:02 AM
I first installed Visual Studio .net on my local computer without installing
Frontpage Server Exetension 2002 and I tried creating Web Sites and find it
work well.
Then I installed Sharepoint portal server on the same computer. The
sharepoint portal server works well now.
But now when I cre... more >>
|