all groups > dotnet general > september 2005 > threads for thursday september 1
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
GetObject() func does not work in asp.net?
Posted by bic at 9/1/2005 5:59:13 PM
When porting my Windows app to asp.net I get an System.Exception: Cannot
create ActiveX component. What function can I use instead? Thanks for your
comments.
--
bic... more >>
web.config file
Posted by Rafael Chemtob at 9/1/2005 4:30:43 PM
hi
i have a web.config file that specifies the connection string for my
database. the database server on the ISP is using a different port than
1433. how do i specify in the connection string to use a specific port
number?
i tried the <ip address>:<port number> and that didn't work.
any idea... more >>
Ignore Previously Installed Versions
Posted by krose NO[at]SPAM rockstarsandiego.com at 9/1/2005 3:43:07 PM
I have created an Installer using the "Setup Wizard" in Visual Studio.
I've added a custom action to this as a seperate DLL written in C#.
The custom action has to install files from another location on the
network.
Everything is working and going well.
The problem I am having now is that o... more >>
why does this path work?
Posted by Dathon at 9/1/2005 2:31:28 PM
I am trying to recursively enumerate the contents of my Documents and
Settings folder. While doing this, I cam across the following:
C:\Documents and Settings\All Users\Application Data\Symantec\hpc\
This directory contains an empty file named " " (a single space)
The weird thing is tha... more >>
shell command question
Posted by dkalsow at 9/1/2005 1:05:03 PM
Does anyone know the syntax in vb.net that I can open the "Windows Picture
and Fax Viewer" in VB.Net and pass it a variable that contains the name of
the file I want to view. I have tried different variations of the shell
command but have not got it to work.
Thanks!
Dale... more >>
Display Assembly Information
Posted by pothik05 at 9/1/2005 9:23:02 AM
Hi:
I have created a custom Attribute for the assembly and lets call it
AssemblyAbc. I want it to be displayed with the other Assembly Information.
If you right click the dll, click Properties > Version > Other Version
Information:
I want my attribute to be listed here. I help will be... more >>
Interop: Using WriteProcessMemory on LVITEM Structure
Posted by Charles Law at 9/1/2005 9:09:13 AM
I have defined LVITEM as follows:
<StructLayout(LayoutKind.Sequential)> Private Structure LVITEM
Dim mask As Int16
Dim iItem As Int16
Dim iSubItem As Int16
Dim state As Int16
Dim stateMask As Int16
<MarshalAs(UnmanagedType.LPWStr)> Dim pszText As IntPtr
Dim cchT... more >>
Do not allow Users to go back to previous web page
Posted by Brian at 9/1/2005 8:55:12 AM
I'm writing a .Net Web application. I'm trying to find out two things.
1) Once a user clicks a button that takes them to the next page, I don't
want them to be able go back to the previous page.
2) The only way I want them to be able to get to the 2nd and 3rd pages is
by going through th... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Templates vs. Masterpages in Framework 1.1
Posted by nLella at 9/1/2005 8:48:17 AM
I am trying to build a new web application and trying to implement either
templates or master pages in it.
I tried to read several articles but could not actually deside on weather to
go with the template
approach(http://forums.asp.net/ShowPost.aspx?PageIndex=6&PostID=4692#66176)
or with The... more >>
Help!!! What's happening to my code and why??
Posted by Matt at 9/1/2005 8:29:23 AM
Hello!
I'm working on an ASP/VB.NET application that was originally developed
on the .NET 1.0 Framework. It was recently converted to run on the 1.1
Framework. The application compiles and runs fine after the
conversion, UNTIL I try to modify the GUI.
Basically, I am unable to modif... more >>
Crystal Report Export to Word
Posted by vijaym at 9/1/2005 8:01:15 AM
Hi,
Am trying to export a crystal report to word format as a word table.
Have tried using borders, tables and lines (in the report) to no avail.
Has anybody done this before ? Is it possible.
Thanks in advance
V
... more >>
Studio loses connection to running Web page
Posted by baylor at 9/1/2005 7:33:24 AM
Has anyone else had this issue: i run an ASP.NET application, stepping
through code, i let the browser sit for a little while (last time was 9
minutes) and then Studio acts like i'd hit the stop button. The app is still
running but no longer stops at break points and Studio shows the same menu... more >>
Move conection settings to a config file
Posted by Steve at 9/1/2005 6:53:03 AM
I am trying to move my connection settings out to a config file, rather than
having them hardcoded in my app. What is the best way of doing this? I
created a simple xml doc that looked something like this:
<Connection>
<DEV>........
</DEV>
<LIVE>.......
</LIVE
</Conne... more >>
Convert ByteArray to String
Posted by Swarup at 9/1/2005 6:04:42 AM
I am reading a file (txt, xml, gif, ico, bmp etc) byte by byte and filling
it into a byte arry. Now i have to convert it into a string to store it in
the database.
I use
System.Text.UnicodeEncoding enc = new System.Text.UnicodeEncoding();
now i am using enc.GetString(value) and the value ret... more >>
Help. Dot Net keep flagging an error remdim
Posted by WAYNEL at 9/1/2005 2:28:59 AM
Hi
I am trying to re-write some of the example code that Agilent gives for
VB to VB.Net.
In .Net I keep getting the error 'cannot change the number of
dimensions of an array'.
I have paste the module I am having an issue with. Can anyone help!
Thanks
WayneL
Module Module1
' ... more >>
Signing assemblies ???
Posted by serge calderara at 9/1/2005 1:38:02 AM
Dear all,
I have different asseblies that I would like to sign in order to place them
in the GAC.
For that I first create a keypair at the same place as my solution file with :
sn -k lang.snk
Then in my assemblyInfo file I place following line:
<Assembly: AssemblyKeyFileAttribute("lang.... more >>
custom logging sink for logging application block
Posted by Ollie Riches at 9/1/2005 12:00:00 AM
I have written a custom logging sink for the enterprise library logging
application block (June 2005). I have been able to configure it as expected
from the UI config tool (EntLibConfig.exe).
I have built a console application to test it with and I am getting the
following error message wri... more >>
|