What should be my code for EDIT, if my codes for ADD is just like this?

Private Sub BT_ADD_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BT_ADD.Click
If CB_link.Checked = True Then
Dim dt As New DataTable
dt.Columns.Add("Link", GetType(String))
dt.Columns.Add("Type", GetType(String))
dt.Columns.Add("Time/Duration", GetType(String))
dt.Columns.Add("Repetition", GetType(String))
Dim currentLink As String
Dim currentTime As String
Dim currentInterval As Integer
Dim currentRepetition As String
If RB_Time.Checked = True Then
Dim d1 As DateTime = DTP_Now.Value
Dim d2 As DateTime = DTP_Now1.Value
Dim result As TimeSpan = d1.Subtract(d2)
Dim days As Integer = result.TotalDays
currentLink = TB_link.Text
currentTime = days
currentRepetition = "Today"
If TimeOption(currentInterval) = True Then
dt.Rows.Add(currentLink, True, currentInterval, currentRepetition)
Else
dt.Rows.Add(currentLink, False, currentTime, currentRepetition)
End If
DGV_running.DataSource = dt
DGV_running.Columns(1).Visible = False
DGV_running.Columns(0).Width = 300
DGV_running.Columns(2).Width = 150
DGV_running.Columns(3).Width = 150
If RB_Daily.Checked = True Then
'Dim d1 As DateTime = DTP_Now.Value
'Dim d2 As DateTime = DTP_Now1.Value
'Dim result As TimeSpan = d1.Subtract(d2)
'Dim days As Integer = result.TotalDays
currentLink = TB_link.Text
currentTime = days
currentRepetition = "Daily"
If TimeOption(currentInterval) = True Then
dt.Rows.Add(currentLink, True, currentInterval, currentRepetition)
Else
dt.Rows.Add(currentLink, False, currentTime, currentRepetition)
End If
End If
If RB_Weekly.Checked = True Then
'Dim d1 As DateTime = DTP_Now.Value
'Dim d2 As DateTime = DTP_Now1.Value
'Dim result As TimeSpan = d1.Subtract(d2)
'Dim days As Integer = result.TotalDays
currentLink = TB_link.Text
currentTime = days
currentRepetition = "Weekly"
If TimeOption(currentInterval) = True Then
dt.Rows.Add(currentLink, True, currentInterval, currentRepetition)
Else
dt.Rows.Add(currentLink, False, currentTime, currentRepetition)
End If
End If
If RB_Monthly.Checked = True Then
'Dim d1 As DateTime = DTP_Now.Value
'Dim d2 As DateTime = DTP_Now1.Value
'Dim result As TimeSpan = d1.Subtract(d2)
'Dim days As Integer = result.TotalDays
currentLink = TB_link.Text
currentTime = days
currentRepetition = "Monthly"
If TimeOption(currentInterval) = True Then
dt.Rows.Add(currentLink, True, currentInterval, currentRepetition)
Else
dt.Rows.Add(currentLink, False, currentTime, currentRepetition)
End If
End If
ElseIf RB_Interval.Checked = True Then
currentLink = TB_link.Text
currentInterval = NUD_interval.Text
currentRepetition = "N/A"
If TimeOption(currentInterval) = True Then
dt.Rows.Add(currentLink, True, currentInterval, currentRepetition)
Else
dt.Rows.Add(currentLink, False, currentTime, currentRepetition)
End If
DGV_running.DataSource = dt
DGV_running.Columns(1).Visible = False
DGV_running.Columns(0).Width = 300
DGV_running.Columns(2).Width = 150
DGV_running.Columns(3).Width = 150
End If
End If
End Sub
Here's the GUI of my project.
This project will call a website to be loaded.

Imports System.IO
Imports System.Text
Public Class frm_main
Public currentRunningTime As Integer = 0
Private Sub BT_ADD_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BT_ADD.Click
If CB_link.Checked = True Then
Dim dt As New DataTable
dt.Columns.Add("Link", GetType(String))
'dt.Columns.Add("Type", GetType(String))
dt.Columns.Add("Time/Duration", GetType(String))
dt.Columns.Add("Repetition", GetType(String))
Dim currentLink As String
Dim currentTime As String
Dim currentInterval As Integer
Dim currentRepetition As String
If RB_Time.Checked = True Then
Dim d1 As DateTime = DTP_Now.Value
Dim d2 As DateTime = DTP_Now1.Value
Dim result As TimeSpan = d1.Subtract(d2)
Dim days As Integer = result.TotalDays
currentLink = TB_link.Text
currentTime = days
currentRepetition = "Today"
'currentInterval = DTP_Now.Text
'If TimeOption(currentInterval) = True Then
' dt.Rows.Add(currentLink, True, currentInterval, currentRepetition)
'Else
dt.Rows.Add(currentLink, currentTime, currentRepetition)
'End If
DGV_running.DataSource = dt
'DGV_running.Columns(1).Visible = True
DGV_running.Columns(0).Width = 100
DGV_running.Columns(1).Width = 90
DGV_running.Columns(2).Width = 68
If RB_Daily.Checked = True Then
currentLink = TB_link.Text
currentTime = days
currentRepetition = "Daily"
'currentInterval = DTP_Now1.Text
'If TimeOption(currentInterval) = True Then
' dt.Rows.Add(currentLink, True, currentInterval, currentRepetition)
'Else
dt.Rows.Add(currentLink, currentTime, currentRepetition)
'End If
End If
If RB_Weekly.Checked = True Then
currentLink = TB_link.Text
currentTime = days
currentRepetition = "Weekly"
'currentInterval = DTP_Now1.Text
' If TimeOption(currentInterval) = True Then
' dt.Rows.Add(currentLink, True, currentInterval, currentRepetition)
' Else
dt.Rows.Add(currentLink, currentTime, currentRepetition)
' End If
End If
If RB_Monthly.Checked = True Then
currentLink = TB_link.Text
currentTime = days
currentRepetition = "Monthly"
'currentInterval = DTP_Now1.Text
'If TimeOption(currentInterval) = True Then
' dt.Rows.Add(currentLink, True, currentInterval, currentRepetition)
'Else
dt.Rows.Add(currentLink, currentTime, currentRepetition)
'End If
End If
ElseIf RB_Interval.Checked = True Then
currentLink = TB_link.Text
currentInterval = NUD_interval.Text
currentRepetition = "N/A"
'If TimeOption(currentInterval) = True Then
dt.Rows.Add(currentLink, currentInterval, currentRepetition)
'Else
' dt.Rows.Add(currentLink, False, currentTime, currentRepetition)
'End If
DGV_running.DataSource = dt
'DGV_running.Columns(1).Visible = True
DGV_running.Columns(0).Width = 100
DGV_running.Columns(1).Width = 90
DGV_running.Columns(2).Width = 68
End If
End If
TB_link.Clear()
CB_link.Checked = False
RB_Time.Checked = False
RB_Interval.Checked = False
RB_Daily.Checked = False
RB_Weekly.Checked = False
RB_Monthly.Checked = False
RB_Time.Enabled = False
RB_Interval.Enabled = False
RB_Daily.Enabled = False
RB_Weekly.Enabled = False
RB_Monthly.Enabled = False
NUD_interval.Value = 0
DTP_Now.Enabled = False
DTP_Now1.Enabled = False
End Sub
Private Sub BT_EDIT_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BT_EDIT.Click
'Dim dt As New DataTable
DGV_running.BeginEdit(selectAll:=True)
'TB_link.Text = dt.Rows(0)("Link").ToString()
TB_link.Text = DGV_running.Rows(0)("Link").ToString() 'Class "System.Windows.Forms.DAtaGridViewRow" cannot be indexed because it has no default property.
End Sub
Private Sub BT_DEL_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BT_DEL.Click
Dim dt As New DataTable
DGV_running.DataSource = dt
TB_link.Clear()
dt.Rows.Clear()
CB_link.Checked = False
RB_Time.Checked = False
RB_Interval.Checked = False
RB_Daily.Checked = False
RB_Weekly.Checked = False
RB_Monthly.Checked = False
RB_Time.Enabled = False
RB_Interval.Enabled = False
RB_Daily.Enabled = False
RB_Weekly.Enabled = False
RB_Monthly.Enabled = False
NUD_interval.Enabled = False
NUD_interval.Value = 0
Timer1.Stop()
End Sub
Function TimeOption(ByVal interval As Integer)
Dim result As Boolean = False
If interval > 0 Then
result = True
Else
result = False
End If
Return result
End Function
Sub CreateTimer(ByVal timerInterval As Integer)
Dim newTimer As New Timer
newTimer.Interval = timerInterval * 1000
newTimer.Tag = DateTime.Now
AddHandler newTimer.Tick, AddressOf TickHandler
End Sub
Sub TickHandler(ByVal sender As Object, ByVal e As EventArgs)
Dim currTimer As Timer = DirectCast(sender, Timer)
End Sub
Private Sub BT_Stop_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BT_Stop.Click
Timer1.Stop()
Dim CloseApp As String
CloseApp = MsgBox("Do you want to EXIT this app?", MsgBoxStyle.YesNo, "Exiting")
If CloseApp = vbYes Then
Me.Close()
Application.Exit()
End
Else
Me.Refresh()
TB_link.Clear()
RB_Time.Checked = False
RB_Interval.Checked = False
RB_Daily.Checked = False
RB_Weekly.Checked = False
RB_Monthly.Checked = False
RB_Time.Enabled = False
RB_Interval.Enabled = False
RB_Daily.Enabled = False
RB_Weekly.Enabled = False
RB_Monthly.Enabled = False
NUD_interval.Value = 0
End If
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If Not File.Exists("C:\phptrigger.txt") Then
File.Create("C:\phptrigger.txt")
End If
Timer2.Interval = 1000
Timer2.Enabled = True
RB_Time.Enabled = False
RB_Daily.Enabled = False
RB_Weekly.Enabled = False
RB_Monthly.Enabled = False
RB_Interval.Enabled = False
NUD_interval.Enabled = False
DTP_Now.Enabled = False
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
currentRunningTime = currentRunningTime + 1
Dim currentTime As String = DateTime.Now.ToString("hh:mm:ss tt")
For Each row As DataGridViewRow In DGV_running.Rows
If row.Cells(1).Value = "False" Then
Dim sourcePath As String = row.Cells(0).Value
Dim runTime As String = row.Cells(2).Value
Dim dateRunTime As Date = CDate(runTime)
Dim dateCurrentTime As Date = CDate(currentTime)
If dateRunTime = dateCurrentTime Then
Try
My.Computer.Network.UploadFile("C:\phptrigger.txt", sourcePath & "/phptrigger.txt", "", "")
Catch ex As Exception
'MsgBox("Error: " & ex.ToString())
End Try
End If
End If
If row.Cells(1).Value = "True" Then
Dim sourcePath As String = row.Cells(0).Value
Dim intervalSeconds As Integer = row.Cells(2).Value
If (currentRunningTime Mod intervalSeconds) = 0 Then
Try
My.Computer.Network.UploadFile("C:\phptrigger.txt", sourcePath & "/phptrigger.txt", "", "")
Catch ex As Exception
'MsgBox("Error: " & ex.ToString())
End Try
End If
End If
Next
'MsgBox("The Link was SUCCESSFULLY loaded!")
End Sub
Private Sub BT_START_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BT_START.Click
Timer1.Start()
'Dim headers = (From header As DataGridViewColumn In DGV_running.Columns.Cast(Of DataGridViewColumn)() _
' Select header.HeaderText).ToArray
Dim rows = From row As DataGridViewRow In DGV_running.Rows.Cast(Of DataGridViewRow)() _
Where Not row.IsNewRow _
Select Array.ConvertAll(row.Cells.Cast(Of DataGridViewCell).ToArray, Function(c) If(c.Value IsNot Nothing, c.Value.ToString, ""))
Using sw As New IO.StreamWriter("c:\link.txt")
'sw.WriteLine(String.Join(",", headers))
For Each r In rows
sw.WriteLine(String.Join(",", r))
Next
End Using
Process.Start("c:\link.txt")
End Sub
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
Timer2.Interval = 1000
Timer2.Enabled = True
Label2.Text = Date.Now
End Sub
Private Sub RB_Time_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RB_Time.CheckedChanged
RB_Daily.Enabled = True
RB_Weekly.Enabled = True
RB_Monthly.Enabled = True
NUD_interval.Enabled = False
DTP_Now.Enabled = True
End Sub
Private Sub RB_Interval_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RB_Interval.CheckedChanged
NUD_interval.Enabled = True
RB_Daily.Enabled = False
RB_Weekly.Enabled = False
RB_Monthly.Enabled = False
End Sub
Private Sub CB_link_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CB_link.CheckedChanged
RB_Time.Enabled = True
RB_Interval.Enabled = True
End Sub
End Class
Here's my Full code for this project.
The aim of this project is to call a webpage or a website then a .txt will be created inside of it all the process that you made in this project.
Now if still you can't understand it, then try it to re-construct.

Similar Messages

  • What should be the procedure for  export parameter in CATT

    Hello Everybody,
    I am working with CATT, and the transactions are <b>ME21N</b> and <b>MIGO</b>.
    when i am executing the transaction <b>ME21N</b> i will get the <b>Pur Ord No</b>in the message, and i would like to export <b>Pur Ord No</b> to the transaction <b>MIGO</b> as thr is one field named Purch.ord no in Migo.
    what should be the Procedure for exporting a parameter?
    Thanks,
    Regards Afroz

    Hello Afroz,
    If you are using eCATT then following is the procedure of capturing messages in the two recording methods - TCD & SAPGUI.
    => TCD Recording Mode:
    In TCD recording mode, after dobleclicking on Interface name from the TCD command in the editor on left side, just before the MSG folder DYNPRO folder will appear on right side.
    -This DYNRPO folder contains the screen sequences contain the screen occurred during recording time. The last Dynpro of this folder contains the messages occurred during recording.
    -Select this last folder & click on Simulate Screen icon of the same Interface editor. It will redirect to the screen where the message values exist. There select the Purchase Order Number and click on Read Field Value icon. Give the name of Export Variable.
    The export variable will contain the value of the purchase order number, which can be passed to MIGO.
    => SAPGUI Recording Mode:
    In the SAPGUI recording mode, the screen on which the message appeared will be used to capture the variable name, which is Purchase Order Number in this case.
    If the Purchase Order Number is second variable of the message displayed(e.g. Purchase Number 2122323 Is Created)
    then use the following code -
    e.g.
    MESSAGE ( MSG_1 ).
    SAPGUI ( ME21N_4001_STEP_5 ).
    ENDMESSAGE ( E_MSG_1 ).
    Assing the value from the message to the export
    parameter
    P_EC_PurOrdNo = E_MSG_1-[1]-MSGV2.
    There are total four MSGV1-MSGV4 variables. Dobule click on MSG_1 of the MESSAGE statement above. Putting the value in the export variable from the right message variable will give the purchase order number.This can be passed as MIGO.
    Regards

  • Hello , im working with hebrew and the dot  "." isnt correcting to right with the align , i know that in indesign u use with paragraph direction to correct it but here what should i do. sorry for my english

    hello , im working with hebrew and the dot  "." isnt correcting to right with the align , i know that in indesign u use with paragraph direction to correct it but here what should i do. sorry for my english

    You are right, but how could i send it to Apple? when the phone company first replaced my iphone they had in stock alots of iphones and they just sent mine back to Apple and gave me a new one, so all i did is to give them my phone, but now how could i sent it to Apple? and i cant send it by myself, and the store wont do that, its a lost for them.. so sending it to Apple wasnt an option from the begining.
    and for the record, i dont think the store where i bought it is an authorized shop.. its just a store who boughts phone's from Apple in a low price and sells it in much more money..

  • MacBook Pro 2011 with OS X 10.6.8. what should I upgrade to, for now?

    I have a 2011 MacBook Pro with OS X 10.6.8. and I'm unsure about upgrading, but feel the need to. What should I upgrade to, for now? THANK YOU!

    Keep your Snow Leopard installation and test Mavericks on a separate partition or external drive. You will probably want to have both options. Mavericks and anything else after Snow Leopard has changes to the user interface that many of us find pointless and irritating. And you won't be able to use any software that runs via Rosetta in Snow Leopard. You will have to upgrade software that needs Rosetta to a later version, or get something else entirely.

  • Hey, my iPhone 5 gets switched off on its own. Couldn't switch it on immediately. Have to put it for charging and gets switched on... What should i do now for this???

    Hey, my iPhone 5 gets switched off on its own. Couldn't switch it on immediately. Have to put it for charging and gets switched on... What should i do now for this??? when evr i go out this is one big problem i get... Couldn't use my fone.... Have to wait until i go back home...

    Start here www.apple.com/ca/support/ or call 1-800-263-3394.

  • I created a password to my iPad as a parental restriction, but my daughter played with it and pushed the wrong password 10 times my ipad was disabled, what should i do, since it wont sync with itunes becoz it will just say, cannot sync files becoz the dev

    i created a password to my iPad as a parental restriction, but my daughter played with it and pushed the wrong password 10 times my ipad was disabled, what should i do, since it wont sync with itunes becoz it will just say, cannot sync files becoz the device is password enabled, Please somebody helpme

    If you are talking about the passcode that gains access to the iPad - you will have to restore your iPad in order to unlock it. You will want to use the last computer that you synced with so that you can recover all of your app data, settings, etc. this explains how to restore the iPad. At the end of the process restore from your backup as described.
    http://support.apple.com/kb/HT1414
    If iTunes will not let you restore that way, you may need to use recovery mode to restore, and you can read about that process here.
    http://support.apple.com/kb/ht4097
    IF - you are talking about a restrictions pass code that you put on the device to restrict content or downloading apps or something like that - you do not want to restore from the backup - because that backup will contain the passcode that you cannot remember and you will end up where you started.

  • I am looking to start developing apps for the iTunes Store, but I have no previous experience. What is the best way for me to start on this? As in which programs and materials must I need and what I need to know. Thanks!

    I am looking to start developing apps for the iTunes Store, but I have no previous experience. What is the best way for me to start on this? As in which programs and materials must I need and what I need to know. Thanks!

    You will need a Mac, with OS X 10.6+ on it, to be able to develop iOS apps.
    There is some info on these pages :
    developer site : https://developer.apple.com
    developing for iOS 7 : https://developer.apple.com/ios7/
    developer support : https://developer.apple.com/support/
    developer forums : https://devforums.apple.com/index.jspa (you will need to be a registered developer to access them)

  • When trying to use find my Iphone  says off line , suggestion is to switch on and off airplane mode , so are you saying when you have your phone nicked you should leave a note for the thief to do this so we can trace him?

    when trying to use find my Iphone  says off line , suggestion is to switch on and off airplane mode , so are you saying when you have your phone nicked you should leave a note for the thief to do this so we can trace him?

    Ivorbiggin wrote:
    so are you saying when you have your phone nicked you should leave a note for the thief to do this so we can trace him?
    Yes.

  • What do I need to do to make a forum just like this one(from apple)

    What do I need to do to make a forum just like this one(from apple)

    Wendy, as a_a has explained, when power is removed, the data is gone.
    If you want to put this problem to rest, remove either of the battery connections; this will assure the data is gone forever!
    WyreNut
    Post relates to: Centro (AT&T)
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • What should Ram settings be for FCP 6 doing a slideshow with JPEGS ?

    Hi all,
    I am doing a Ken Burns effect slideshow in FCP6 that is using JPEGS only.
    I have the 24" intel imac 2.4 gig with 4 gigs of Ram installed.
    I am wondering what my ram settings in FCP should be.
    there are 4 boxes you can fiddle with the numbers.
    first two have sliders and go from 0 to 100%
    "memory usage"
    and also still cache...
    what should I be setting these to?
    thanks in advance!
    I ask because my system bogs right down with only a few layers and effects in place.
    what should my sequence settings be as well when working only with JPEG?
    I normally edit in easy DV NTSC....

    Thanks guys.
    I have found that I cannot resize and get a clean movement here in FCP.
    I tried the cutting approach jim and that at least got me through the placement of the pics to the song and then I started the motions. I also checked and then unchecked the shadow once I had it set where I wanted. I like to work through each pic from start to finish so i know exactly where I am at each night when I go to bed and then where I start again the next evening after my day job!
    haha
    but yes unchecking the shadows and feathered edges definately bought me some more time before render.
    I appreciate all the helpful advise here. You guys pour so much knowledge out there for us and mostly without even much thanks to you in return.
    One question I would still have now that I have fiddled around with all my settings....
    would anyone have the time and the knowledge to help me figure out what the "proper" settings should be for my setup for editing regular sd dv ntsc footage?
    or when I click easy setup dv ntsc does it configure my system for optimal settings each time?
    ie what should my ram settings be?
    thanks in advance.
    see sig for setup.

  • What should be the parameter for forName() method if i use MS SQL server

    if i use the MS SQL Server Personnal Edition, what string i should pass as parametter to forName() method of class Class.
    Class.forName ("XXXXXXXX");
    ie what should be in the place of XXXXXXX in the above line of code if i use SQL server
    thank u

    com.microsoft.sqlserver.jdbc.SQLServerDriver
    http://msdn2.microsoft.com/en-us/library/ms378956.aspx

  • I'm ready for 10.5 - what should I back up for a clean install?

    Hello
    I'm ready to install my newly-purchased 10.5 DVD.
    I want to do a clean install. What should I back up before I do so in order to insure that nothing is lost?
    I have already copied my entire user folder (except for the items that were permissions locked) to an external 500GB firewire. What else should I copy and how?
    Thanks,
    -----------S

    OK, your user folder is backed up. That's a good start.
    Generally what I do is take the current hard drive out of the computer, and put in a blank one (preferably a bigger drive too!).
    Leopard's kind of an iffy upgrade, so what I'd do is this:
    1) Make a clean install of TIGER. Run the updates.
    2) Install all applications using a new user called "Administrator"—I mean anything you can think of....MacTheRipper, VLC, etc. Everything. Update all the apps.
    3a) Copy over your user folder into the Users folder in the root of the drive. Go to Accounts in the System Preferences, and click on the + sign beneath the Users, and add a user with the same name and type in the same name you used on your old build. Enter the same short name, password, etc. It will give you the option to restore that user account if it is seen there.
    OR
    3b) Create a new user account, and start up in that user account. Copy pictures, music, documents, and desktop from the old user to their respective folders in the new location. DO NOT START UP MAIL, ADDRESS BOOK, or iCAL BEFORE THIS! Go to your User account's library. Move Mail & Safari from the old user library to the new one. Go to Application Support, and move over the files for Address Book and iCal (Yahoo Messenger, Skype, and Firefox are other ones to move if you have them in there). Go back to the User Library, and move over com.apple plists (from Preferences) for Addressbook, iChat, iCal, Mail, Safari. Try each of those applications to make sure the data transferred.
    4) Repair Permissions.
    Now you have a clean build of TIGER. SuperDuper it so you have a bootable backup of your new system on an empty firewire drive.
    5) Update from Tiger to Panther. Play with it for a while. See how you like it. If you like it, keep it and move on from there. If you don't, you have a clean build of Tiger to use. I'm reverting back to Tiger because Panther is kind of slow on my machine, and it offers few real advantages. It's worth sticking to Tiger for me until I get through my current work cycle and hope Apple has fixed a few issues by then.
    Good luck.

  • What should be the XQuery for this..

    hi
    i have this xml file. and
    what should be query to select the 'prod_id' where the 'prod_group = food'
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE ROOT (View Source for full doctype...)>
    - <ROOT>
    - <row>
    <field name="prod_sk">1</field>
    <field name="prod_id">S101</field>
    <field name="prod_desc">Soap 1</field>
    <field name="prod_catg">Soap</field>
    <field name="prod_group">Detergent</field>
    </row>
    - <row>
    <field name="prod_sk">2</field>
    <field name="prod_id">S102</field>
    <field name="prod_desc">Soap 2</field>
    <field name="prod_catg">Soap</field>
    <field name="prod_group">Detergent</field>
    </row>
    - <row>
    <field name="prod_sk">3</field>
    <field name="prod_id">M101</field>
    <field name="prod_desc">Meat 1</field>
    <field name="prod_catg">Meat</field>
    <field name="prod_group">Food</field>
    </row>
    - <row>
    <field name="prod_sk">4</field>
    <field name="prod_id">M102</field>
    <field name="prod_desc">Meat 2</field>
    <field name="prod_catg">Meat</field>
    <field name="prod_group">Food</field>
    </row>
    - <row>
    <field name="prod_sk">5</field>
    <field name="prod_id">C101</field>
    <field name="prod_desc">Choco 1</field>
    <field name="prod_catg">Chocolates</field>
    <field name="prod_group">Food</field>
    </row>
    - <row>
    <field name="prod_sk">6</field>
    <field name="prod_id">C102</field>
    <field name="prod_desc">Choco 2</field>
    <field name="prod_catg">Chocolates</field>
    <field name="prod_group">Food</field>
    </row>
    - <row>
    <field name="prod_sk">7</field>
    <field name="prod_id">R101</field>
    <field name="prod_desc">Rice 1</field>
    <field name="prod_catg">Rice</field>
    <field name="prod_group">Food</field>
    </row>
    - <row>
    <field name="prod_sk">8</field>
    <field name="prod_id">R102</field>
    <field name="prod_desc">Rice 2</field>
    <field name="prod_catg">Rice</field>
    <field name="prod_group">Food</field>
    </row>
    - <row>
    <field name="prod_sk">9</field>
    <field name="prod_id">PD101</field>
    <field name="prod_desc">Powder 1</field>
    <field name="prod_catg">Washing Powder</field>
    <field name="prod_group">Detergent</field>
    </row>
    - <row>
    <field name="prod_sk">10</field>
    <field name="prod_id">PD102</field>
    <field name="prod_desc">Powder 2</field>
    <field name="prod_catg">Washing Powder</field>
    <field name="prod_group">Detergent</field>
    </row>
    </ROOT>

    Cross join?
    SQL> select a.country_short_name
      2       , b.country_short_name
      3    from country_sample a
      4   cross
      5    join country_sample b
      6   where a.country_short_name != b.country_short_name
      7  /
    COUNTRY_SH COUNTRY_SH
    IND        PAK
    IND        ENG
    IND        AUS
    PAK        IND
    PAK        ENG
    PAK        AUS
    ENG        IND
    ENG        PAK
    ENG        AUS
    AUS        IND
    AUS        PAK
    AUS        ENG
    12 rows selected.

  • Need some suggestions for a design layout like this site

    This is just an example, but what im working on is personal
    family site that
    will be more of a family history site..
    Is there anyway to build a layout dynamically so it looks
    like this?
    http://en.wikipedia.org/wiki/Image:Family_tree.svg
    Basically, instead of creating images to layout the look like
    this site.. i
    would like to setup the page so when we add new family member
    to the
    database, it displays under the right person visually...
    Didnt really explain it well.. but i would like a design like
    at the link
    above, but to be built dynamically based on my database...
    can this be
    accomplished?

    I thought my sig was turned on.. guess not...
    below is what im using
    ASP, SQL2005, DW8 VBScript
    "SnakEyez02" <[email protected]> wrote in
    message
    news:fbc048$s7p$[email protected]..
    > If you are talking about using a database, what
    scripting
    > language/database are you going to be using?

  • What should I be using for an embedded database?

    I'm still learning C# in the .NET environment and I'm currently working on a Windows desktop app. I've read that LocalDB can be used as an embedded database if I want to let other people buy any apps I make in the future. But I've also read that SQL Server
    Compact Edition is what I should be using and those sources say that LocalDB isn't suitable for an app that's made so that other people can buy it. Which is correct? Is SQL Server Compact Edition still being developed by Microsoft?
    I've got a laptop with 64 bit Windows. If I install a 64 bit version of the either of the above database software can I still make 32 bit database files for use as embedded databases for C# apps?
    I'm interested in learning to make Windows desktop apps as well as Windows Store apps and apps for Windows tablets.
    I've read about SQLite but I'm thinking either LocalDB or SQL Server Compact Edition would be more compatible with C# code. Am I right? I'm using Visual Studio Community 2013 on Windows 8.1.
    I've read about the SQL Server Compact/SQLite Toolbox by ErikEJ
    Thanks

    You cannot use SQL for a mobile application. 
    I would suggest using SQLLite and it is not very complicated to use with c#.
    If you select 32-bit version of the database, you will not have compatibility issues. It will work for both 32-bit and 64-bit systems. 
    Even if you select SQL Lite you cannot use it both from mobile and desktop devices. You will face serious issues. 
    What I suggest is to have an online database and read from there to your local databases if you wanna use a database. 
    You can reach that database with web service(WEB API).

Maybe you are looking for

  • ORA-01152 error while creating db from custom template

    I have a database based on the "general purpose/transaction processing" db, but with a custom tablespace/data added. I have attempted to clone this database by using dbca to create a custom template (including data) from this database. The template c

  • Stop motion menus altogether

    I hate the motion menus. Hate them. I want simple straightforward non-moving graphics. I will use the one's Apple provides and have tried to stop the motion but they still move. I've dragged the slider to 0 for any menu that has motion yet they still

  • Enhanced receiver determination

    why we assign the abstract message interface ReceiverDetermination as the target interface.can we achieve enhanced receiver determination without this abstract interface.I have gone through sap help and some blocks of sdn also but still its not clear

  • Tables are not viewed in TOAD

    Hello, I installed 9i and imported database. Then I installed TOAD. On opening TOAD, the respective tables of the database are not shown. Just shows Cnt:0 in the bottom. Thanks GSR

  • Bluetooth issue in Windows

    I have an aluminum wireless keyboard and wireless mighty mouse, which work great in mac os, no problem in connecting them. But there seems to be some trouble in Windows. I have installed the Drivers from the Leopard disk but still bluetooth doesn't f