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 Wanet Telecoms Ltd 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: adamdavies
  • Content: Threads
  • Order by date
  1. adamdavies

    xml

    How do i create a new blank xml file with C# Then populate it with data from textboxes. thanks adam
  2. adamdavies

    button click

    what i have is a number of textboxes on my form. I want first textbox to recieve the focus. When i scan a barcode, it enters the text into the textbox and then focus goes to the next textbox. The scanner has an carriage return at the end, so i dont want it to submit my button but go to next...
  3. adamdavies

    print

    does anybody know how to print a blank page have tried: Printer.Print vbFormFeed Printer.NewPage Printer.Print vbtab Printer.NewPage Printer.Print chr$(13) Printer.NewPage any many others all seem to just print the value then a newpage not a blank new page also tried Printer.Print &quot...
  4. adamdavies

    printing

    I have some text that i would like to print at a specific points on only some pages. Does anyone now how i would do this Do i need to use: PrintDialog.AllowSomePages property to print specific pages if so how do i use this also how do i tell the printer what text i want to print and where...
  5. adamdavies

    print

    I am using System.Drawing.Printing I can send a textfile to a printer. What i would like to do is read the first line in the textfile and print the first line of text in coordintaes x and y specified in my code. Then read the next line of text from the textfile and print the line of text on a...
  6. adamdavies

    printing

    I have used the example off the web for printing a textfile to a network printer. This does not seem to work, i dont think it can find the network printer by default. does anybody know what i need to be doing. Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As...
  7. adamdavies

    question

    I have a few things i seem to be stuck on, if anyone can help. 1. I have set up a panel with a yes and no button, when i click delete on the datagrid a call the panel to be visible. It asks if i would like to continue and delete the item, if yes i want it to call Sub DataDelete(ByVal Sender...
  8. adamdavies

    run

    i want to run a .bat file from .aspx System.Diagnostics.Process.Start("C:\Batch.bat") - this doesnt seem to work or pdblID = Shell("C:\Batch.bat", vbMinimizedFocus) can anyone help thanks adam
  9. adamdavies

    edit

    trying to use update on datagrid i get an error on FNameTextBox = E.Item.Cells(3).Controls(0) Dim editkey As String Dim FNameTextBox As TextBox Dim SNameTextBox As TextBox editkey = dgusers.DataKeys(E.Item.ItemIndex) FNameTextBox = E.Item.Cells(3).Controls(0)...
  10. adamdavies

    DATAGRID

    DELETING A ROW IN DATAGRID ASP.NET CODE Sub DataDelete(ByVal Sender As Object, ByVal E As DataGridCommandEventArgs) Dim deletekey As String If dgusers.EditItemIndex = -1 Then deletekey = dgusers.DataKeys(CInt(E.Item.ItemIndex)) Labeldescript.Text =...
  11. adamdavies

    delete

    i want to select a row in a gridbox and delete that row from the database example from book doesnt seem to work Public Sub DeleteRecord(ByVal sender As Object, ByVal e As DataGridCommandEventArgs) //what code do i need to delete the row End Sub thanks adam
  12. adamdavies

    connection

    im using windows xp. ive set up a new virtual directory through computer manager, service and applications, internet info service, web sites, new virtual directory. Alias - BegASPNETdb Directory - c:\BegASPNETdb\webroot From an example in asp.net book, i created another folder called ch03...

Part and Inventory Search

Back
Top