hi,
I'm trying to build a regex that catches everything between a FROM and WHERE of a sql clause (ie, the tables)
EX: select * from t1, t2,t3, t4 x where ...
i need the "t1, t2,t3, t4 x"
i've tried several stuff and end up with this
FROM\s+(?<tables>\w+\s*[,]?\s*)*(WHERE){0,1}
but in...
Hi,
I need a regular expression that matches this string:
[{x:y:z}][{k:l:m}] ... with this pattern repeating n times
i want to capture each word, that is: get the 'x', 'y', 'z', 'k'...
i've tried something like this
Dim re As New Regex("[{(\w):(\w):(\w)}]")
Dim match As Match =...
Hi,
I'm using strongly typed datasets.
Somewhere in my application i need to access the child rows of a deleted datarow:
deletedRow.GetChildRows
in which i get an exception saying i can't access deleted row information.
i know i can do something like deletedRow.Item("colName"...
Hi,
Is it possible to create strongly typed datasets at runtime?
The user in my application must login before any connection to the database is made. Also the connection to the database varies accordingly to the user, that is, i have diferent connect strings for diferent users..
thanks
hi,
I want to move a control at runtime so i've starting by implement the following simple code:
Private Sub label1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Label1.MouseDown
IsDragging = True
End Sub
Private Sub...
Hi,
I'm starting with Oracle 9i and it all seems very confusing to me..
I've installed the Database Server, after that i've used the Database Configuration Assistant to create a database, wich i've called TEST, with SID TEST.
I've also installed the oracle data access client for .net
It all...
Hi,
Having read Microsoft ADO .Net from David Sceppa, i come across an way to partially solve the order problem when updating a dataset that has hierarchical data.
I've followed David Sceppa's suggestion in page 486:
1) submit new parent records
2) submit new child records
3) submit modified...
Hi, don't know if this is the right place for this question, but here it goes.
Having read Microsoft ADO .Net from David Sceppa, i come across an way to partially solve the order problem when updating a dataset that has hierarchical data.
I've followed David Sceppa's suggestion in page 486...
Hi,
I'm having a hard time trying to update a table that has child tables.
I have a DataSet with 8 tables and each DataSet was filled with a different OracleDataAdapter.
Then i've created a relation between two of the tables like this:
Dim col1 As DataColumn =...
Hi,
This is a little hard to explain, so i will start with an example..
Suppose we have 20 records associated with a DataGrid, with the first row beeing the Active Row, and a Visible Region of 5 rows, in the beginning we can see rows 0 to 4 and if we scroll down we will see rows 1 to 5, and so...
Hi,
Don't know if this is the right place to put this question but hear it goes..
In DotNetBar:
In the 'Dockable Windows' is there a way to expand the dockable window (assuming
we've just one) across the intire form? There seems to be a padding space or
something like that that prevents the...
Hi,
As you probably know there are various 'dockable windows' systems in wich you can dock form components, or user controls.. Does anyone know about any manager or 'trick' in wich you could dock a 'Form' in a dockable window?
Thanks
Hi,
I'm having a problem when trying to connect to a MySQL database, here's the relevant code:
1:Imports System.Data.OleDb
.
.
.
2: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
3: Dim myConnString As String =...
I don't know if this question is in the proper forum, but here it is...
I'm having a problem when trying to connect to a MySQL database, here's the relevant code:
1:Imports System.Data.OleDb
.
.
.
2: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)...
Hi,
i'm new to ASP and related, i have a simple (i hope) question
Ok, I have a form with one text box and a button.
The text box is an object from the 'HTML' tag in the toolbox, and the button from the 'Web forms' tag, the problem is that when i 'build and browse' the project, the button (or...
Hi,
i'm new to ASP and related, and i've a simple (i hope) question:
I have a form with one text box and a button.
The text box is an object from the 'HTML' tag in the toolbox, and the button from the 'Web forms' tag, the problem is that when i 'build and browse' the project, the button (or...
Hi,
How do i insert elements in a multicolumn listbox?
How do i specify the number of columns in a listbox? the only property i've found is 'MultiColumn'..
Can we reference the index of a MC ListBox? Supose i wanted to insert an element in column 1, row 4, how do i accomplish this?
Tx...
Hi,
I have a simple form that upon clicking on a submit button reverts to the same page.
The form has a text box and some chekboxes.
Is there a way to keep the text in the textbox and the checkboxes that were selected, on the page (wich is the same) after submitting the form?
thanks...
Hi,
a simple question
Is there some kind of module, package to build charts (pie, bars, 3D...) in PHP?
I've come across Chart-0.7 but it doesn't seem to have a pie chart support..
tx..
Hi,
isn't it possible to alter the border attributes of a checkbox?
I've tried,
input.txt1
{
border: thin black solid
}
but it stays with the same aspect..
thanks
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.