all groups > vb.net > november 2006 > threads for thursday november 2
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
An ActiveX wrapper Clasee
Posted by Woo Mun Foong at 11/2/2006 10:57:01 PM
Hi,
How can I create an ActiveX wrapper Class.
There is a 3rd party ActiveX on my Component Tray that I like to write a
class to encapsulate.
Users will use my class as a replacement to the ActiveX, so they should not
need to drag the ActiveX into their form.
I am using VB2005 Expres... more >>
Subclassing
Posted by Its Me Ernest T. at 11/2/2006 9:05:38 PM
I am looking for any information about how I could subcass a form I don't
own and resize some buttons.
We run a application which is extreamly legacy and the company has long
since went out of business. This application will install on WinXP but the
buttons on the form are smaller than the... more >>
DDE - is it available in .NET?
Posted by Spam Catcher at 11/2/2006 5:57:44 PM
Hi all,
Is DDE still available in .NET? Is there a way to send DDE commands through
VB.NET?
Do I need an ActiveX component, or is there something in the .NET API or
Win32 API that I can use?... more >>
Preferred file locations
Posted by John Dann at 11/2/2006 3:52:43 PM
Can anyone point me to a summary of recommended folder locations for
..Net applications to use for eg config files. (Or if it's simple just
spell them out please.)
I'm currently saving my programs' config and template files to the
application folder, which I'm sure has been deprecated for some... more >>
Disposing of Windows Forms
Posted by Henry Jones at 11/2/2006 2:23:11 PM
I have a project that has 5 or 6 forms.
VB.NET VS 2005
In the FormClosing Event of each form I have the following code:
If Not IsNothing(frmA) Or Not frmA.IsDisposed Then frmA.Close()
If Not IsNothing(frmB) Or Not frmB.IsDisposed Then frmB.Close()
If Not IsNothing(frmC) Or Not frmC.Is... more >>
Get machine user & password logon
Posted by Kleber at 11/2/2006 12:59:02 PM
Could anyone please help?
I'm trying to MATCH the user's UserName and Password imput to the user's
UserName & Password from the machine current logged on.
User's Input:
txtUserName="Joe"
txtPwd="Password"
Machine's data:
strUserName = ???
strPwd = ???
thanks a lot in advance.
... more >>
How Can I Do This?
Posted by Henry Jones at 11/2/2006 12:39:48 PM
Using VB.NET 2005.
I have a Function that I would like to pass the form name and the textbox
name to.
-----------------------------------------
Function DoSomeThing(byref frmOBJ as Object, byref txtOBJ as TextBox) as
integer
frmOBJ.txtOBJ.text = "Some text goes here"
DoSomeTh... more >>
Printing XML Formatted Report in Windows Application
Posted by .NETUser at 11/2/2006 12:34:04 PM
Hello,
I am doing research on printing in VB.NET and I would like to know
how I can use XML to format three different reports. I'm new to this,
so I don't know how to include this in my .NET code. Would someone
point to a location where I can get more information?
Thanks
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Q: Viewing an excel file
Posted by G .Net at 11/2/2006 12:33:03 PM
Hi
Can anybody tell me how I can view an Excel file from within a vb.net
application?
Thanks in advance
G
... more >>
Diagnostic Information Collation
Posted by Simon Verona at 11/2/2006 11:50:49 AM
I have a problem with my application crashing on-site.. (It just disappears
with no errors!).
I suspect that I am running out of some sort of resource during the time
that the application is running.
To assist in tracing what is going on, I want to trace and log the resources
that my ap... more >>
NewBie
Posted by Alex at 11/2/2006 10:18:24 AM
Hello all,
I am very new to vb.net and am looking for help to resolve an issue I am
having.
What I am trying to do: Install IIS by executing sysocmgr.exe
Issue: I need to wait until the execution of sysocmgr.exe is complete
before moving forward w/ the rest of my code
However, when I t... more >>
GetChildRows error - what the f@&# !
Posted by Daniel at 11/2/2006 9:27:20 AM
What's wrong with this code?
1 Dim parentRow, childRow as DataRow
2
3 For i = 0 To mainDataTable.Rows.Count - 1
4 parentRow = mainDataTable.Rows(i)
5 childRow = parentRow.GetChildRows("DataRelation")
6 mainDataTable.Rows(i).Item("Column1") = childRow.Item("Column1")
7 next i
... more >>
XmlDataDocument as a datasource for combobox?
Posted by Dustin Davis at 11/2/2006 8:36:58 AM
I have an XmlDataDocument. How do I go about converting this to
something I can use as a datasource for a combobox?... more >>
math.round doesn't work
Posted by Altman at 11/2/2006 8:10:24 AM
OK I was having rounding problems before and I didn't realize that
their was a third parameter in the round function that would tell it if
it a 5 to round up. I thought adding this would fix the problem but it
didn't. I have VS 2005 and I am using vb.net try rounding the number
4.935 to 2 deci... more >>
Get Calling Function Info
Posted by Li Pang at 11/2/2006 2:24:02 AM
Hi,
I built many classes to be used. One function can call one or more other
functions. If any of these functions have an error I add the error
description into a log file. My problem is to identify all calling functions,
ie, I want to get the full path of called function: f1 calls f2, and ... more >>
How to Transfer an Excel Range to an ADO.Net DataSet or DataTable in VB.Net?
Posted by TCook at 11/2/2006 12:29:45 AM
Hey All,
I've seen lots of stuff regarding pumping data into Excel from .Net but
haven't found anything for the reverse.
Does anyone have a snippet, article ID, etc. demonstrating how to take a
range object and pump that data into an ADO.Net DataSet?
Thanks,
TC
... more >>
|