all groups > vb.net > march 2004 > threads for sunday march 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
Display HTML in 'standard' VB page
Posted by Phil at 3/28/2004 10:15:57 PM
Hi,
In VB6 you could use the WebBrowser control (MS Internet Controls) and place
this control within a page. You could then display web pages within this
control......VB.Net allows you to reference and wrap this COM but I do not
know how to display in a VB page or say a picture control. I know... more >>
How to print Graphics & text
Posted by Kelly Dykstra at 3/28/2004 9:46:06 PM
Hi
I need to print graphics and text. What is the best way to do that (I like to use print preview)? I am using InkPicture control therefore the graphics contain both Image as well as ink strokes. Any help even partial answers will be appreciated
Regard
Kell
... more >>
custom paging in datagrid
Posted by mongphong28 NO[at]SPAM yahoo.com.au at 3/28/2004 9:32:33 PM
Hi,
Does anyone have a "real" example of using custom paging with a
datagrid that retrieves data from a db? The online example just
inserts sample data each time which doesn't really illustrate how you
go about it, not sure why they bothered!
It says that your query should only return enoug... more >>
Decimals wont show
Posted by WStoreyII at 3/28/2004 9:25:20 PM
i have a decimatl decsum and decqty
the values are 456 and 229
when i divide these two numbers and try to display teh results in a text box
i get 228 when i need 228.044
i have tried to fromat
"#0.0000" but alls this does is give me
228.0000
what do i need to do to fix this ?
WStor... more >>
Opening Form
Posted by Niels at 3/28/2004 9:14:52 PM
Hello,
I have a (simple) question....
I made a solution with 2 forms (frmMain & frmInfo)
On frmMain I have a button hat has to open frmInfo...
everywhere I look the following code-sample appears:
Dim form1 As New Form
form1.Show()
But ofcourse I'm getting a blanc form.... more >>
Deployment Project Question
Posted by GG at 3/28/2004 9:13:01 PM
VB.Net 2003 Standard:
I have a solution that contains 2 projects. Proj 'A' & Proj 'B'. Both are
stand alone executables that share a database. In the code of each project
how do should I reference this database? I have tried the
Application.CommonAppDataPath, UserAppDataPath, LocalUserAppDataP... more >>
Another conversion question... break in C# to vb
Posted by Brian Henry at 3/28/2004 8:32:50 PM
How would you convert a scope break statement to vb?
ex:
if (buff[0] == '\n')
{
break;
}
... more >>
Child MDI form will not display
Posted by David L Wright II at 3/28/2004 7:31:07 PM
When I try to show my child mdi form I receive a "Error creating window handle" error message. I can not determine what I have done wrong. I can post the application if necessary
Any suggestions.... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
VB.net and Help Authoring
Posted by Ulrich Kulle at 3/28/2004 6:55:24 PM
Hello VB's,
if you are looking for examples how to connect help or CHM files to your
application have a look at:
http://www.help-info.de/en/Visual_Basic_net/visual_basic_net.htm
Best regards
Ulrich Kulle
***************************************
http://www.help-info.de
********************... more >>
Intelligent Flow Charting Tool Control
Posted by Yannis at 3/28/2004 5:49:23 PM
Hi,
I was wondering if anyone has used a Flow Charting Control within VB.NET.
I am looking for a control that will let the user built his own flowcharts
and will allow
me to detect what kind of connections exist between the different blocks.
I want to use it for an engineering application. I'... more >>
desperately seeking code for msflexgrid
Posted by edwinah NO[at]SPAM customercare.com.au at 3/28/2004 5:24:49 PM
Hi everyone,
no, i don't want to use the datagrid.
however.... i do want to use msflexgrid in vb.net.
i can create the reference, but how can i put it on the form?
absolutely desperate for some code to show how this is done.
many thanks
Edwinah63... more >>
Array.CopyTo Function
Posted by Terry Olsen at 3/28/2004 5:09:03 PM
I have an ArrayList that is an array of:
Class Address
Name as String
Age as Integer
End Class
How can I copy just the "Name" component to a single dimensional array?
Thanks,
Terry
... more >>
True/False values in Datagrid
Posted by Nathan at 3/28/2004 4:45:11 PM
Is there a way to have a datagrid show True/False column values as a
checkbox, not as the words "True" and "False"?
... more >>
Datagrid binding
Posted by Zanna at 3/28/2004 4:24:53 PM
Hi all,
I'm using the CompactFramework and I like to format some datagrid cell (the
DataGrid has a Datatable as datasource).
Someone told me to use the Binding class and its events Format and Parse.
Ok, but I have no idea about how to link a datatable cell with the Binding
class.
I.E.: I... more >>
C++/C# endline char checking in byte array
Posted by Brian Henry at 3/28/2004 4:13:02 PM
I am looking at this article http://www.developerfusion.com/show/4472/4/
and at one point in the code
private string Response()
{
System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding();
byte [] serverbuff = new Byte[1024];
NetworkStream stream = GetStream();
int c... more >>
Performing a treeview treenode click from code.
Posted by Max Henzi at 3/28/2004 3:41:08 PM
Hello
I am writing an application in VB.NET that utilizes a treeview. I want to allow my users to add new nodes to the treeview
In my code, I dimension a treenode and set the tree node text to "Type New Process Category Name.
I then set the treeview LabelEdit property to True and call the Beg... more >>
Please help me! >>>> System.Text.Encoding.UTF8.GetString(by) NOT works
Posted by George Baburanos at 3/28/2004 1:54:33 PM
Hi,
On my Function "ObjectToString" the code line >>>
System.Text.Encoding.UTF8.GetString(by) NOT works why ?
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
Private Function ObjectToString(ByVal obj As Object) As String
Dim strString As String = "", i As Integer
Dim formatter As New
System.Runtime... more >>
convert this to vb
Posted by Brian Henry at 3/28/2004 12:50:52 PM
public class NntpException : System.ApplicationException
{
public NntpException(string str)
:base(str)
{
}
};
I know it starts out like
puublic class NntpException
inherits System.ApplicationException
public [sub or function] NntpException(byval str as string... more >>
Process.start class(again)
Posted by Jim at 3/28/2004 10:51:06 AM
When I try to use Process.start for opening a file in word(2003), I get a message stating that word cannot find the file. I can open word manually and open the file but not from VB.Net. I have the Word library reference too. What am I doing wrong?... more >>
usercontrol in component list
Posted by dk at 3/28/2004 10:51:05 AM
after making some modifications to a custom usercontrol in vb.net
how can the changes if the control is embedded in another
solution
tia
dk... more >>
Process.start class
Posted by Jim at 3/28/2004 10:46:05 AM
Load Image from Access DB
Posted by T Cordon at 3/28/2004 10:37:38 AM
How can I load an image from Access DB Table field?
Thanks
... more >>
Newbie? Searching DataSets
Posted by Barry at 3/28/2004 10:25:25 AM
Hi All
I am trying to search a DataSet by Year and return all the records in the
DataSet for that year.I've tried loops and keep getting an exception error
when I Just use a year for my search. Here's my basic coding which works
for finding a particular date and adds it to the list.
Thanks Ba... more >>
accesing Form1:controls from other class
Posted by Greg at 3/28/2004 9:41:05 AM
Hi
I need to control the text of a label on a form, from a VB class
I'm using VB .NET and can't figure out how to accomplish this
I saw a similar question/answer using C#, but I can't translate it to VB .NET
Can someone show a simple example of using a public property in the form, that sets/gets... more >>
package and deploy
Posted by carlob NO[at]SPAM global.co.za at 3/28/2004 9:37:42 AM
Hi
I right click on the setup and un-tick the 'exclude' option which I
think was the option to include the components needed for non .net
machines.
When i run the final build I get:
C:\Documents and Settings\My Documents\Visual Studio
Projects\Setup2\Setup2.vdproj dotNETFXRedist_x86_enu.msm mu... more >>
How to implement a function pointer?
Posted by John Smith at 3/28/2004 8:52:44 AM
Hi
Is there a way to implement a function pointer in VB.NET
(I don't have enough knowledge about C)
Thanks for any help
... more >>
Media Player 9 Control Help
Posted by Overburn at 3/28/2004 8:01:51 AM
I am trying to create a "mod" of media player 9. I am trying to make it so
that when I start the program, a file is loaded into a media player 9
control, and then is ste to full screen and played. Now thats the easy
part, the part I need help with is when the user right clicks on the media
pla... more >>
namespace
Posted by juzan at 3/28/2004 7:54:21 AM
hi
in what namespace is EncryptedData?
i am trying to run an msdn sample .. but it wont work.
i checkd in object browser but it doesnt show anythin.
do i have to download some api?
... more >>
Update of Version No?
Posted by grawsha2000 NO[at]SPAM yahoo.com at 3/28/2004 6:41:01 AM
Greetings,
How the Version NO.of an assembly becomes updated? That is, for
example, if a component is modified and then recompiled, does that
produce automatic, say, version no. 1.1 of that component or do I have
to that manually??
MTIA,
Grawsha... more >>
Easy way to automatically expand text box
Posted by jy836 at 3/28/2004 1:06:19 AM
I have a text box on a form which automatically expands when the form is
resized (using the Dock property). When I add a status bar to the form,
however, the text box goes below the status bar and is partially hidden. Is
there a way to have the text box still resize when the form does, but
witho... more >>
Class Library Template
Posted by WStoreyII at 3/28/2004 12:59:57 AM
I wish to build a class library and i found the tutorial for this in the
msdn the problem though is that i have vb.net standard and the class library
template does not come with vb.net standard is there a way to get this with
out buying a different edition?
WStoreyII
... more >>
|