20,284 Topics
| |
Ok Well, in vb6 it's completely easy. For an example, im trying to convert this to vb.net but im kinda struggling. For Example, i don't know what the new get and put statements are in vb.net. [code] Dim aS As String Dim aF As String Open App.Path & "\s.exe" For … | |
How can i playing wav file on my application? Im using vb.net 2005. Thank you very much... | |
Hello there.....i just learnt how to use the the oleDb commands to insert into the a database i created from vb.net,but the problem is.....i cannot insert anythin else than OleDbType.VarChar or i dunno how to insert anything else this is my code......i need help to insert the value of my … | |
How can i set screen height based on resolution ? and i have a gridview in my page.when screen height is 768 page size of gridview is 7. screen height is 864 page size of gridview is 10. screen height is 960 page size of gridview is 11. screen height … | |
[B]TEXT file csvSTOCKS.TXT contains the following:[/B] Stock 1,200,300,200,200 Stock 2,200,300,200,200 Stock 3,200,300,200,200 Stock 4,200,300,200,200 Stock 5,200,300,200,200 [B]I'm attempting to read each line in the text file and put it in the array of strings lines()[/B] [code=vb] Dim sr As StreamReader = New StreamReader("csvSTOCKS.TXT") Dim lines() As String Do While (sr.Peek … | |
| How do I pass an arrayList to a function? |
This program is supposed to prompt for a price until (do while loop) the input box is blank and then average the numbers and display the average. I've got most of it down except the average part, how do I store the numbers the professor hasn't showed us arrays yet. … | |
Hi Guys ... Does anybody know how to force a windows forms application to restart (Close and open again) taking the user back to the first screen ? My user fills in a questionnaire, reaches the end and is asked to either perform another survey or to send data (sent … | |
I've created a local copy of my company's live site. It is developed using ms.net[vb.net] and am using msVisual Studio 2005 on my comp. when i build and run it ,it runs fine but evrytime i put breakpoints it would open 46 tag viewers and my system would crash. I … | |
Hi, I have developed application in WinMobile 5.0 for PDA. Here is my queation: is it possible to start application automatically when turning on the device, without booting the Windows first? Pete | |
Hi everyone, any simple sample code that show how to implement hierargrid inside datagrid...i found there is 1 framework from denis bauer solved this problem...i just wants to know if any others sample code that can also solve this problem. | |
Hi Can anyone tell me what is the correct way to setup and deploy a vb.net 2008 project that uses crystal reports and a ms access database? Thanks in Advance. | |
I need to copy data from one excel sheet to another. source sheet 1 2 3 4 5 6 the data is to be copied in the following format 1 2 3 4 5 6 the copy paste method does not allow this because the regions are different. Can this … | |
Hello all, im new to this community and i would use some help. I have learned VB.Net and i write programms for almost a year and a half. Currently im learning C, C++, and C#, but i dont have any expirience with these languages. So i would like you to … | |
hey thanks for questions,they really gave me direction. here its the error message below in red and code [COLOR="Red"]"child list for field books cannot be created[/COLOR]" Private Sub btnsearch_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnsearch.Click 'search the database for specific records sConn = "Data Source=Click\sqlclick;Initial Catalog=bookinvetory;User ID=sa;pwd=sqlserver#1" … | |
I have an executable vb.net application that opens an external application. My program using two screens. I was wondering if there was a way to have the application open the program on the selected window from the screen that the button is pushed. Opening the external application on the screen … | |
hello can u help me to store data from vb.net to access...right now i get the data from com port. and i want the data to be save in the access...below is the sample code... [code=vbnet] Public Class frmSerialPortExample '---------------------------------------------------------------------------------------------------------- 'Purpose: Allow for data recieve event to update text box … | |
hie out there im having problems binding records form an sql database to the text boxes on the form.i want to be able to navigate through the records. PLIZ HELP FAST AND I APPRECIATE YO EFFOCTS. | |
i am creating an application in which i require a splash screen. Now the thing is that i want my splash screen to be there without any title bar and frame border what should be the necessary code for it plz provide me with that.... thank you.... | |
Hello All, I would like to programatically set the Column borders for a datagrid based on the column Index. So I would like Columns(3) for exampe, to have a border but not Columns(1) or Columns(2). The only thing remotely like this I can find is the datagridview grid setting. But … | |
Upon checking the corresponding check box, which is either Ladies Shoes, Men Shoes, Sneakers or Sandals, the program needs fill the listbox with the checkbox information. Can't figure the syntax, any help would be greatly appreciated. [code=VB] Public Class Form1 Private Sub chkboxLadiesShoes_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) … | |
Hi masters... How i can got last 3 character from string? Ex : Daniweb -> i got "web" is this possible? Please Help me Regards | |
I've created a local copy of my company's live site. It is developed using ms.net[vb.net] and am using msVisual Studio 2005 on my comp. when i build and run it ,it runs fine but evrytime i put breakpoints it would open 46 tag viewers and my system would crash. I … | |
| |
Hi guys, Is it possible to call a server side asp page from a VB.net application running a client PC and pass parameters to that page? My concept is a software activation system that queries the hardware of the users PC and generates codes. This is working fine in VB.net … | |
K i need to get the mouse click co-ordiantes outside of the form. i know how to get them inside the form; [CODE=vb] Private Sub mouse1_click() Handles me.MouseClick set1X = MousePosition.X set1Y = MousePosition.Y End Sub[/CODE] but i need to get cordinates from anywhere on the screen. and if it … | |
I have the mainmenu.vb and event.vb. I want event.vb appear when I click button (cmdRun), and mainmenu hide. How to write it's code? I use below code but was not as VB 2005. [CODE]hide.mainmenu show.event[/CODE] Any ideas? Thanks in advanced. | |
Hi guys I am able to add data to a textfile on a windows mobile device but can only get it to store within the 'My Device' folder. I have tried to place it within folders ... but it cries with a NullReferenceException [code] Dim path As String = "\testFile.txt" … | |
hi friends i got a combobox in datagridview, i need to insert data present in combobox into database by clicking a button,what i mean is select item in gridcombobox and press some button say submit and insert into database column.please send me code for this one.this is to be done … | |
i use this code to diffuse a picture box.. [CODE] Dim bmap As New Bitmap(PictureBox1.Image) PictureBox1.Image = bmap Dim tempbmp As New Bitmap(PictureBox1.Image) Dim i As Integer, j As Integer Dim DX As Integer Dim DY As Integer Dim red As Integer, green As Integer, blue As Integer With tempbmp … |
The End.