20,278 Topics

Member Avatar for
Member Avatar for pepemiso

will you please help me in my problem.. when ever i am triggering a button I can display it on the list view.. but my problem is that i need to clear the item in list view after triggering the button. example i have a search button. when i click …

Member Avatar for GeekByChoiCe
0
95
Member Avatar for headworth

Please may i have some to help to convert excel workbook code vba to vb.net code? This is the start of my buttoncommand Dim Count As Long Count = 1 For i = 2 To 65536 If Cells(i, 1) <> "" Then Count = Count + 1 End If Next …

0
43
Member Avatar for manutd4life

Ok i have a button on MDI parent form and i need to disable it when closing a child form. When writing the button name (cmdmenu) in the child form, it says that the cmdmenu is not declared please help

Member Avatar for manutd4life
0
205
Member Avatar for babbu

[code] frmColourName.ShowDialog() 'adding a customer m_Customercount = m_Customercount + 1 Dim drNewRow As DataRow = m_CustomerDataTable.NewRow() drNewRow("CustID") = m_Customercount drNewRow("Company") = txtCompName.Text.Trim drNewRow("Address") = txtAddress.Text.Trim drNewRow("Telephone") = txtContact.Text.Trim drNewRow("Address") = txtAddress.Text.Trim drNewRow("Email") = btnEmail.Text.Trim Dim counter As Integer = 0 While counter < m_CustomerDataTable.Rows.Count If m_CustomerDataTable.Rows(counter)("Company") = txtCompName.Text.Trim Then MessageBox.Show("This …

Member Avatar for babbu
0
137
Member Avatar for DAWNIE

Hi guy, I currently having problem saving my drawing into the sql database. Can I get some help here pls. my current codes: [CODE] Imports System.Data Imports System.Data.SqlClient Imports System.IO Imports System.Drawing Imports System.Drawing.Drawing2D Public Class Page_2 ' for GCS TABLE Private value_GCS As Integer = 0 Dim value_Eyes As …

Member Avatar for DAWNIE
0
2K
Member Avatar for Nicholas Ng

Hi ,im new to vb...mine 1 is visual studio 2008 ,hope anyone can help me TT my problem is.. i got two form .. 1 is the login form 1 is the register form i need to code ,when the user is register and types in the detail..it will automatiic …

Member Avatar for babbu
0
97
Member Avatar for sam1

hi, I am trying to display a decimal in a textbox as 10.23. right now it is shown as 10.2333. i have created a function that removes the last two digits of the number but sometimes the number is 10.23 so when using this function it will remove the two …

Member Avatar for almostbob
0
86
Member Avatar for HookDevil

Hi, First of all... Yeah, I know that there WAS and still IS a lot of discussions and arguing about this particular topic (actually the main reason why I opened a new "Global Hook vb.net" topic is because I couldn't find any answers to my questions as a lot of …

Member Avatar for HookDevil
0
138
Member Avatar for Adeel89

Hi, I am trying to wrap a simple C++ class called math and export it to VB.NET using a DLL made in VC++ 2008. The implementation for the wrapper functions is as follows: [code=CPP] void * _stdcall CreateMath() { return new math; } void _stdcall DestroyMath( void *Math ) { …

Member Avatar for Adeel89
0
463
Member Avatar for Zack Richards

Hello, i am currently developing a new OpenSource project. I will release it to the public this week. :-) [B]Let's get to my question(s) then[/B]: [LIST] [*]I have a Rich Text Box, and i want to save that text into a default extension. [*]I want the default name to be …

Member Avatar for Zack Richards
0
134
Member Avatar for itshibu

Dear Friends, I would like to know how to find exact word from a text data available in SQL String. I mean, Suppose I have a string available in Table1; ie , "My latest activities" I want to search the word like test. Currently I am using query select * …

Member Avatar for Kids
0
109
Member Avatar for zuve_fox

Hi.. I build Scanner Application using WIA vb.net windows. Could everybody help me how to convert WIA.Imagefile to image so I can display on picturebox thanx

0
55
Member Avatar for Robtyketto

Greetings, I'm a newbie and cannot fathom the deployment process. I noticed WITHOUT a Setup project/Setup wizard project in my solution (desktop application) when publishing creates a setup.exe which runs an installer of a kind. Not a typical windows installer with welcome, installation folder screens etc.., I added a setup …

Member Avatar for GeekByChoiCe
0
118
Member Avatar for vaq

Here's the .dll for RunPE I'll be compiling in VB6: [url]http://4a0z9.pastebin.com/m24240ac9[/url] I was just wondering how I'll be able to use that to run an exe in memory by importing it to my VB.NET application? I can provide extra info if necessary, but some help would be awesome. Thanks, vaq.

0
61
Member Avatar for milhero

Hi Professionals, I am currently working on a mass emailing system. I am using Microsoft Visual Studio 2005. With windows IIS in Windows XP SP3. My program can send mass emails using System.Net.Mail namespace found in .NET 2.0 but i have no idea on how to implement the receiving emails …

Member Avatar for milhero
0
344
Member Avatar for Ana D.

Hi, For the page I'm developing I need a DropDownList with CheckBoxes on it, so that the users can choose more than one option without having to use the Ctrl key (and it's more intuitive). Because my options are being retrieved from the Database, the list of option can be …

0
52
Member Avatar for Piya27

Hi All, I need to change the style of the first row in an excel sheet(that is created dynamically) in VS 2008. I tried using Excel.Style in vb.net but cudn't seem it working. any help?

0
68
Member Avatar for Ana D.

Hi, In the page I'm developing, I need a DropDownList where the items have CheckBoxes beside them. I found a lot of different suggestions on the internet about how to do it. Some suggest to use a ChebkBoxList, javascript and css and make the CBL looks like a DDL (a …

Member Avatar for Ana D.
0
76
Member Avatar for Ana D.

Hi, I'm trying to bind a DropDownList in the code behind using the following code: [CODE]Dim DatabaseConnection As New SqlConnection(ConfigurationManager.ConnectionStrings("myServer").ConnectionString) Dim selectCMD As String = “SELECT name, id FROM Clients WHERE name LIKE @name + ‘%’” Dim selectCMD As New SqlCommand(selectSQL, DatabaseConnection) selectCMD.Parameters.Add(New SqlParameter("@name", SqlDbType.VarChar)) selectCMD.Parameters("@name").Value = name Dim adapter …

Member Avatar for Ana D.
0
85
Member Avatar for ms_junie

Hey guys I'm a newbie =) I was wondering if it was possible to bound 2 combo boxes to each other. the first combo box with a set of information. Based on what the user selects, the second combo box changes. this involves 2 tables. table 1 dept id department …

Member Avatar for ggl0rd
0
97
Member Avatar for Manjunath.G

Hai iam a new one to vb.net but i have done a project in it.that is front office management system. but we done the data connections(sql server) through the builtin methods ie from data menu in the toolbar add datasource through this... now i need two information 1-how to connect …

Member Avatar for kvprajapati
0
86
Member Avatar for chirup

i'm doing a project on scrabble as part of my deg course. can text be retrieve from a bitmap image .if so ,how? i also want to overlay dice images on the board .can it also be done? i also want to drag the dice images to the board which …

Member Avatar for kvprajapati
0
74
Member Avatar for alecka_16

anyone who can you help me make my project..it's about the program for bank transaction system..it must have the registration for customer and client..new accounts(savings, current, dollar)...transactions(deposit, withdrawal,inquiry, close) and then the report where i can view all the transactions..pls... any help is well appreciated...

Member Avatar for freepost
0
82
Member Avatar for Jostra

Hi guys please help with this i am trying to write my data from a table in a lis box but a always get the number of items inside the table. can some one come thru please. lstData.items.Add(dataAdapter.fill(dataset,"MyTable") all kinds of help will be appreciated

Member Avatar for Jostra
0
710
Member Avatar for johnGIS

Who has VB.Net notes for a beginner. Send them to [email]jyumbya@yahoo.com[/email]

0
49
Member Avatar for pearllyn

i doing a project and i need to send sms to mobile phone. i need source code to help me. How to write code as i want to check whether the picture arrive in my folders.

0
57
Member Avatar for akari0283

hi all, im trying to make a modding program for games. how to read 16 bit number from a save data, and display in a textbox by 10 bit number format ? im using Microsoft Visual Basic 2008 Express Edition. plz help. sry my bad english. thx :)

Member Avatar for akari0283
0
74
Member Avatar for Thorsun

Hi all, I've done plenty of searching through as many threads related to this issue and tried just about everything I've found, but to no avail. I am using the VB that is included with Visual Studio 2005 and I have a secured access database that I connected to using …

Member Avatar for staticvoyager
0
125
Member Avatar for staticvoyager

I did see some other posts on this project, but nothing seemed to help. I just keep getting more confused. =P I coded all my issues into the comments, as this project is already late, and I'm going to have to hand it in - whether it works or not …

Member Avatar for staticvoyager
0
107
Member Avatar for babbu
Member Avatar for sknake
0
35

The End.