Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: byleth
  • Content: Threads
  • Order by date
  1. byleth

    Regular expression

    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...
  2. byleth

    regular expression

    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 =...
  3. byleth

    Accessing information in a deleted DataRow

    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"...
  4. byleth

    strongly typed datasets

    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
  5. byleth

    MouseDown and MouseMove Events

    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...
  6. byleth

    configuring a database

    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...
  7. byleth

    submitting hierarquical data to database

    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...
  8. byleth

    submitting hierarquical data to database

    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...
  9. byleth

    Updating with OracleDataAdapter, DataRelation

    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 =...
  10. byleth

    DataGrid Issue

    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...
  11. byleth

    DotNetBar from DevComponents

    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...
  12. byleth

    dockable windows (general question)

    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
  13. byleth

    MySQL connection

    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 =...
  14. byleth

    MySQL and VB .NET

    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)...
  15. byleth

    VB. Net & ASP

    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...
  16. byleth

    VB .NET & ASP

    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...
  17. byleth

    Multicolumn ListBox

    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...
  18. byleth

    form issue

    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...
  19. byleth

    Charts

    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..
  20. byleth

    border attributes of the checkbox element

    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

Part and Inventory Search

Back
Top