• Member Avatar for Begginnerdev
    Begginnerdev

    Gave Reputation to J.C. SolvoTerra in A Simple Yet Classic Game With a Wee Twist

    NOTE: The games GUI is not fully implemented, so changing it's image and difficulty is done manually in the Button.Click Event NOTE: Whether you download the VS2013 source file or …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching VB download a file without dialog

    I want to download a file from, [Click Here](Here is the link : http://www33.zippyshare.com/v/67074373/file.html) I got this code : Dim Str As String = Me.WebBrowser1.Document.GetElementById("downloadB").GetAttribute("href") If (Str.EndsWith("zip")) Then WebBrowser1.Navigate("http://www33.zippyshare.com" + …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in VB download a file without dialog

    Here is a VB.NET version of what gtcorwin had posted. Hopefully this will alleviate any problems you may have converting the code. Private Function TransferFile(ByVal sURLAddress As String) As Boolean …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching error

    exception has been thrown by the target of an invocation please i need some help
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in error

    Please post a snippet of the code that is throwing the exception. This will help us better understand the source of the exception. :)
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching [HELP] Printing 2 pages in 1 rpm File of ReportMax

    Does anyone knows how to print 2 or more pages in Reportmax rpm file? I already tried playing with possible codes in reportmax preview but I can't get the right …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in [HELP] Printing 2 pages in 1 rpm File of ReportMax

    Have you tried overloading the PrintDocument.PrintPage method and check to see if the report has more pages? 'Making use of PrintPageEventArgs While e.HasMorePages 'Do stuff End While
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching Retrieve contacts from a phone using usb

    Hi Dw Is there anyone know how I can retrieve contacts from my cellphone connected via usb using vb.net? I want to be able to read and perhaps write back …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Retrieve contacts from a phone using usb

    What kind of cell phone are you speaking of? Are you using a smartphone or a basic phone? If you have a smart phone, is it android,symbian,windows, or iOS? Who …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching Ftp Upload with Progress Help.

    Progressbar not updating :'( please help. Private Sub ftpupload() Dim ext As String = Path.GetExtension(NsTextBox1.Text) Dim fname As String = Path.GetFileNameWithoutExtension(NsTextBox1.Text) Dim request As System.Net.FtpWebRequest = DirectCast(System.Net.WebRequest.Create("ftp://xxx@xxx.org/" & fname & …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Ftp Upload with Progress Help.

    Do receive any update, or just completion without any status change on your progress bar?
  • Member Avatar for Begginnerdev
    Begginnerdev

    Gave Reputation to Reverend Jim in VB.Net - Data Incrementation on ListView from Highest to Lowest

    Because the question has already been asked, and you are aware of this because you state it in your post, how about we just continue this discussion in the [original …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching VB.Net - Data Incrementation on ListView from Highest to Lowest

    "Visual Basic 2010" I do have a similar problem, I want to display on a listview a "top 10" highest to lowest data using MySQL as database, my problem is, …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in VB.Net - Data Incrementation on ListView from Highest to Lowest

    Have you started developing the application? Have you created a database? If you could post what you have, we would be able to help you more.
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching How to record internal video

    Hi Dw I was just reading another article on video recording using AVICAP32 this shows how to use this library to record video from a video device such as webcam …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in How to record internal video

    [Here](http://www.vbforums.com/showthread.php?727399-VB-NET-Screen-Recorder-with-audio-Converts-to-MPEG-4-video-now-Update-29-Dec-13) is a project posted on VBForums that will complete that task. You can study it in detail to get an idea for creating your own.
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching date data type in acess and vb.net

    i am in need to retrive content from acess with date/time datatype as constraint and its checking value is from datetimepicker of vb.net. i have set both format of date …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in date data type in acess and vb.net

    The problem with the date object is that it defaults to 12:00:00 for the time portion of the date. Try using: bdate.ToShortDateString()
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching ExecuteResultSet using vb.net and sql server2008

    This is writen using vb.net and sqlCe. I'm interested how this could be written in SQL server 2008 and vb.net. Dim rs As SqlCeResultSet = cmd.ExecuteResultSet(ResultSetOptions.Updatable Or ResultSetOptions.Scrollable)
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in ExecuteResultSet using vb.net and sql server2008

    First you will need to connect to the database. (See [this](http://www.connectionstrings.com) for connection strings.) Note that for the following code I will be using OleDB. I, personally, like to wrap …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching How to group data in ReportViewer?

    I'm having a hard time in grouping my data via ReportViewer. My friend told me to use List in grouping but I don't have a clue on how to do …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in How to group data in ReportViewer?

    The report wizard will group the data for you, just set the datasource of the report as a list. [Here](https://www.packtpub.com/books/content/creating-simple-report-visual-studio-2008) is an example of report creation. As for setting the …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching Eject and re-detect serialport without unplugging it

    Is it possible to re-detect serial port without unplugging it
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Eject and re-detect serialport without unplugging it

    This will be a really ugly method of doing it, but this may do what you wish. Private Function ResetSerialPort() As IO.Ports.SerialPort Try For Each sPort As String In IO.Ports.SerialPort.GetPortNames() …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching VB.NET - Simple Game

    Here's a simple game code, open a new vb project and copy paste this code and hit run. the game contains 3 levels, all you have to do is to …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in VB.NET - Simple Game

    First off, nice article. Second off, Bug report. If you do not purchase and damage upgrades, but die on the boss. You will still have the option to buy the …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Gave Reputation to oussama_1 in VB.NET - Simple Game

    Here's a simple game code, open a new vb project and copy paste this code and hit run. the game contains 3 levels, all you have to do is to …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching question

    i m try to vb.net 2005 in my final year project' but i have a problem in the button to "save" record in database "con" have error what will help …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in question

    You will have to post your code if you wish for us to help debug it. :) Please post the code that is generating the error, as well as a …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching Public Shared array

    Error : Object referrence not set to an instance of an object Situation; I have an array declared publicly (i.e. outside any events) as Public Shared array_shuffle() As Integer What …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Public Shared array

    If the array is placed in the same codefile as the events, then public/shared modifiers are not needed. May I suggest a list? Dim array_shuffle As New List(Of Integer) Lists …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in best way to run LAN in vb.net application

    Yes, you will need to network the computers together to be able to reach the server computer. For example: 1)Connect the computers to a router 2)Create the database on the …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching best way to run LAN in vb.net application

    Hello I have a vb.net application with MS access database. I want to run LAN in 3 pc by this application. So it possible or which SQL method shuold I …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in best way to run LAN in vb.net application

    You can still use Access if you create a share on the host and then point your connection string to that share. I assume you are using an windows environment? …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching Naming buttons from an array...

    Hi - me again... I have a large list of names that are stored in an array. I want to load the names in groups of 30 and have a …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Naming buttons from an array...

    You could create the buttons in a method then add them to the form: For i = 0 To AANAME.Count - 1 Dim btn As New Button With btn .Name …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in One table - Multiple users - One mySQL query

    The problem when loading the data into a dataset is that the data is cached. If one user has a copy in their dataset, and another has a copy in …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in One table - Multiple users - One mySQL query

    Some one please correct me if I am wrong, but I do beleive that row locking will be your only option to completely safeguard the data. You will have to …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching saving and updating in one command button

    i have here separated code for inserting new data, and updating changes in existing data in access using vb.net....when i run the program, both run sucessfully...now, i want to use …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in saving and updating in one command button

    You will first need to return the ID of the inserted row and store that in a variable. Next you will need to issue the update the row using that …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in problem in extract records from different tables

    Have you copied/pasted the query directly to your dbms? Are you sure that it is not returning any rows? When possible, I liked to write the query in the dbms …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in problem in extract records from different tables

    If you wish to only select the month portion of a date field, you must do the following: " WHERE (MONTH(pr.[Current Month]) = 6 AND MONTH(al.[Current Month]) = 6 AND …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in sql data import

    After a quick google session using keywords I found [this article](http://stackoverflow.com/questions/4881674/cast-or-convert-a-float-to-nvarchar). Maybe it is what you are looking for! :)
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching problem in extract records from different tables

    I've a problem in getting a record from 3 tables: There are two conditions for getting the records,'project number' and 'current month'.I used this statement to get the records but …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in problem in extract records from different tables

    You can condense your query a little by giving your select tables an alias. For example: "INSERT INTO patempTable SELECT pr.[Project Number],pr.[Employee Number],pr.[Current Month],pr.[Net Pay],al.[Net Allowance], pd.[Net] FROM [Pay_roll] pr, …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching One table - Multiple users - One mySQL query

    This is the scenario: I have one table (main_tbl) with columns RECID(primary key),JOBNAME(text),STATUS(text). Now, I created an application that will query to the database and get one jobname and update …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in One table - Multiple users - One mySQL query

    A preliminary question would be: How is your application handling the multiple users? Just a simple string containing the query executed in a command? On the back end you can …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching Remote Log in error

    Hi, I have created a databse using sql database "TestingSQL" using microsoft management studio 2012 and created a simple vb application as a tryout. It works well in my pc …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Remote Log in error

    First thing would be to check the database permissions on the database to see if it allows other's to connect. With SQL you can use all domain authenticated users, or …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching sql data import

    I am importing data from an excel worksheet in to a sql table, one of the columns in the table is set to nvarchar(50), the data i am importing are …

The End.