data

  1. R

    Question How to start exporting data to an excel file from a particular row of excel sheet?

    Hi everyone, I am trying to export the data to an excel file which has a template like this: I want the data to be inserted from the 3rd row without affecting first two rows same as here But in the actual output first row is being overwritten by column names and data is inserted from...
  2. Innww

    Resolved RegEx of .txt converted from PDF (to txt)

    I am in a situation where I have to convert a PDF to a format that can be set to a DataGridView. The only Resolution I can come up with is using Itextsharp and converting the PDF to a textfile for the most part the format is kept. here is the Code to parse the text. Dim mPDF As String =...
  3. S

    Question How Best to organise different data?

    Hi all, I am about to create an application to playback recorded data. The data is held in zip files, each with a text file for serial data (wind speed and direction, position etc), there will be multiple PNG files for screen captures and also up to 10 WAV files for sound recording. I have...
  4. J

    Question Simple database help in getting started

    Hello everyone, First time poster here! I need a little help and direction with how to go about writing a program using a database. Apologies in advance if I've posted in the wrong section. Aims: 1) To be able to make a form that takes about 8 pieces of information and stores it on a central...
  5. J

    Printing Datagrid

    Hello guys , i'm new to here i was trying to print all data in Datagridview , i searched a lot and i came across code below , i just don't know what coder means by queryform , any help will be thankful '在按钮事件里调用print 类的方法'如: '调用打印 queryform.DataGrid1.DataSource =...
  6. S

    Pulling data from Excel and applying new data back.

    Hello, I recently started to look into coding with VB.NET. I wanted to write an application that would allow my employer to boost productivity and ease some of my co-workers negativity due to how primitive the process is currently. To make it short and sweet in my line of business you are...
  7. fisherRon

    Question Advice on what type of app to build for exchanging xml data between servers

    I have a project that I need to build that gathers data from a local database, packages it into an xml file (as specified by receiving server) and send it to another server via an API they provide. I then need to be able to receive data back from that remote server and display it to the user...
  8. T

    Question Login validation error

    I need help with this bit of coding. Everytime it loads, it loads perfects and when you enter the correct credentials it works perfect. However when you enter the wrong credentials, the login window pops back up again, but when you enter the right credentials it displays the correct message box...
  9. B

    Get Data from Database

    HI guys. I'm having a problem in my vb.net application for our thesis. The problem is that is to get the data from database and display it into a label. Can anyone give me a code for that. Thank you...
  10. S

    Question General Information about accessing Data

    I've been working with vb.net for over a year and I've found solutions for everthing in the forums. Now I need to access my Project solutions from a mobile phone or from a PC. And the simplest idea I've figured out is the make a web-page so I can update the results via ftp. Now the questions...
  11. Y

    Question How to import excel xlsx file to sql with changing header location and name

    How to import data from excel xlsx files to sql database if in some files the row and content of the headers are changing (even if they change they point the same data, see example)? I work in Visual basic environment with VS 2012 Here is the example: The problem is number of headers are...
  12. P

    Question Filtering Data source code problem

    Hi , i am currently designing a Inventory Management System for my school Project , the add data edit data and delete data part of the software works for me but i am kinda stuck at the filtering data part and it does not seem to work at all . This is my source Code Sub combobox_itemID()...
  13. E

    Question Inserting data into xml node

    Im just recently getting back into programming vb after being away for many years. Im currently working on a project that requires i insert or append data to a specific node in an xml file. When i run this bit of code. Dim XMLDom As New XmlDocument()...
  14. jlcruzAME

    Moving Through Gridview

    Currently I have a page that pulls data out of a table into a gridview. One of the columns is a check box where they mark entries for completion. When they've marked all the entries they need, they click on a submit button that, at the moment, processes all the checked entries at once. Is...
  15. N

    Question Find Specific Text In Text File

    Hi! I have a little question about txt-files...This is the case: I am going to make a small software for editing particular parts in text files, so you don't have to do it by hand. In this program, i need to find several words in a text file and retrieve the text or number that is after the...
  16. Grayda

    Stopping "automatic" updating of controls with datasource

    I'm writing an app that pulls information from a DataSet as a one-way thing (e.g. the datasource populates a listbox, but for selection purposes only -- the user cannot change the list values). My problem is, when I select something from the listbox, all of the other listboxes change too, as if...
  17. C

    Question How do I access a DataTable on another form?

    Hello all, I have a DataSet(dssongs) with a DataTable(dtsongs) on a form(songsForm). I am adding rows to the dataTable using the following code: Dim dr As DataRow = songsForm.dtSongs.NewRow dr.Item("colSongFile") = file dr.Item("colSongTitle") = ""...
  18. dominion_vortar

    Question Working with text files

    Hi, I have a text file containing 10 pieces of information. I want to read the information from the text file and put it in text boxes on a form, so that the user can view the information and edit if required. What is the best way of approaching this? Thanks for your time :)
  19. F

    Question Create a timer and assign it a function for each row of data gotten from a SQL query

    Basically, I want to create a timer for each row of data that will get returned by a SQL query: SELECT * FROM Projects I would want the timers to be called "Compteur" & ROWID. This really is necessary. I need them to have different Ticks and so that some can be enabled all at once. Basically...
  20. H

    Securing Connection String Data

    Hi All, I wonder if you can help me understand a piece of code a little more. I'm currently working my way through an MCTS Self Paced Training Kit (70-505, Chapter 5, Lesson 6). This particular lesson teaches you about securing connection string data. It explains the basic premise, and asks you...
Back
Top