all groups > vb.net > january 2007 > threads for sunday january 21
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
auto complete code
Posted by Jak at 1/21/2007 11:36:09 PM
Hi, all,
I am wondering if there are any addons for VB.NET 2005 to complete the codes
automatically after I entered two or three characters, just like Delphi
does.
Thanks,
Jack Zhong
... more >>
HTML Table to CSV?
Posted by Smokey Grindel at 1/21/2007 11:35:06 PM
Anyone know of a way to convert a HTML Table to CSV or Datatable? It's in
the form of this format It's basically a multi row x 7 column HTML table...
all in standard HTML <TABLE> tags thanks!
... more >>
Reader ordinal problem
Posted by John at 1/21/2007 8:22:07 PM
Hi
I am getting the System.IndexOutOfRangeException was unhandled error on the
last line of below code;
Cmd = New OleDb.OleDbCommand("SELECT [Last Staff Update From Site] FROM
[Update Control]", LocalConn)
Reader = Cmd.ExecuteReader()
Console.WriteLine("{0}", Reader.GetOrdinal("[Last Sta... more >>
Regex Validator - detect all but certain HTML tags
Posted by Barry L. Camp at 1/21/2007 7:55:11 PM
Hi all... hope someone can help out.
Not a unique situation, but my search for a solution has not yielded
what I need yet.
I'm trying to come up with a regular expression for a
RegularExpressionValidator that will allow certain HTML tags:
<a>, <b>, <blockquote>, <br>, <i>, <img>, <li>,... more >>
Why is this not working and how to fix??
Posted by Ron at 1/21/2007 7:53:15 PM
I am trying to populate a listbox with dates of easter from 1901 to
2099. My code is not doing it. Here is what I have. What am I doing
wrong?
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Dim a As Integer = 0
Di... more >>
Update command OledbDataAdapter problem
Posted by explode at 1/21/2007 6:51:19 PM
I made nova oledbdataadapter select update insert and delete command and
connection veza. dataset is Studenti1data, I made it by the new data source
wizard,and made datagridview and bindingsource draging Table1 to Form2. The
select command works fine, but when I change the data and call upda... more >>
Passing an array value to the textbox, returns null. Why?
Posted by VBcoder vb at 1/21/2007 5:11:03 PM
I have a function USTRST where it finds the value of USPoP_CityA as
shown below (the value is searched from a database)
Redim P_Lline(9)
USPoPA_City = Cells(adrsX, adrsY + 5)
P_Lline(0) = "US " & USPoPA_City (when i return this value in any excel
cell, i get the value of USPoPA_City, in th... more >>
Why can't I get the FormView control's Paging controls to show?
Posted by Nathan Sokalski at 1/21/2007 4:45:49 PM
I have tried everything I can think of, I have even tried copying examples
from books and websites I have found, but every Formview control that I have
tried to create does not show the Paging controls. The first record from the
DataSource is displayed, but not the Paging controls. I have trie... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Best way to communicate over net?
Posted by MrQuan at 1/21/2007 4:23:40 PM
G'day all,
I have a requirement to communicate between two or more PCs over the
Internet, however I have no idea how to go about this.
I'm not talking about a chat programme as such, I want to have an
application running 24/7 on a 'base PC' connected to the internet that
can send out data (... more >>
WHERE CAN I ASK A QUESTION ABOUT VB?
Posted by aaron.kempf NO[at]SPAM gmail.com at 1/21/2007 3:18:52 PM
where can i ask a question about VB?
i just get so damn confused; I don't use VB or VB.net; I use VB 2005
-Aaron
... more >>
Using a VB6 dynaset object in dot NET
Posted by Dave Cullen at 1/21/2007 11:24:54 AM
I have a VB6 program that I'm trying to convert to run under VB.NET. The
application uses an Oracle database and Oracle OO4E objects to
connect and retrieve data:
'OraSession, Oradatabase and dynLog are Objects
'strSql is a SELECT statement
OraSession = CreateObject("OracleInProcServer... more >>
convert VB to c# - web dev
Posted by Gary at 1/21/2007 10:30:31 AM
Hello,
Anyone know how to do the following in c# - using inline codeblocks?
<% If Request.Form("Name") = "Gary" Then %>
<asp:RequiredFieldValidator ID="GarysValidation" ErrorMessage="Gary, you
have chosen the wrong option<BR>" ControlToValidate="Name" Display="Dynamic"
runat="server"></... more >>
Help - Array = Nothing - How do I catch
Posted by xla76 at 1/21/2007 4:21:20 AM
I have a function that returns an array of string values, occasionally
the returned array value is 'Nothing'
I need to check if the value is nothing before moving on - how can I do
this - none of the options i've looked at seems to fit? (vb2005)
Thanks
Pete
... more >>
Accessing sql server behind proxy
Posted by John at 1/21/2007 4:17:51 AM
Hi
My app is running on a windows 2000 server with isa 2000 installed. How can
it access an external sql server (using its ip) from within the isa 2000
firewall/proxy via code?
Thanks
Regards
... more >>
Getting computername
Posted by Mike Behrendt at 1/21/2007 3:31:13 AM
Hey @all!
option explicit on
Private Declare Function GetComputerName Lib "kernel32" Alias _
"GetComputerNameA" (ByVal lpBuffer As String) As Long
Private Const MAX_COMPUTERNAME_LENGTH = 15
Sub Demo_GetComputerName()
Dim strBuffer As String
Dim ... more >>
Display decrypted text in databound controls
Posted by ilr at 1/21/2007 3:06:00 AM
Hi
I have a table in an sql database that contains data that has been encrypted
using the DPAPI.
What I am trying to achieve is to bind several controls on a vb 2005 windows
form to those fields but display the decrypted data in the controls instead
of the encrypted data. I also want... more >>
|