all groups > dotnet faqs > december 2004 > threads for december 1 - 7, 2004
Filter by week: 1 2 3 4 5
replacement for ActiveX in .NET
Posted by Praveen Pandey at 12/7/2004 4:36:18 PM
i have a web based application that uses a lot of OCXs. i am planning on
rebuilding my application. how do i replace my OCXs. is Smart client an
answer to my question.
... more >>
where is the Line Control ?
Posted by Tark Siala at 12/7/2004 2:48:53 AM
hi again :)
in VB6 i use the Line to Draw Lines Like when i make Wizard Forms.
but in VB.NET i cant find this Control......
it's realy not important Control
but nice to make GUI like 3D Lines
please tell me where the line Control in VB.NET???
--
----------------------------------------... more >>
Bring to Front
Posted by Charles A. Lackman at 12/6/2004 12:15:58 PM
Hello,
I have created an application that searches to see if a process is running
and if it is it maximizes it's window.
i.e.
For Each AProcess In AProcesses
If AProcess.StartInfo.WindowStyle <> ProcessWindowStyle.Maximized Then
AProcess.StartInfo.WindowStyle = ProcessWindowStyle.Maximiz... more >>
microsoft.public.dotnet.faqs,microsoft.public.dotnet.framework,microsoft.public.dotnet.framework.windowsforms,microsoft.public.dotnet.general,microsof
Posted by Charles A. Lackman at 12/6/2004 10:19:15 AM
Hello,
I have created an application that searches to see if a process is running
and if it is it maximizes it's window.
i.e.
For Each AProcess In AProcesses
If AProcess.StartInfo.WindowStyle <> ProcessWindowStyle.Maximized Then
AProcess.StartInfo.WindowStyle = ProcessWindowStyle.Maximi... more >>
Help; "Web server is not running ASP.NET version 1.1."
Posted by **ham at 12/5/2004 11:59:09 AM
"Visual Studio .NET has detected that the specified Web server is not
running ASP.NET version 1.1. You will be unable to run ASP.NET Web
applications or services."
This is the message I get each time that I want to create an ASP.NET
application. The help recommends to register ASP.NET by us... more >>
File replacement while deploying .NET windows application
Posted by youhanna NO[at]SPAM gmail.com at 12/5/2004 3:28:55 AM
While deploying a .NET Windows application using a .msi package
created using Visual Studio .NET 2002 deployment project, if a file
with the same name exists in the same location where a file in the
installer need to be created, the old file remains and not updated by
the newer one associated wi... more >>
Where is the VB6 Data Repeater in .Net??
Posted by Robby at 12/4/2004 3:07:45 PM
In my opinion the VB6 Data Repeater has to be the most versatile control
ever released by Microsoft. They also sharee this opinion when they
released it but I have not been able to find its .Net equivalent. I have
found a weaker versions of it in the web controls called Repeater, DataList ... more >>
Use .NET DLL from VB6 app -> broken references on rebuild?
Posted by Gary McGill at 12/4/2004 1:25:31 AM
I'm building a set of DLLs in .NET that I plan to call from a VB6
application.
I've almost got that to work, but now I find that whenever I re-build any of
my .NET DLLs, the reference to that DLL in my VB6 project gets broken. So, I
need to re-create the reference after every rebuild. This is ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Can I change solution name?
Posted by Chi Tang at 12/3/2004 9:28:06 AM
Hi,
I have a VS.net solution which has 2 sub projects. Now I have a question
that how I can change a solution name so I can have same source code for
different projects? Can I just go to explorer and change the sln name to
other? Thanks for any help,
CK
... more >>
Thread Part 3
Posted by Charles A. Lackman at 12/2/2004 11:14:08 AM
Hello and Thanks again,
Maybe I am not explaining what I am looking for good enough and maybe I
should not be using muli-threads at all. What I am after is the following:
Form1 instantiates Form2 using SHOW, which is always on top. Form2 is a
clipboard, where the user can copy and paste ... more >>
Can i do sth like that in .NET?
Posted by **ham at 12/2/2004 2:10:06 AM
I wonder if I could make a windows application which hosts html pages, and
instead of the typical .NET controls uses the HTML controls, but at the same
time executes commands of the main application from that html page. I
actually want to make sth like McAfee 8, which has html pages as its
stand... more >>
VB.NET alone ??
Posted by Richie at 12/1/2004 5:37:14 PM
Hi all,
Please help me with my doubt.
I have purchased VB.NET standard edition (just VB.NET and not the entire
studio). now my issue is , how do i make a composite control in VB.NET ? And
how do I use it in my application ?
Also, if I want to make a class library, when I say New > Project, ... more >>
Threading Part 2
Posted by Charles A. Lackman at 12/1/2004 11:48:02 AM
Hello and thank you for your assistance.
I have attempted to accomplish what I need using delegates with no success.
i.e.
//Button Click//
Dim PollThread As Threading.Thread
PollThread = New Threading.Thread(AddressOf PollThreadAddress)
PollThread.Start()
End Sub
Private Sub PollThread... more >>
|