vb.net 2008

  1. W

    Question how do i display a google map without the compatibility view error message ?

    in my vb.net 2008 program, which runs on windows, i added the ability to display a location using google maps .. it does display a google map but it also displays the message .. It looks like you have enabled internet explorer compatibility view. google maps will not work correctly unless this...
  2. C

    Shutdown Timer

    I have an application that is supposed to shut itself down on Sunday between 9 and 10 am. It does not seem to work. If I run the program and sit and watch it, it will shut down as it is expected. This application runs across a network and there may be 100 instances of it open at any one time...
  3. S

    Learn How to Develop ERP (Source Code)

    Learn How to develop ERP software using VB.Net 2008 and SQL Server 2005/2008. This project is particularly useful for those who are developing an ERP software for .Net frame-work using vb.net. As the topic of ERP itself is very vast, a basic portion is covered. The business logic?s used are by...
  4. Z

    Question How to retrieve .pdf file from varbinary(max) colunm

    Here is my issue, how do I retrieve a .pdf from varbinary(max) colunm using VB.Net I was able to save to sql using: Dim pdf As String Dim pdfByteArray As Byte() Dim lLenPdf As Integer = Len("C:\pdfFile.pdf") Dim mypdf(100000)() As Byte Dim numBytes As Long =...
  5. E

    Question how to insert a query in each datagridview row value

    ok here's the problem, i have 2 datagridview in my form, namely datagridview1 and datagridview2 what im trying to accomplish is to execute a query in each row(datagridview1), and the result will be displayed also in each row of datagridview2(with column name BALANCE_QTY AND CONSUME)...
  6. P

    Question How databinding between 2 combobox from database

    i use VB.NET Visual studio 2008. i have 2 combobox is cbSection and cbTeam. i need databinding between 2 combobox. when i'm select data from cbSection will be show to cbTeam. Ex. cbSection Size Color cbTeam -When Select "Color" Red Blue Green...
  7. S

    Question How to prepopulate a listbox populated by dataset

    I have a datagrid which has one custom column(List Box) which should be populated from the resultset of a SQL Stored Procedure. I used dataset to handle and assign the values to custom column(List Box). List box is populating from the dataset but i'm unable to show the default(actual) value in...
  8. S

    Question connect Database on the solution explorer

    Hi Guys, I am new in VB.net & need your experience & help. I am using Following Codes to connect my project to Access Database:- Public Class Login Dim con As New OleDb.OleDbConnection Dim ds As New DataSet Dim da As OleDb.OleDbDataAdapter Dim sql As String Private...
  9. M

    Question syntax ERROR in the INSERT INTO instruction

    Hello, I am using VB.NET 2008 and I can't create a button. I recieve the message shown in the title ! Here is my code : dtr = dts.Tables("28071").NewRow 'dtr("datee") = TextBox1.Text 'dtr("index") = TextBox2.Text 'dtr("hmj") = TextBox3.Text 'dtr("hmc") = TextBox4.Text 'dtr("CumulJours") =...
  10. Vani Alcaraz Dinglasan

    created a table/datagriview when a button is pressed. then how to connect/add to SQL

    i have a button. when i click the button, it will automatically create a table.. ---------------- i have a code that will create a table ---------------- Public Class Form1 Inherits System.Windows.Forms.Form Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As...
  11. F

    Question Automate different versions of Word from Visual Basic .NET

    I need to create a word document from vb.net (2008) and have found this very useful page here... How to automate Word from Visual Basic .NET to create a new document The problem I have is that I have office 2007 on my machine but my customer has many machines with many different versions of...
  12. L

    Question how to display child forms using menustip in MDI Parent form....??

    When I click on Borrow Book(s) from Transaction menu it should open frmborrow.vb Also to it should do the same to rest of the menu(s)...... What should i write in the click event for Borrow Books from Menustrip menu
  13. H

    Question need help in this ( mute picture box problem )

    iam working in media player for my own every thing in code is working but if i pressed on mute picture box to mute sound and re-open another video or music file the sound is playing and the sign in mute picture box is show that iam in mute mode this is the code for mute picture box : please i...
  14. tgf-47

    Question Need help with this assignment.

    I'm doing a project where we are re-creating a very old system. The client wants the same base functionality and some improvements. One of the things I'm currently working on is the note-system. These are used as flags of some sort, but are also used as a comment field for some products or...
  15. T

    Question Accessing outlook (*.msg) file

    Dear all, I have question that I need to access outlook (*.msg) file by using VB.NET. I have no idea. Do you have any web link or sample for my reference? Thank you for your help. Regards, Tommy
  16. P

    Question ChatBox

    Hello there, i dont know if this is the right place to post this thread so.... :( Ok my real problem is that i want to make a chatbox in VB.NET 2008 (Framework 3.5) which should over a LAN network. And i dont have any clue how to make it :confused: coz I'm a newbie to vb.net So if anyone has...
  17. S

    Question Create ms report, passing 2 parameters to a stored procedure

    Hi everyone, How can I achieve this, anyone, please? I have stored procedure on SQL Server 2008 Express and I need to pass 2 parameters @date1 and @date2 so I can build my report. Thanks!
  18. tgf-47

    Question How do I populate an array while creating a datatable? Breaking it up instead of fill

    I want to modify this function to populate an array with each item in the database. I have tried various options, but I just can't get it to work Private Function ConnectMe() As DataTable Dim conn As String = "Server=192.168.0.36;Port=3306;Database=wswc;Uid=root;Pwd=Jack"...
  19. tgf-47

    Question How to hardcode a connection to a MySQL DB and code a Datatable? I need help

    My system use to run on from a access database. Now I created the database on a MySQL server. I can connect to it using the connection wizzard, but I prefer using my old methods as shown below. I used this to connect to my access database: Private Function MYDATA() As DataTable Dim...
  20. tgf-47

    Question How do I connect to a MySQL Database on a server?

    I have a database in MySQL server called MD Server: Local host User: root Pass: wccmd12 port 3306 How do I connect to this database in vb.net? Can you give me the code and/or what to do please
Back
Top