all groups > vb.net > july 2006 > threads for sunday july 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 31
Developing vbs debugger
Posted by Eran.Yasso NO[at]SPAM gmail.com at 7/2/2006 10:59:21 PM
Hi all,
I need to develop vbs debugger. I have no idea how to do it. I know
that i should use "Active Script Debugger Interfaces " method "HRESULT
GetScriptTextAttributes()"
I have no idea how to use it in VB.net. can anyone please help me with
that?
TIA,
Eran.
... more >>
ClientScript.RegisterClientScriptBlock in ASP.NET 2.0
Posted by Nathan Sokalski at 7/2/2006 9:00:58 PM
I am working on converting my code from ASP.NET 1.1 to ASP.NET 2.0. In
ASP.NET 1.1 the RegisterClientScriptBlock method was just a key and script
(2 Strings), but in ASP.NET the ClientScript.RegisterClientScriptBlock also
includes a parameter called 'type' which is of Type. This sounds like it... more >>
code stopping program
Posted by iwdu15 at 7/2/2006 7:26:01 PM
hi, i have the following line of code
Dim fsUser As New IO.FileStream(SnPath & s.Identity & "\UserData\info.ppf",
IO.FileMode.Create, IO.FileAccess.Write)
in a sub, SnPath is not null, s.identity is not null, and there are no
runtime nor compilation errors. once it hits this line, the code... more >>
Add columns in Datagrid
Posted by Familjen Karlsson at 7/2/2006 7:18:46 PM
Hi
Thanks for your answer but I found a new problem. Yours example worked fine,
http://www.vb-tips.com/dbPages.aspx?ID=76a81eb8-ea2d-48f4-99c3-a3539697edbd,
but when I added columns with column styles I made myself and tried to
insert data to them, the columns disappeared. I used your example ... more >>
ComboBox item text colors
Posted by jesuran NO[at]SPAM gmail.com at 7/2/2006 5:32:14 PM
Hi,
I have got a combobox which retrieves its data from a dataset:
Code:
Private dvsItem As DataView dvsItem = New
DataView(MainForm.TempPrice.TempPriceBook.Copy) dvsItem.Sort =
"ItemCode" cbItem.DataSource = dvsItem cbItem.DisplayMember =
"ItemCode" cbItem.ValueMember = "ItemCode"
I woul... more >>
Clipboard Ring
Posted by Tom McL. at 7/2/2006 3:19:32 PM
How do I get the Clipboard Ring tab to display on the Toolbox?
I can use the Clipboard Ring by using Ctrl+Shift+V.
Thanks
... more >>
Looping through directories
Posted by Mark at 7/2/2006 3:12:01 PM
I am trying to loop through 2 separate directories (using the Dir) at the
same time but it seems to get confused and is mixing the files from both
directories. I tried to use the My.Computer.Get files method but I can't get
it to work other than in the myDocuments directory. It also returns t... more >>
programmically open a pdf file in vb.net
Posted by Cindy H at 7/2/2006 11:46:45 AM
Hi
I have a webpage with a link to a pdf file on it.
Right now the user has to click on the pdf file link to open and display the
file.
Does anyone know how I can get the web page to just open the pdf file
automatically without using a link and the user having to click on it?
Thanks,
Cind... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
HTML edit Vb.net
Posted by ailon10 NO[at]SPAM gmail.com at 7/2/2006 9:22:15 AM
well i want to edit simple html file :
first i create it :
system.io.file.create("C:\filename.html")
what i shold do to edit it i mean i want to insert into it
<html>
<head>
<title> TextTextText </title>
</head>
<body>
TextBox1.Text
</body>
</html>
how do i edit it ?
tnx
... more >>
how to delete a file when the windows start
Posted by paraidy at 7/2/2006 8:56:01 AM
Hi, i'm new in this group and i need your help experts :) sometimes
some files are used by the system and is impossible to delete them, how
can i queue a file to delete it at next system startup before it is in
use? thx all.
... more >>
WebBrowser1.DocumentText
Posted by nime at 7/2/2006 2:18:48 AM
How can I grab html source of a frame?
I can retrive main frame by WebBrowser1.DocumentText
but I want to retrive inner (child) frame...
WebBrowser1.Document.Window.Frames(0).DocumentText like thing doesn't exist...
... more >>
problem with string function in vb.net
Posted by giannik at 7/2/2006 12:00:00 AM
I am using this function :
Dim ArrColWidths() As String
ArrColWidths = Split(string.empty,";")
This always returns an array with 1 element .
Silly in my opinion.
Is there a way around this so that it returns an array with zero elements ?
... more >>
Backslash convention for path and file names
Posted by John Dann at 7/2/2006 12:00:00 AM
I guess there must be some convention or Windows specification for
whether the backslash immediately preceding the file name in a full
path string to a file is formally part of the path string or of the
file name. I suppose the options are:
1. Part of the path string, ie all returned path stri... more >>
|