19,728 Topics

Member Avatar for
Member Avatar for NSta

okay i have a simple program that has a class of objects some textboxes etc. What i do is enter information in and it saves an object to a text file. Now i open a new project and want to use the text file that was previously created and read …

Member Avatar for NSta
0
137
Member Avatar for ChadW

Hello and thank you for taking time to read my question. I have been charged with the task of creating a scoreboard for use by one of our local teams, the problem is that I am still very new to visual basic (I am using Visual Basic Express Edition). I …

Member Avatar for Dukane
0
259
Member Avatar for thirunavukaras

i created one web form the form contain two label box and text box in the form one button is placed i click the button the page redirect to next page window.location.href="fdfgd.com"; but i wll send textbox value and label box value in the corresponding redirect page.. pl help me...

Member Avatar for ptaylor965
0
69
Member Avatar for naviabnsi

hi i m using sql ad vb.net for my project can somebody plz send me the code of last button

Member Avatar for arjunsasidharan
0
72
Member Avatar for mstester

Hey all, Just wondering is it possible to have a drop down cell in a datagrid? and if so how the hell do i do it :) Thanks

Member Avatar for arjunsasidharan
0
78
Member Avatar for BalagurunathanS

Hi all.. Can anyone provide me with the code convertor tool...ie.the tool which converts the vb.net code to C# code and vice versa... It would be better if the tool is an .exe.. Some one help in this regard as early as possible... Regards, Balagurunathan s

Member Avatar for arjunsasidharan
0
75
Member Avatar for click_me

Hi guys, i am new to the VB and i need help please ;) Here's my problem: I am required to find out the properties and codes of a box moving. I'm given directional arrows,a "random" button and a "start"button. When i click the start button, the box moves in …

Member Avatar for click_me
0
73
Member Avatar for saldelmundo

Ok, here's what I have so far. The notation on line 2 explains what I'm trying to do. [code] Public Class Form1 Dim RunningTime As Integer = My.Computer.FileSystem.ReadAllText("C:\data.dat") 'need if/then to start countdown if value in data.dat is numeric, pause timer if value is PAUSE, and resume timer if value …

0
61
Member Avatar for praveendesilva

hello, Could you please help me with the code for how to format a word document by inserting a page border using vb.NEt coding. I have already created the document using vb.Net but now need to insert a page border and a line at the bottom can you please help …

Member Avatar for jabijohn
0
77
Member Avatar for IBGhost

Dim objNetwork Dim objExcel Dim objWorkBook Set objExcel = CreateObject("EXCEL.APPLICATION") objExcel.Visible = True Set objWorkbook = objExcel.Workbooks.Add() objworkbook.ActiveSheet.Range("A1").value = "DisplayComputername" Set objNetwork = CreateObject("WScript.NetWork") Dim strComputer strComputer = objNetwork.ComputerName Msg strComputer Set objNetwork = Nothing

Member Avatar for IBGhost
0
90
Member Avatar for bhavna_816

I am accessing MS Outlook Folders through VB.NET console application through Command Line Arguments.The mails are displayed in HTML table format. I am displaying all mails once at a time.I want to display it as page like first 10 items at once and rest 10 after clicking the link button …

Member Avatar for veerendranath_d
0
207
Member Avatar for nikki23

I am trying to show info at the bottom of my data grid I get error saying object reference not set to an instance of an object Here is my code [B]Imports System.data Imports System.data.OleDb Imports System.Configuration Partial Class supplier Inherits System.Web.UI.Page Dim ConnString As String = ConfigurationManager.AppSettings("ConnString") Dim dbPath …

Member Avatar for kapil.goyal
0
357
Member Avatar for yaya_star
Member Avatar for waynespangler
0
128
Member Avatar for PawanNepal

i have a data grid in my form.i add a new column in the last of the data grid .But i want to add the command button on the data grid column which i newly added.

0
45
Member Avatar for eyad212

[B]there is unclosed literal string line 7 position 219[/B] I Get This Msg When i Gonna to Add DataSource To Report

Member Avatar for iamthwee
0
82
Member Avatar for shy_wani

hi.. i've created a table named :Survey [code]CREATE TABLE [dbo].[Survey] ( [CustomerID] [int] NOT NULL , [SurveyID] [int] IDENTITY (1, 1) NOT NULL , [SurveyTitle] [varchar] (500) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [SurveyDescription] [varchar] (300) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [DateCreated] AS (getdate()) , [coverletter] [varchar] (250) COLLATE SQL_Latin1_General_CP1_CI_AS NULL …

Member Avatar for Sawe
0
115
Member Avatar for rwagnes

I am writing a front-end application using visual basic in Visual Studio 2005 Express. I already have a connection to my database (Access 2003), but I need to retrieve and manipulate that information. I found the syntax in c, but I can't seem to find it for visual basic. Does …

Member Avatar for manal
0
70
Member Avatar for sachincool

when right clicked on the form it should show the main menu how can i code this

Member Avatar for waynespangler
0
94
Member Avatar for shy_wani

hi..i'm doing my final year project on creating Questionnaires template. i have problem with viewing my OptionLIst. I have 2 dataset..all i want to do is to preview all my Question & Answer..i can view them, but i need to create textboxes or checkboxes besides the OptionList.. [code] Private Sub …

0
60
Member Avatar for Sawe

i want to connect to a sql server running on another xp computer. i have made the sql connection, sql data adapter (using Data controls, not connecting manually from code). i can fill the data adapter from the design view by right clicking on the adapter, Fill dataset and i …

Member Avatar for Sawe
-1
95
Member Avatar for ScatterMap

Hi! I'm a newbie with VB.NET and I'm so close to finished an internet explorer of my own and have come to the following problems: Whenever i type a URL into the combobox and hit "Go", i have a text box that fetches that URL. Everytime I enter a new …

Member Avatar for manal
0
190
Member Avatar for ScatterMap

How do i reverse the order of a combobox. I'm currently loading cboItems.items.add (reader.readline) from a .txt document using streamreader. After the items are loaded into the Combobox, i want to reverse their order from Bottom to Top. Is that possible?...

Member Avatar for hollystyles
0
266
Member Avatar for snipered

Hi, this is my first post on this thread. I have a datagrid with a checkbox. I followed the one on msdna2 site using a tablestyle etc. However, i want to do update using all the ones the user has checked. I can do this for one single checked item …

Member Avatar for snipered
0
92
Member Avatar for ptaylor965

Hi, In VB.NET I have Two tables Table1 = OrderNum, Stockcode, QtyNeeded And Date Table2 = Stockcode, QtyProduced And Date I need to get the sum of QtyNeeded and the sum of QtyProduced so that i can see the differance They are grouped by Stockcode and Date e.g. Stockcode | …

Member Avatar for hollystyles
0
93
Member Avatar for nikki23

I am trying to enter data into a datagrid and I get this message No value given for one or more required parameters. Can anyone see what is wrong. Here is the code Imports System.data Imports System.data.OleDb Imports System.Configuration Partial Class supplier Inherits System.Web.UI.Page Dim ConnString As String = ConfigurationManager.AppSettings("ConnString") …

0
60
Member Avatar for Albert88

actually i'm new in programming and i have a problem with my assignment... in the assignment, i have to validate the input from the textbox the input have to contain "SO" and folowed by the 3 to 5 numbers and i really don't know how to code it....... plissss someone …

Member Avatar for Albert88
0
70
Member Avatar for nikki23

This is what I have so far. I need to retrieve data and show in a grid view supplier ID supplier name and a command field to click more details that will include more detailed info. I am have problems on how to get the rows. i need to retrieve …

0
63
Member Avatar for vrushalinz1

HI , i m using System.Windows.Forms.ListView control. i want to set the text in the subItems to bold at run time. How do i acchieve this :!: Thanks in advance.

Member Avatar for Shodin
0
193
Member Avatar for furjaw

Visual Basic 2005 How do I go about adding a column to an SQL database. Everytime I did it in the past it was a disaster and I literally had to start all over again from square one. I would go into Dataset Designer to add the column then I …

Member Avatar for jamello
0
124
Member Avatar for karan_21584

in vb.net, how to check whether the attribute is existing or not... that is.......... i have an xml file and the content is as..... <xs:element name="name" type="xs:string" minOccurs="0"/> <xs:element name="sample"> my coding line is : "ans=xmlnode(k).Attributes.Item(1).Value" when reading the above coding, the error "object reference not set to an istance …

0
54

The End.