20,278 Topics

Member Avatar for
Member Avatar for aqee_se

I'm working on a messenger. Scenario is this: a thread is running at background as soon as it gets a message from server. It has to show this in a new form. But when i try to show the form, form just hangs and nothing happens on form. Code is …

Member Avatar for Ramy Mahrous
0
99
Member Avatar for aqee_se

When calling a form from a thread. It just hangs. No error detects or etc

Member Avatar for Ramy Mahrous
0
85
Member Avatar for ~AOD~

Sir, I am currently writing a VB.Net application that uses Random Access File storage to store all the records. I have been able to write/find and delete records from the random file however i also wish to update records once i have searched for them. When the update takes place …

Member Avatar for Ramy Mahrous
0
724
Member Avatar for sonia sardana

I want to remove google toolbar.Mine code is working alright in IE6.But not in IE7. [code] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Microsoft.VisualBasic.Shell("regsvr32 /s " & Chr(34) & "C:\program files\google\googletoolbar1.dll" & Chr(34) & " -u ") End Sub [/code]

0
41
Member Avatar for kerek2
Member Avatar for sonia sardana
0
129
Member Avatar for nerden

I am writing a program where a user selects two mathmatical operators: LT -less than GT -greater than EQ -equal to NEQ -not equal to I have if statments to convert these to their symbol, but how can I then use this in a sum? If it was just one …

Member Avatar for nerden
0
128
Member Avatar for sonia sardana

I create a Buton in IE,Now I want to Create a Drp Down Menu with Button, plz help me out in creating a Menu- Mine code as follows- [code=vbnet] Imports Microsoft.Win32 Public Class Form1 Public Const BaseKey As String = "SOFTWARE\Microsoft\Internet Explorer\Extensions" Public Const SubKey As String = "{10954C80-4F0F-11d3-B17C-00C0DFE39736}" Private …

Member Avatar for jivangoyal
0
141
Member Avatar for newbie_here

hi all i am a newbie want to know how to get values from two tables in database. I hae two tables one is the personla information and the other table is the salary table .Both tables have id number which may join them to gather. But what i need …

Member Avatar for Ramy Mahrous
0
147
Member Avatar for shers

Hi, Could anybody give me some example code to insert rows of datagridview into a sql express database table? Also, how do I manage concurrency as it is a multi user application? Thanks

0
43
Member Avatar for geetajlo

Hi i want to prevent the user from entering number and special charaters in a textbox and another textbox from entering alphabets and specials characters ..... Need it quickly coz 2moro have to submit my project...

Member Avatar for sabeerpasha
0
1K
Member Avatar for Altarium

I'm definitely an amateur programmer, but I'm looking for a way to make a VB program search through an excel spreadsheet. My purpose is that I have a lot of media (software, music, movies, books) that I keep organized on a spreadsheet, but I'd like a nicer way to sort …

0
72
Member Avatar for Dell XPS

i need to save some text in a file in utf-8 format but have no clue how to do it... any help appreciated...

Member Avatar for Ramy Mahrous
0
107
Member Avatar for daviddoria

I have a program with about 20 forms, almost all of which use the data from a tables in a dataset (from a datasource I added to the project). So I have made a global variable in a module: [code] Public TTData As New TTDataSet [/code] And a DataAdapter for …

0
49
Member Avatar for sonia sardana

I want to extract all the URLs of favorites. Mine code is as below- Code is adding all the Items into Listview. I want that on ListView_Click,dat site is opened. [code] Private Sub GetFavorites() Dim lvitem As ListViewItem Dim di As DirectoryInfo Dim lPos As Integer Dim sData As String …

Member Avatar for Ramy Mahrous
0
66
Member Avatar for srikanth.cpd

i have user mscomm.ocx in my vb.net project. i need to register the control in client machine at installation time i craeted a bat file which has the following code regsvr32 \s mscomm32.ocx. plz tell me how to include bat file in setup project. and how to make it to …

Member Avatar for Ramy Mahrous
0
57
Member Avatar for kheija

i've wondering here,if i can combine windows application and web aplication.Can i develop main page in web application then i want to access to the windows application.(e.g there's a button to link process mgt page.But process mgt page is developed in windows application).Else, if i do a view page on …

Member Avatar for Ramy Mahrous
0
92
Member Avatar for bondgirl21

i USED THIS CODE TO ASSIGN THE BRAND DBS TO A VALUE OF $200000 Help with Code Tags [quote] Private Sub xModelComboBox_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles xModelComboBox.SelectedIndexChanged If xModelComboBox.Text = "DBS" Then xTotalPriceLabel.Text = "$200,000" [/quote] AND THIS CODE TO CALCULATE THE FOLLOWING iNITIAL PRICE= is …

Member Avatar for Ramy Mahrous
0
126
Member Avatar for bugmenot

How to focus a combobox in windows forms when the program is running in a thread?

Member Avatar for Ramy Mahrous
0
87
Member Avatar for jetex

hi all... can any one help me plzzzzzz im very new to .net... i hav 2 radio buttons rb1 & rb2 in a groupbox and 2 textbox txt1 & txt2 initially rb1 is checked and txt1 and txt2 are enabeled... when i select rb2 .... txt2 should get disabled.......

Member Avatar for Bandar.M.A
0
84
Member Avatar for daviddoria

I have a typed datatable that I am viewing part of with a datagridview [code] dgvData.DataSource = TTData.PunchEventTable.Select(FilterString, SortString) [/code] My question is how do I delete the row that is selected in the DataGridView from the database? If I use [code] TTData.PunchEventTable.Rows.RemoveAt(dgvData.SelectedRows(0).Index) [/code] I believe it will delete the …

0
48
Member Avatar for kheija

[code] Static x As Integer = +TimeLbl.Left Static y As Integer = TimeLbl.Top Static width As Integer = TimeLbl.Width Static height As Integer = TimeLbl.Height If DateTime.Now = "08:00:00" Then Timer1.Enabled = True With Me x += 0.6 If x <= +.TimeLbl.Width Then x = .Width End If .TimeLbl.SetBounds(x, y, …

Member Avatar for Bandar.M.A
0
68
Member Avatar for Sally123

I am using VB 2008/2005. 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 ProductID Descritption table 2 …

Member Avatar for bondgirl21
0
103
Member Avatar for satisn1

Hello! I am working on a project in VB.Net .I am Making use of two forms, which consist of a form called Project .It has a Button which is called New Employee on the form itself.When I click this button, I want that this link me to the Employee form.I …

Member Avatar for Bandar.M.A
0
140
Member Avatar for ilokana

Hi, I have a report that generates personalized letters. How can I attach these personalized letters (in PDF format) to their corresponding e-mails using MS Access 2003? Please help. Thanks. ilokana

Member Avatar for ilokana
0
100
Member Avatar for kritiohri

I have a sql table consisting of dept_name and dept_code.and on the form i have textbox for dept_code and combobox for dept_name.When i select a particular dept_name from the combobox i should get the corrosponding dept_code in the textbox.

Member Avatar for Praniya
0
162
Member Avatar for newbie_here

Hi all i am having some problem with the logic. can someone help me with it please. i am doing a vb.net project say for example a company has a lot of branches. I need to print the sales report for all the branches. so when printing it should print …

Member Avatar for newbie_here
0
93
Member Avatar for Praniya

Anyone explain me about how to create application with Microsoft Agent Control.

0
49
Member Avatar for Eyo

Hello All, I need to trigger an event on application.exit on windows application (vb.net).... how could I handle the applicatoin.exit event

Member Avatar for Praniya
0
480
Member Avatar for fancy2

Hello, I am very very new at VB 2008 and Coding. I need to create a Basketball simulator that has two teams of five players each. Each player has an offensive, defensive and shooting percentage. whih are randomly generated and the uses can randomly generate them until he is happy …

Member Avatar for timothybard
1
131
Member Avatar for ben_harvey327

hey, im an allright programmer, but im stuck with something, which is probably very simple, i have a database, with all my movies, that is linked to a data set in vb 2008, that all works perfectly fine. above this i have a label and on form load it creates …

0
46

The End.