• Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in quchention

    You can absolutely run a 32bit os on a 64bit processor. (I assume you mean processor) The advantages of 64bit operating systems are large. For instance; a much larger memory …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching Defragmentation problem

    My C drive was getting full without installation so I tried defragmentation on Windows 8. My disk was fragmented about 30% and after completing defragmentation around 5Gb of space was …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Defragmentation problem

    I know it sounds extremely simple, but have to tried clearing temp files? Something as simple as CCleaner might help you do this.
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching harddrive

    hi ther i reccently had a problem with hp laptop so i than toke out the hard drive put it in a usb connecting case and format it and and …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in harddrive

    First thing is that when you formatted the hard drive you effectively 'removed' everything that was on the drive. This is why you are receiving the "no bootable device" error. …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching csCryptoStream error neeeeeeeeeed help

    i write this code in my program to encrypt my files but it showing me warning Warning 1 Variable 'csCryptoStream' is used before it has been assigned a value. A …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in csCryptoStream error neeeeeeeeeed help

    Have you tried replacing: Dim csCryptoStream As CryptoStream With Dim csCryptoStream As New CryptoStream What this warning is telling you is that the variable could throw a null reference exception …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching visual basic windows speech recognition

    Dear forum, i have created an application for speech to text using windows speech recognition. My question is regarding custom grammar and training the words since it is in my …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in visual basic windows speech recognition

    You can embed a form in another form by placing the child form on a panel! For example: Dim frmMain As New MainForm frmMain.FormBorderStyle = Windows.Forms.FormBorderStyle.None frmMain.WindowState = Windows.Forms.FormWindowState.Maximized frmMain.TopLevel …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching Keyboard Jammer

    Hey everyone, im currently use this class for my small projects: https://www.daniweb.com/software-development/vbnet/threads/361868/disable-ctrl-alt-del Now i have problem, i want to hide my form and close jammer so i use something like …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Keyboard Jammer

    What is most likely happening is that you are exiting the main thread when you use Alt+F4; thus no code will fire the code to 'jam' the keyboard.
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching Data warehouse

    Hello to all! My question is that can we develop a real time datawarehouse on VB.net? Or should i use Java? In other words, has VB.net such functionalities of features …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Data warehouse

    This is absolutely possible! It will all depend apon your coding skills! It would be just as simple as connecting to the multiple databases at once. Possibly even using threads …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching Count removed rows

    Hello there, I have this code: If listItem.SubItems.Item(0).Text = " " Or listItem.SubItems.Item(0).Text = "" Then ListView1.Items.Remove(listItem) End If Now is it possible to make somehow to it actually count …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Count removed rows

    Try declaring an integer value at the class level: Dim iCount as Integer = 0 Then increment on removal: If listItem.SubItems.Item(0).Text = " " Or listItem.SubItems.Item(0).Text = "" Then ListView1.Items.Remove(listItem) …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Gave Reputation to Santanu.Das in How to connect VB.net on a ONLINE DATABASE.

    What do you mean by > but want to make it to upload data online not to read them online I mean, you want to save data to the database, …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in How to connect VB.net on a ONLINE DATABASE.

    What error are you receiving? Also, can you possibly post the code that is throwing the error? Also with MySQL you may also need to make sure that the connector …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in How to connect VB.net on a ONLINE DATABASE.

    I currently do not have any screen capture software, but I will try to explain it for you. Dim con As New OleDb.OleDbConnection("Provider=127.0.0.1;Data Source=mydb;" & _ "User Id=myUsername;Password=myPassword;") What this …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in How to connect VB.net on a ONLINE DATABASE.

    The foremost issue to resolve would be to find what the IP will be for the connection string. The rest will be syntax. For your correct connection string see [this](http://www.connectionstrings.com/mysql/). …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching How to connect VB.net on a ONLINE DATABASE.

    Hi everyone. Im a bit new on visual basic programming language and I need your help connection visual basic with an ONLINE DATABASE. Im making a software for my school …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in How to connect VB.net on a ONLINE DATABASE.

    Will the server that you are connecting to have a static IP? Also, what database type are you connecting to? SQL Server, Oracle, MySQL, Access, ect...
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching Java Books

    Hey Guys, Really want to learn Java and hope you guys could recommended some Beginner, Intermediate and Expert books/resources (e.g. websites) As of this moment i'm thinking of... Beginner: Java …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Java Books

    One java book that was always a great resource when I had begun school was the Java Programmer's Bible.
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching How to scan documents and print in vb.net

    Hi DW I have a Canon MP250 printer which can scan, copy, and print. I want to create my own ScanGear of a direct program to instruct the printer to …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in How to scan documents and print in vb.net

    As you may already know. Most Printers support the TWAIN interface. Most printers also support WIA. This being said, you could use a TWAIN or WIA library to access your …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching apply filter to image

    hi all ... I want to apply sobel filter to gray scale image to detect the edge of the image using visual basic .net 2010 .The size of the image …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in apply filter to image

    After a quick google session, I have discovered [this](http://www.codeproject.com/Articles/313143/VB-NET-Image-Filters) article.
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching ListView Item Search

    hi all ... i am designing a software where i am using login and password. the user and password is store in notepad which is connected with listview . now …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in ListView Item Search

    May I suggest a safer method of storing a password? You could create a database in something as simple as access and store the passwords in a table. To increase …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching listview

    i have a listview connecting to xampp,then i want the data of all listview can be add to my report using report viewer?how can i do that. pls help.. <snip>
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in listview

    One question would be: Are you populating the listview from a database? If so, then just create a report with that dataset instead of trying to get the data from …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching Problems in update and delete commands

    I am creating a project in winforms in vb.net. My requirement is to update and delete records in SQL database with a button click event. My update coding updates the …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Problems in update and delete commands

    Quite a simple solution to your problem would be to write a query that does so! For example: Private Sub Button1_Click(ByVal sender as Object, ByVal e As EventArgs) Handles Button1.Click …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching lab

    With the use of Qtspim simulator, write a MIPS assembly language program which outputs the name of the CICTE lecturer of BIT & BCS if a course code is inputted …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in lab

    Please read the community rules [here](http://www.daniweb.com/community/rules). You will have to provide some form of proof that you have indeed attempted this assignment. We are not here to complete your work, …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in mysql workbench 6.2 + visual studio 2012 i cant connect

    Can you please post your connection code? We will need to see (if possible) your code to help with the debugging process. I also assume you have the correct connection …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching mysql workbench 6.2 + visual studio 2012 i cant connect

    Hello guys. I already install the mysql conector and my for studio 1.2 nu t in th visual studio 2012 i cant conetor to database. I try three time reinstall …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in mysql workbench 6.2 + visual studio 2012 i cant connect

    Can you please post your connection string to your database? Also, Have you given the correct permissions in Workbench?
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching MDI Child Form appearing behind split container.

    So i have a MDI Thing going on and it is appearing behind split container control I was thinking i may need, FindWindow or something. Dim ChildForm as new Form1 …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in MDI Child Form appearing behind split container.

    Have you tried calling BringToFront?
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in wireless network

    I assumed he meant router. Shows what happens when you assume. :D But, this is starting to sound like quiz questions/answers.
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching wireless network

    can you have more than one access point in your home ? explain your answer if there cases write it
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in wireless network

    Yes, you can have multiple wireless routers in your home. The problem that may occur when doing this may be poor signal quality if the signals interfere with one another. …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching How to publish my website

    HI i am create a website and want to publish my site online so everybody can access this,i am buy a domain name,i want to publish my website from my …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in How to publish my website

    The only problem that you will have to make double sure that you have solved would be static IP addressing. If you are currently running through DHCP method of addressing, …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Fill ListView from another form

    My apologies, I typed the previous code straight into the code window.
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching Fill ListView from another form

    How can I populate a listview from another form passing the SQL statement from this form to the other form with the listview showing the result of the query?
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Fill ListView from another form

    You can create a sub procedure in the destination form that will take the SQL statment as a string. Then fill the ListView from that sub procedure. For example: 'In …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Began Watching Picture Zoom and Pan

    I get no errors but when the program is debugged the code doesn't work, nothing happens. Can someone please tell me what I should do? Thank You! Private m_PanStartPoint As …
  • Member Avatar for Begginnerdev
    Begginnerdev

    Replied To a Post in Picture Zoom and Pan

    You can write a function to scale the parent panel. For example: Private Sub btnIn_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnIN.Click 'Increase the size of the picturebox, …

The End.