all groups > dotnet general > may 2005 > threads for wednesday may 11
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
.net on Macintosh
Posted by Jake at 5/11/2005 11:55:13 PM
My team has built a WinForms application for several hundred users in a
corporate environment. We were told ahead of time that all users were
Windows users, but it turns out there are 10 Macintosh users. These
particular users are top executives, so the application needs to work on
their M... more >>
accessing unmanaged C++ with VB or C#
Posted by Brett at 5/11/2005 11:11:05 PM
We have an application completely written in C++ under visual studio v6. One
of our customers wants to use some of our existing components in his project
but doesn't know C++ and isn't interested in learning it. He does know C#
and VB though.
Whats the best option for us (ie. minimum work) to ... more >>
Deploying to an alternative Web Folder
Posted by tonyz.wrightz NO[at]SPAM consultant.com at 5/11/2005 9:28:27 PM
Hi,
I have used the setup wizard to build an installer that installs my
asp.net application. Problem is, at my current job, they have an
alternative web folder at the root level (to clarify, at the Default
Web Site level, there is also another Web Folder).
When I run the installer, it only... more >>
Can't Insert Into Access Table Using .NET
Posted by thejackofall at 5/11/2005 6:30:02 PM
Hi.
This is killing me. I am trying to insert a row into an Access table, but
it's giving me an exception as below.
"Syntax error in INSERT INTO statement."
When I debug and look at the SQL string it is as follows.
"insert into tblCustomer (PropertyType, FirstName, LastName, Address1,... more >>
Obtaining the actual size of the html document's body
Posted by gregl at 5/11/2005 3:31:10 PM
Anyone know how to obtain the true size of the html document's body? The
control contains the size that the control was set to. The body object
appears to contain the same size. That information must be stored somewhere
in order for the scroll bars to be enabled when the body is larger than... more >>
Invoke a .Net Console Application
Posted by Kishore at 5/11/2005 2:04:28 PM
Hi,
I have a small console application written in c# that takes two
arguments.
I am using
System.Diagnostics.Process.Start("cmdApp.exe", arguments)
to start the application from another .net application.
But I am unable to start the console application using this method.
... more >>
Session problem in ASP.NET
Posted by krallabandi NO[at]SPAM gmail.com at 5/11/2005 1:42:12 PM
Hi,
I have created 2 excel report in ASP.NET.
I have used ADODB for this purpose. No interop.
The way of generating the report is same for both. except the SQL Firse
will display ony 100 lines, second may be 10000 lines. But the
procedure is the same.
First report is working in all the... more >>
Run Visual Basic Script in .NET
Posted by sperotti at 5/11/2005 12:58:05 PM
I am running the following code in VB.NET:
Dim proc As New System.Diagnostics.Process
proc.StartInfo.FileName = "C:\Program Files\Common
Files\DPS\Scripts\myVBSCode.vbs"
proc.StartInfo.CreateNoWindow = True
proc.Start()
The process runs fine, however the process always creates a DOS c... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Source Control For 2-3 Developers
Posted by clintonG at 5/11/2005 11:57:55 AM
A group of several developers working remotely from one another needs source
control.
What do you use in this regard?
<%= Clinton Gallagher
... more >>
Creating IE Addins
Posted by Wraith Daquell at 5/11/2005 11:48:13 AM
I noticed that this question was posted earlier with no success, and I
have been wondering the same thing.
How would one go about writing an addin to IE that would allow changing
the HTML as it is downloaded in .NET? I have been searching for the
answer to that one for months!
Thanks,
-WDaqu... more >>
Image Handling for Noobies
Posted by HackerSpiff at 5/11/2005 9:34:05 AM
From a server process (no display access) I would like to take an image (most
likely GIF or JPG) as a blob from a DB and rummage around the pixel values.
Are there classes in the .NET framework that will enable me to decode an
image blob like this?
What classes should I look at for handlin... more >>
.NET Environment setup?
Posted by JVRudnick at 5/11/2005 9:31:10 AM
Hello all...
newbie here to .NET, but have dev asp pages for years. I'm trying to setup
my workstation to now show .aspx pages - with no luck.
I have the 1.1 NET framework installed, IIS5 and a simple EditPlus text
editor that I use nicely with asp pages that are served up fine. But a simple
... more >>
Covert dataset to ADO recordset
Posted by ddt at 5/11/2005 9:20:02 AM
Hi,
Does any one have some sample codes or information for converting .net
Dataset to ADO recordset?
Thanks in advance.
... more >>
Registry HKCU permission problem
Posted by Sine Nomine at 5/11/2005 8:49:25 AM
Hi,
One of the users of my program has been having difficulties, and I've
pinpointed the problem to the following. I have a line of code like:
RegistryKey key = Registry.CurrentUser.OpenSubKey(
"Software\\MyProgram",true);
to open a writable registry key to store settings. This line ge... more >>
How to debug a System Service on customer machine
Posted by Mike Treadway at 5/11/2005 8:46:10 AM
This may seem like a stupid question, but for some reason I'm having trouble
finding an answer.
I have a service that is running with a system account on a Windows 2000
machine at a customer site written in .NET. The service periodically crashes
with an Unhandled exception. How can I attac... more >>
c# programming
Posted by Brett at 5/11/2005 7:06:04 AM
I have downloaded the .Net framework SDK v1.1, and I have visual studio.net
2003. I can build and run the programmes in visual studio but I can't manage
to run C# programs from the DOS command window. I type 'csc Filename.cs' in
the command window but it just states ''csc' is not recognized as... more >>
IDispose grrrrrr
Posted by JP at 5/11/2005 6:41:03 AM
Ok, Im at my wits end with trying to dispose of this class. Everything I try
either doesnt dispose the class or I get build error. Im using C#. What Im I
doing wrong?
XHTML_Library objXHTMLHolder = new XHTML_Library();
objXHTMLHolder.Method...
..
..
objXHTMLHolder.Method...
..
..
objX... more >>
Which is the fastest pattern matching algorithm?
Posted by tommazzo at 5/11/2005 6:11:04 AM
Hi!
I'm looking for a way to find the position of a certain pattern within a
string. On my search on the internet I've come accross various algorithms
such as Knuth-Morris-Pratt and Boyer-Moore (just to name two). But which is
the fastest?
Thanks already in advance!... more >>
MessageBox.Show VB.Net VIsual Studio 2003
Posted by Joe_Zeppe at 5/11/2005 5:44:02 AM
Using VB.Net in Visual Studio 2003 attempting to display text that was
entered in a text box in a message box. The message box displays, but there
is no text... or button lable I know this works, because it works on other
computers. I beleive that it may be some other problem, like missing o... more >>
How do I share .net applications from a network location
Posted by Chris at 5/11/2005 4:22:40 AM
Hi,
I receive an error when I try to run an EXE (and linked
DLL's) from a shared network location.
The error is:
"The application attempted to perform an operation not
allowed by the security policy. The operation requried the
SecurityException. To grant this application the required
perm... more >>
Looping around items in an Arraylist
Posted by Stephen at 5/11/2005 3:26:03 AM
I have an array list alSearchCriteria which contains values which vary each
time its created. It will always have 15 items in the arraylist each time its
created. Some of the values in the array list will be a string called null. I
want to create some way of looping through the arraylist and p... 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 >>
simple printing question
Posted by Jack Russell at 5/11/2005 12:00:00 AM
Gee vb.net makes me feel dumb!
My understanding is that I set up and do all of my printing in the
printdocument printpage and handler using various graphics methods such
as drawstring.
Is that correct?
If so how do I force a form feed?
Thanks
Jack Russell... more >>
treeview dock = left, right, fill, uses full height
Posted by JohnnyB via DotNetMonster.com at 5/11/2005 12:00:00 AM
Hello,
I dont know, if this has already been asked before, I'm sorry if so.
VisualBasic:
My problem (happens with TreeView, not with AxWebBrowser):
treeview uses (no matter, if dock = left, fill or right) the WHOLE height
(even if there are objects on the top and/or bottom with dock = top... more >>
dotnet blog
Posted by Andy at 5/11/2005 12:00:00 AM
Hi
I'm currently looking for a Blog platform based on dotnet. My goal is to use
this as a blog for myself, but also use this as a learning platform for
dotnet development. I've looked dotnetnuke, but this is too much of a portal
for my use.
Any recommendations will be appreciated... more >>
|