&
Best unofficial Apache Server developers community
Username
Remember me?
Password
Forgot password?
Create an account
List archives
Videos
Answers
Questions
Unanswered
Tags
Ask Question
vb.net
0
votes
1
answer
20
views
Quickly insert data to remote mysql server in vb.net
I have small application in vb.net I have one table in msaccess, which is having around 20,000 records, now, I want to insert these records to…
mysql
vb.net
asked
June 23, 2011 11:57 pm CDT
user680457
0
votes
0
answers
43
views
VB.NET + Apache CXF + HTTP POST
I would like to know what the best way to transfer file contents using HTTP POST in Apache CXF and VB.NET as the client? The file could be of any…
vb.net
http
post
cxf
asked
June 23, 2011 10:35 pm CDT
Siddharth Sharma
0
votes
1
answer
28
views
Grabbing all regex matches of "$#" from a string
I have a string that contains multiple instances of a dollar sign followed by a positive number. I need to grab each instance out using regex.…
.net
regex
vb.net
asked
June 23, 2011 7:46 pm CDT
ChrisO
0
votes
3
answers
19
views
Regular expression help - comma delimited string
I don't write many regular expressions so I'm going to need some help on the one. I need a regular expression that can validate that a string is an…
regex
vb.net
asked
June 22, 2011 9:05 pm CDT
John H.
0
votes
2
answers
23
views
Why does this SQL work in one format, but not another?
I've been having this problem with MySQL for the past month. It's not a big problem, but it's pretty annoying. query = "SELECT * FROM…
mysql
vb.net
asked
June 22, 2011 9:34 am CDT
MGZero
0
votes
3
answers
19
views
VB.Net Regex...extracting a value
How in VB.Net can I extract the value from a string using the RegularExpressions class? For example, say I have the string: [Mon Jan 4 2011] Blah…
regex
vb.net
asked
June 21, 2011 3:49 pm CDT
GregH
1
vote
1
answer
25
views
Which is faster? ORDER BY Timestamp or WHERE Timestamp =
I'm setting up a sqlite database that will monitor a number of physical sensors. A separate application is saving data for several months... This…
vb.net
sqlite
asked
June 20, 2011 9:36 pm CDT
svaha
0
votes
5
answers
35
views
How to send response to asp .net webform request via other server
I have two web servers with public IPs, for example Server1 with IP 111.111.111.111 and Server2 with IP 222.222.222.222 . Please see the picture:…
.net
asp.net
vb.net
http
networking
asked
June 17, 2011 1:34 pm CDT
Dee Jay
0
votes
2
answers
58
views
How to refresh datagridview binding in vb.net or C#?
I created two tables(FIRSTtable and SECONDtable) in the mysql database and two tables that are related. The FIRST table, has a columns (product_id…
c#
mysql
vb.net
datagridview
asked
June 17, 2011 1:38 am CDT
wira yudha
0
votes
1
answer
32
views
WinHTTPRequest.ResponseText not returning the full HTML?
I tried to use WinHTTP Request to retrieve a webpage (HTTPS website) in VB.Net and for some reason it was only returning the partial HTML, is there…
vb.net
https
winhttprequest
asked
June 16, 2011 9:51 am CDT
zhuanyi
1
vote
3
answers
34
views
Mysql inner join giving bad results (?)
The following sql call works fine, returns the correct total retail for customers: select customer.id, customer.first_name, customer.last_name ,…
mysql
sql
vb.net
left-join
inner-join
asked
June 16, 2011 8:29 am CDT
Jeff
0
votes
0
answers
27
views
Fields dont show up in Database connection using Visual Studio
I'm building a web application on Visual Studio using VB.NET.I'm trying to connect the MySQL database created to the web pages and run queries.I've…
asp.net
mysql
vb.net
visual-studio-2010
database-connection
asked
June 16, 2011 5:30 am CDT
Sunil Tej
0
votes
0
answers
30
views
Winhttprequest.response text returning only partial HTTP?
I tried to get a HTML page programmatically to retrieve a HTTPs page (in VB.NET), however the response text only seems to return a partial HTTP…
vb.net
https
responsetext
winhttprequest
asked
June 15, 2011 10:08 pm CDT
zhuanyi
0
votes
1
answers
35
views
MySQL keys acting a little strange
I have a bit of a strange problem with MySQL that I've never seen before. Basically, I need to enter the same entry into a table x number of times.…
mysql
vb.net
asked
June 15, 2011 3:04 pm CDT
MGZero
1
vote
0
answers
32
views
Parse different Address from an array
I am trying to parse an address that i pick up in an array: arrayUser(2) = address 1 arrayUser(3) = address 2 arrayUser(6) = zip The address…
regex
vb.net
visual-studio-2008
parsing
street-address
asked
June 13, 2011 7:51 am CDT
StealthRT
0
votes
1
answer
23
views
How do I find the last rows each machine_id in mysql database with vb.net?
' machine_id time_schedule product_quantity ' 1 100 ' 1 200 ' 1 100 << find this value(100) ' 2 05:00:00 ' 2 10:00:00 ' 2 15:00:00 <<…
mysql
vb.net
asked
June 10, 2011 8:54 am CDT
DIAN
1
vote
4
answers
26
views
Regular Expressions Question
I have this program: Dim words() As String = {"car", "arc", "caar"} For Each w In words Dim rx = Regex.IsMatch("rca", "^[" + w + "]+$")…
.net
regex
vb.net
asked
June 9, 2011 11:16 am CDT
Cobold
0
votes
1
answer
32
views
How to format the DateTimePicker into hh:mm:ss and What is the appropriate type to save time in mysql?
I want to save the time in the format hh:mm:ss from the DateTimePicker to MySQL database, How to format the DateTimePicker into hh:mm:ss only…
c#
mysql
vb.net
datetimepicker
asked
June 8, 2011 5:56 am CDT
Putri Diana
1
vote
2
answers
38
views
Visual Basic Regular Expression Question
I have a list of string. When user inputs chars in, the program would display all possible strings from the list in a textbox. Dim fruit as new…
regex
vb.net
asked
June 7, 2011 7:36 am CDT
Cobold
-2
votes
1
answer
21
views
Converting Python regex to VisualBasic
I'm converting a python application to VB.net and I need help with this regular expression: a = 'abcdef' b = re.compile('[' + a + ']{3,}$', re.I) Is…
python
regex
vb.net
asked
June 7, 2011 6:04 am CDT
Cobold
Pages
:
1
|
2
|
3
|
4
|
5
>
[8]
159
vb.net
Tagged:
vb.net
Related Tags
mysql
× 59
regex
× 50
.net
× 25
c#
× 22
sqlite
× 15
asp.net
× 14
ftp
× 12
vb
× 10
http
× 9
sql
× 6
winforms
× 6
database
× 6
visual-studio-2010
× 6
ftpwebrequest
× 5
odbc
× 4
visual-studio-2008
× 4
html
× 3
ssl
× 3
parsing
× 3
visual-studio
× 3
ado.net
× 3
postgresql
× 3
dns
× 2
winhttprequest
× 2
browser
× 2
python
× 2
datagridview
× 2
post
× 2
file-upload
× 2
English
Russian
Copyright 2007 - 2012
Best unofficial Apache Server developers community
Privacy policy