20,899 Topics
![]() | |
Hi there I have the the following database structure: [B]Table Product[/B] Product_ID - Product_name - Product_issue_date [B]Table Sale[/B] Product_ID - amount - date Now i want to report the total of each product. The result should look like this: Product 1 - 5,000 Product 2 - 3,500 Product 3 - … | |
Hi. using the following code I am trying to read an xml stream [code] [code=vb.net] Do While (reader.Read()) Select Case reader.NodeType Case XmlNodeType.Element 'Display beginning of element. MsgBox("<" + reader.Name) Case XmlNodeType.Text 'Display the text in each element. MsgBox(reader.Value) Case XmlNodeType.EndElement 'Display end of element. MsgBox("</" + reader.Name + ">") … | |
hai friends, I dont know how to create database dynamically in vb.net.(if a button is clicked 4 databases in access or sql has to be created).similarly by clicking the delete button the specified database should be deleted.can you help me out with the coding. | |
Hello all, :) directly here is the issue: i want to choose the path to my database file for my DBdataset in a VB .net project during the runtime in the first form, and then i want to use that file in some other forms. the file could be on … | |
hello every1. i want the text box of form1 to be accessible in form 2 without declaring it as public. ive declared it as protected. but how do i inherit it in form 2. | |
Hi all, I am fairly new to programming, and I have two related Problems, 1, i need to capture keypresses globally eg. no matter what is selected if i press 'z' the program will end. the only way that i could do this so far is to have a handle … | |
Can somebody tell me the sites related to latest VB.net Interview Questions..Cz ui have interview on coming wednesday!!! I will be very helpfull. | |
Hi 1]Am new to VB.NET and m required to design the form for log in id and password connected to MS ACCESS 2003 containing the fields 1)user no 2)user id 3)type 4)password. Can you please provide me with the code for the same. 2]Secondly am required to make a splash … | |
Sir, I am having trouble with a piece of JavaScript code that expands blocks of text. For example, when you click More >>, the text under it will expand. And << Less it will collapse. I can get that to work. I can also get the data out of the … | |
ListView Properties- I set MultiSelect to False, LabelEdit to true,FullRowSelect to True. I have Listview with two columns. [B]1) [/B]When I select onw row in listview,On button click i want to get the index of selected row. I m getting it but using for loop,I want to know is there … | |
here is my code Dim oledbcom As New OleDb.OleDbCommand oledbcom.CommandText = ("INSERT INTO Customer Company, Address, Telephone values ?,?,?") oledbcom.Connection = oledbcon Dim oledbparam As OleDb.OleDbParameter = _ oledbcom.Parameters.Add("@Company", OleDb.OleDbType.VarChar, 30) oledbparam.Value = txtCompName.Text.Trim() oledbparam = oledbcom.Parameters.Add("@Address", OleDb.OleDbType.VarChar, 80) oledbparam.Value = txtAddress.Text.Trim oledbparam = oledbcom.Parameters.Add("@Telephone", OleDb.OleDbType.VarChar, 15) oledbparam.Value = txtContact.Text.Trim … | |
Hai, We are working in a project which handles lots of data. How many tables can we have in sql server 2000 so that it can be managed efficiently.Is there any rule for separating the tables. We store information like candidate details,interview process.... Thanking in advance | |
i have a problem in dropdown :suppose i select id from dropdown then i want name of the employee is displayed matched with that id is displayed in textbox : i have use the following code con = New SqlConnection(constr) adpt = New SqlDataAdapter("select * from reg where f_name='" + … | |
Hello I am coding an FTP program, the downloading/uploading happens in a seperate thread. The problem is now how to pause/resume the download (even on servers that don't support file resume), an easy/working way is to pause/resume the working thread with thread.suspend but it tells me that this function is … | |
hai, In my project, i have a task of uploading a photo attached to the application form to the form designed in vb.net.Can you suggest some ideas of how to work on this.Is web camera preferable. thanking you in advance. | |
I want to get image from the file..I m able to do it....But mine code do not close the file,after getting the image,I want to close the file.Cz after getting the image,I want to delete that file.....on Deleteing error is dere file is user by another process... Public Sub GetImagesContent(ByVal … | |
Sorry if my thread is place in incorrect forum. Hai All ... Could anybody help me? i'm praticing how to build the n'tier application. I have read some book tell about this, like "Building Client/Server Applications With VB.NET" by Jeff Levinson, beth massi video tutorial "building simple n-tier applications", and … | |
I'm designing chat application these days.. I tried several samples which i found from the web.. I designed Server and Client.. When i run client in my machine, server get it nicely.. but when server in my machine and client in other machine, server doesn't detect client.. I tried 5+ … | |
Hi all, I need a favor on SQL this time There are 4 tables as follows Employee(EmpID,EmpName,...........) Designation(Des_ID,Designation....) EmpProfInfo(EmpID,Des_ID,..........) Training(TrainingTypeID,EmpID,TrainingType,.......) When an employee allocated to a training their details will be inserted in to the Training Table I want to write a sql query so that I can select EmpID,EmpName,Designation … | |
Hi All, I am working on a windows application in vb.net. (School Management Project). My problem is that, when I am adding the Personal Details of a student,(which include enrolmentno(primary key in the database),name,class,section,etc), when I click the save button what I want is that the enrolmentno should appear on … | |
Well, can someone help me with regular expressions?? It's look, I need RE that block textBox empty. I tried everything, but I failed. So I did code something like this: This code below work very well. '''---------------------------------------------- Protected Sub editarNodeButton_Click(ByVal sender As Object, ByVal e As EventArgs) Handles editarNodeButton.Click Try … | |
Hi all, I want to run a dot net web application developed in C# (2003 ) in Apache. I have installed Apache 2.2.10.0 and also loaded the module mod_aspdotnet.so. But my problem is the ASP text box controls are not being displayed although the scripts within the <% %> tags … | |
I need help with my visual basic assignment! The program has to include an array with at least two strings. In the layout there should be one label which explains what the user has to do, for example "Write two strings" (or x strings) and one label that shows the … | |
Hi.. Could Everybody help me how to display preview image from scan image and set area size to scan and also convert to pdf when Acquire Image from scanner device I use vb.net to build this application thanx | |
| |
hi i am working in vb.net 2005 and sql 2005. i have developed backup and restore forms. in the backup form if i backup database, i need to list server dir and folders but i am working in client system. how to list server dir list? in my system connected … | |
if I want to send an animated GIF format picture, how do I save the picture in destination folder? I already using "System.Drawing.Imaging.ImageFormat.gif", but the GIF picture no longer animated, it become like JPEG format. another help please... | |
Hi Im new to Crystal Reports. Im using Visual Basic 2008 with Crystal Reports 8.5. For an Accounting program i would like to do some reports to show all totals, dates of trades, counterparty and so on. The Results should be shown in a table / spreadsheet. The data i … | |
instead of having C#, VB.NET forums let's have one with windows client, as server we already have asp.net forum, and then let's have one with windows mobile development. i develop mobile applications for windows mobile OS and it is sad that we dont have a dedicated forum for mobile devices. | |
PROJECT DETAILS- This system uses two files....item.txt and transaction.txt.. .when u add products, it goes to item.txt with its current stock. ...when u sell product, the stock decreases from item.txt and a transaction entry adds to transaction.txt First Part is completed.Dat is item.txt file..Now if i sell product,I want to … | |
I have a datagridview that tracks when employees clock in and out. I used the datetime data type in sql but I dont want the year to display. How would i go about doing this? Do i have to modify my select statement, or can I do it with vb … | |
I'm trying to display the number formate according to cultureinfo for that i enter the numbers in text box like 456,456.50 and select the culture english name as German(Germany) and click the button means it display the given number in the german format ie 456.456,50 but when i enter the … | |
Hi friends!! I want to get the callerid of the incoming call how do i do that using vb.net. does anyone has any idea, im using modem to which is attached to my pc. | |
Hi friends!! i have a small application where i want to receive incoming faxes and save them in a particular folder, how do i do that im using system dll to get the methods and functions for doing so, im using the dlls below 1) faxcom.dll 2) fxscom.dll 3) fxscomex.dll … | |
hi all, i m a newer in c#. a already start to using c# today. in my first project i make program to add,edit and delete data from database. i m already do all of them. now i want to showing data in every control (textbox,combobox, etc) when i click … | |
Hi Alls, I'm really need your's help... I develop console application as a engine to pull data from oracle to SQL...the connection to both database is ok..but when to insert got problem....somebody help me plz.... [CODE] 'Connection To Sql Dim sqlcn As SqlConnection Dim sqldr As SqlDataReader Dim sqlda As … | |
HI... I am new here... I am doing siple POS and I got a problem on printing... * How can print a continuous paper? The printer that I am using is Zonerich AB-220K. * On my code: I doing it with system.drawing namespace, and I already tried with crystal report … | |
I want to read just the last record of file....I m able to read the whole file. Secondly I want to know that in VB.Net we have ubound to get the upper bound of the array..What is the equivalent in ASP.net? [code] protected void Page_Load(object sender, EventArgs e) { string … | |
I am having trouble inserting records into my database from a form with textboxs. Here is the code for the add button however data is not adding to the database. If inc <> -1 Then Dim cb As New OleDb.OleDbCommandBuilder(da) Dim dsNewRow As DataRow dsNewRow = ds.Tables("AddressBook").NewRow() dsNewRow.Item("FirstName") = txtfirstname.Text … | |
i have a smtp server on my dedicated domain. when sending an email from asp.net application it goes to spam folder in yahoo and gmail. to avoid this i create a SPF text record and add to my DNS domain records as text . but i can't get any solution … | |
I need to get the source code of webpage which is embeded with AJAX i.e. The web page is designed using PHP but the contents frame is designed using AJAX and the PHP pages is made to embed with this content page so we cant able to get the HTML … | |
Hi friends, Can u tell how can i connect to ms access table from a remote pc within LAN. I want to make a small programme for database manipulation on LAN. Whose database will be stored on a single pc and another can access that data from remote pc within … | |
Hi I want to update a database record using vb forms. Im using a button for this purpose...how can i do this.. is there any way like in oracle that just a commit statement save changes.. here i need to write all fields and assign their values in db... please … | |
i want to enable or diable some controls on another form depending on the action in the current form. how can i write the code for this in the current form | |
Hi guys, I'm a complete newbie here and to VB.net in general. My friend for his company has written a program to tell if machines within his workplace are actually doing anything. The results from this are then shown in a text file, which I will show a small part … | |
hi everyone, i am new here and new to programming as well. i was wondering if anyone could please help me. i am going to start my final year project which has an ocr component in it.since the project is quite huge, my supervisor advised me scope it down by … | |
Hi all, I want to change the color of the messagebox same as the color of the form. How can we change the default color of a project in VB.net? If any one having comments regarding this matter please post them Thanx | |
Hi there, I am in need of some help. I have created a program that runs mass calculations and reads data from an Excel spreadsheet and then produces output for an EU to see. lately I have been running into problems with macros wanting to update something since I have … | |
hey frnds, tell me one thing as in VB.Net suppose if we want to connnect to SQL,then in form coding itself.We create the database,Create table ...& insert values... WE do that cz if we run the project at Client side,even if no database is there our project automatically creates it … | |
hi, In my program i have a textbox and a webbrowser and i am using vb.net My question is how to get the web address of the a site that i navigate to web browser and display it in a textbox? Like when we are browsing the internet the web … |
The End.