• Member Avatar for oussama_1
    oussama_1

    Replied To a Post in error when remove item from combobox

    a zero index actually can contain an item you should change your code to this If ComboBox1.SelectedIndex > -1 Then
  • Member Avatar for oussama_1
    oussama_1

    Began Watching MSSQL

    Hey guys, what am i missing here: Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Using sqlConn As New SqlClient.SqlConnection(sqlConnString) sqlConn.Open() sqlConn.Close() End Using End Sub Public Property …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in MSSQL

    Please post you "sqlConnString" declaration code.
  • Member Avatar for oussama_1
    oussama_1

    Began Watching Creating a temporary in MS Access Db

    Hi guys, I was wondering if it was possible to create a temporary table. I have a bunch of records to be added to the database.But before doing that i …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in Creating a temporary in MS Access Db

    Yes you can try this System.Data.DataSet or this dim datagrid as datagridview
  • Member Avatar for oussama_1
    oussama_1

    Began Watching error when remove item from combobox

    hi all, I have a piece of code, I can delete the first value but fails and give notice InvalidArgument=Value of '0' is not valid for 'index'. Parameter name: index …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in error when remove item from combobox

    this one works and wont give any error if the item is not selected ComboBox1.Items.Remove(ComboBox1.SelectedItem) but this one will give you "InvalidArgument=Value of '-1' (not 0) is not valid for …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in Making timer reset to 45:00 minutes?

    Resume Button Dim minutes As String Dim seconds As String Private Sub ResumeTime_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ResumeTime.Click minutes = Label7.Text.Substring(0, 2) seconds = Label7.Text.Replace(minutes & …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in Making timer reset to 45:00 minutes?

    in the timer tick event, you can also try if statement Private Sub Timer3_Tick(ByVal sender As Object, ByVal e As EventArgs) Handles Timer3.Tick If label7.text >= "45:00" Then Dim timedifference …
  • Member Avatar for oussama_1
    oussama_1

    Began Watching Making timer reset to 45:00 minutes?

    I'm using a timer which counts up on a button click when i press it, and when it reaches the time i desire, usually around the 45 minute mark i …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in Making timer reset to 45:00 minutes?

    Dim timedifference As TimeSpan = DateTime.Now.AddMinutes("45").Subtract(starttime)
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in Making a progress bar last 45 minutes with timer?

    you are welcome
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in Making a progress bar last 45 minutes with timer?

    the animation speed works when you set the style to Marquee. i recommand that you put it on continuous and change the progressbar maximum value to let's say 90 and …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in Making a progress bar last 45 minutes with timer?

    both and change the style, i think "Continuous" is what you are looking for
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in fetch data from 2 table of access database

    read my answer in [this](http://www.daniweb.com/software-development/vbnet/threads/475838/link-textbox-to-multiple-tables-in-database)
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in Making a progress bar last 45 minutes with timer?

    Use the animation speed.
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in ??? how do i run a (webpage) from inside my (vb.net) program ???

    Hmm.. try this [here](http://www.daniweb.com/software-development/vbnet/code/385622/google-map-control-vb.net)
  • Member Avatar for oussama_1
    oussama_1

    Began Watching Making a progress bar last 45 minutes with timer?

    This is what i have so far. Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button7.Click Timer2.Start() Button7.Enabled = True Label8.Text = "Match Begins" End Sub Private Sub Timer2_Tick(sender …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in Making a progress bar last 45 minutes with timer?

    Private Sub Button7_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button7.Click 'set your timer to minutes Timer2.Interval = 60000 'set you progressbar max value to 45 ProgressBar1.Maximum = 45 …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in vb2012 Create textboxes as array

    @ddanbe my code is missing the details that's all.
  • Member Avatar for oussama_1
    oussama_1

    Began Watching ??? how do i run a (webpage) from inside my (vb.net) program ???

    i wrote a (visual basic.net-2008) desktop app that allows ham radio operators to enter a call, such as WA0H, and the program gives the ham's location (springfield, mo.). you can …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in ??? how do i run a (webpage) from inside my (vb.net) program ???

    Use a webbrowser from toolbox menu 1 .. pass the address to the webpage Webbrowser.Navigate(URL) 2 .. click the webpage (find) button webBrowser1.Document.All("Button ID").InvokeMember("click") Good Luck
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in vb2012 Create textboxes as array

    You can't, you have to rename them!
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in vb2012 Create textboxes as array

    For i = 0 To 5 Dim textbox As New TextBox textbox.Name = "Textbox(" & i & ")" Me.Controls.Add(textbox) Next but the textboxes will be created on top of each …
  • Member Avatar for oussama_1
    oussama_1

    Began Watching vb2012 Create textboxes as array

    How can i create list of textboxes in vb2012 to be like textbox(0).text textbox(1).text
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in vb2012 Create textboxes as array

    Dim textbox As New ArrayList
  • Member Avatar for oussama_1
    oussama_1

    Began Watching How Create a exe in vb.net with sql database

    Hello I have VB.NET System ; I wanna to make setup (.exe) for the program. The Program depend on SQL Server Database. How I can make it exe file with …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in How Create a exe in vb.net with sql database

    Typically in a program you find something called "Preferences" or "Option" or "Settings" this is the user section, the user own choice of inputs. use this in your program so …
  • Member Avatar for oussama_1
    oussama_1

    Began Watching Adding new row in datagridview

    I'm doing a system in VB.net 2012 where a user inputs a data on a textbox and then if the user clicks on the button, the data in the textbox …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in Adding new row in datagridview

    wow buddy your code doesn't make any sense. you should run this once With dgv_booklist .Columns.Add("ISBN", "ISBN") .Columns.Add("BookCode", "BookCode") .Columns.Add("Title", "Title") .Columns.Add("Author", "Author") .Columns.Add("Category", "Category") .Columns.Add("StudentNo", "StudentNo") .Columns.Add("FirstName", "FirstName") .Columns.Add("LastName", …
  • Member Avatar for oussama_1
    oussama_1

    Began Watching fetch data from 2 table of access database

    I have table-accessonbook and second table as report register I want to fetch data from one table as name,age,sex with unique id from 2nd table i want fetch Hb with …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in fetch data from 2 table of access database

    in a button click event create 2 different connection(oleDb.oleDbConnection) like this Dim Connection1 As New OleDb.OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;" & "Data Source='" & "Access 1 Full Path" & "';" & "Persist Security Info=False;" …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in retrieve data from database access (db) file to text box

    if your question is solved then mark it as such. for the other question start a new thread. [Click Here](http://www.daniweb.com/software-development/vbnet/threads/424836/please-read-this-before-posting)
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in retrieve data from database access (db) file to text box

    Yes.
  • Member Avatar for oussama_1
    oussama_1

    Stopped Watching The last song you heard/ listened to

    it's as the title says .. mine was I'm Yours --Jason Mraz so what's yours ?
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in File transfer from one pc to another pc

    make sure that this path exist: start >> Run >> \\PROD-PC\C$\BACKUP\ if it doesn't exist then you are goin to need to share your hard drive "C" then it'll appear …
  • Member Avatar for oussama_1
    oussama_1

    Began Watching File transfer from one pc to another pc

    Bute there's an error... Error: The given path's is not supported Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Try Dim FileToCopy As String Dim NewCopy …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in File transfer from one pc to another pc

    Instead of the ip address, type "\\pcname"
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in Client-Server application

    go to your project properties >>Publish >> Publish Wizard..
  • Member Avatar for oussama_1
    oussama_1

    Began Watching Which Game Engine? iOS game app

    Hey all, I am a aspiring programmer with experience in C based languages like Java, C++, C#, etc.. and now I have learned the essentials of objective-c in hopes to …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in Which Game Engine? iOS game app

    [Click Here](http://www.daniweb.com/software-development/game-development/threads/464500/where-to-start-fro-create-video-game)
  • Member Avatar for oussama_1
    oussama_1

    Began Watching link textbox to multiple tables in database

    I a form with textbox as age. A database with 2 tables as- Accessonbook and Report. So when enter into value in Age textbox it should copy in age column …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in link textbox to multiple tables in database

    > Please tell me the code. Dear Satyam_1 What you are asking is for us to work for you instead of helping you, you see programmers get paid for these …
  • Member Avatar for oussama_1
    oussama_1

    Began Watching How to show search results in the databases in datagridview

    this prog for database to edit and search database using sql by vb I want the search results appear in DataGridView only Dim winclass As New Class1 btnsearch.Enabled = True …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in How to show search results in the databases in datagridview

    like this ? datagridview.rows(index).cells(index).value = dr.item("ID")
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in can not find Path resource in textfile

    oh, i recommand that you use a dictionary api but it depends if you can find one with the languages you want.
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in can not find Path resource in textfile

    > can not find Path resource in textfile well there is no path (you can get objets,strings.. from your resources). my code works fine, your code shows that you want …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in SetUp App in VB.net

    [Click Here](http://www.daniweb.com/software-development/vbnet/threads/475786/can-not-find-path-resource-in-textfile)
  • Member Avatar for oussama_1
    oussama_1

    Began Watching can not find Path resource in textfile

    [Click Here](http://s8.postimg.org/9figheq91/2014_03_22_14_19_18.jpg)
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in can not find Path resource in textfile

    There is no path to your resources it's already embeded in your exe app but instead you can use the text inside (only to copy) Like this: Dim Text As …

The End.