20,278 Topics

Member Avatar for
Member Avatar for wiss.dev

hi iv developed a small application using vb. it runs perfect on dev machine. when i tried on a test machine which is using windows 2000 i had this error failed to activete controlvb.user control this control may be incompatible with your application. make sure you are using the version …

Member Avatar for thecoat
0
75
Member Avatar for rfrei

I am trying to send a command to the external command line (cmd.exe) from the Windows form application that I'm writing in VB.NET (using VS2008). I can only access the external program thru the command line (its not my program) and I must do so from a form app. I …

Member Avatar for thecoat
0
2K
Member Avatar for pmvbdg

I have a dll from a vendor. I have to link to it in a vb.net program. It all works fine IF the dll is in the same folder as the executable file. If I move the dll to another folder that is in the normal search path (\windows\system32, for …

0
55
Member Avatar for hlove4u

Can someone with LATE BINDING idea help me out in my VB.NET Project. Im working on an MDI (multople Doc Interface) project with some toolstrip buttons on my parent form (my menu form) from where I need to call some public procedures (like DELETEREC, UPDATEREC and so on) on childforms …

0
50
Member Avatar for sanjay kothari

It is possible to run our visual studio c++ application in Syambain OS ? If Possible then How to do? Syambain Support VC++ or Not ? thanks.

0
43
Member Avatar for G_Waddell

Hi I've written a printing application which is working perfectly when I debugg and step through but does not print anything when running a debugg with no breaks / step through. I suspect I need to use something like Do Events to get the application to print out. However when …

Member Avatar for G_Waddell
0
108
Member Avatar for khursheed_doba

hi am working on a renting project where i have to make reports on the customers based on date as parameters. i have to display info on customers within a date interval. however, everytime am selecting a range of date, all info are being displayed, even those not within th …

Member Avatar for prashant_0808
0
64
Member Avatar for cool5_1

. Write a console application to find the maximum number out of N numbers entered by the user. The working order is as follows: 1. The user says I want to give 10 Numbers 2. The program inputs 10 numbers from the user 3. The program displays the largest number …

Member Avatar for Nick Evan
0
244
Member Avatar for zuve_fox

hi.. I am using vb.net to build webcam capture (avicap) and success but i want to make selected area to capture/crop like rectangle.It can't display rectangle.how to make selected area display so i can capture image suitable with selected area? thanx

Member Avatar for arunvarapuzha
-1
101
Member Avatar for krockr

hello!! me n my team have decided to do project over GRID COMPUTING using .net .. i wanted to know is it possible to complete this project within a span of 3 0r 4 months.. because i got to know that its a major & a big project... plz guys …

0
37
Member Avatar for ayyappashrine

Dear friend, pls tell me how to burn cd using vb.net give me a very very simple pgm to write a line "hello how are you" in a file "mycdfile" into the cd/dvd already i tried to write the pgm as follows, provided my cd/dvd always opens in drive 'G:' …

0
49
Member Avatar for silambharasan

i do my final project IDE for HTML.In that i decided to create a environment which is in power point.that is if i code HTML in rich text box i save it in a file and i have a web browser in the same page in bottom which shows the …

Member Avatar for ithelp
0
96
Member Avatar for DGentry

I really see a huge need at our workplace for interactive websites. I want to get to the point of creating websites that can interact with Databases and pull data out as reports as well as input data via a website. I've looked at using Linux Apache and MySQL python. …

Member Avatar for DGentry
0
89
Member Avatar for kadilacgh

Hi am working on a project and am using sql server 2005 express as my database server, the problem is i can;t connect to the sql server from any machine on my local network (windows). Below is my connection string [CODE]con.ConnectionString = "Data Source=webserver1\SQLEXPRESS;AttachDbFilename='C:\POSM_DB.mdf';Integrated Security=True;Connect Timeout=30;User Instance=True;" [/CODE] It works …

Member Avatar for sknake
0
185
Member Avatar for joharasad

Hi i m new user in vb.net so i want plz u people help mee, i just want to conect my project to sql server database.

Member Avatar for sknake
0
162
Member Avatar for wiss.dev

i published a project from project properties. it creates an installer file but launching the application automatically, plus not promtting a save dialogue box for a directory . is there any other ways of doing it.............thanks

Member Avatar for jhpajiri
0
93
Member Avatar for bluem1

Ok, sorry to be so needy this week! Here is the situation. I have discovered how to do a linq query to get my data from my xml but when I return it as a string to a list box it is coming in as one large line. No breaks. …

Member Avatar for bluem1
0
130
Member Avatar for mashooka

I want to develop an HTML editor in vb.net for my B.C.A final project.Whether its worthy in this era and wil companies prefer these projects?

Member Avatar for mashooka
0
84
Member Avatar for bumassjp

Well basically I keep a null value returned code and I have the same issue in all 6 of my functions. Here is the error code - `Warning BC42105: Function 'GetTimesheet' doesn't return a value on all code paths`. A null reference exception could occur at run time when the …

Member Avatar for bumassjp
0
1K
Member Avatar for jlego

In the project properties, under public, there is a button that says 'updates' and look as to let you specify a path to an update file where the current application can compare its version information with the file in the remote update location determining if it needs to be updated. …

0
63
Member Avatar for tqmd1

str = "select sno,name,city from employees" dt = GetTable(str) Public Function GetTable(ByVal mstr As String) cmd = New SqlClient.SqlCommand(mstr, con) da = New SqlClient.SqlDataAdapter(cmd) dt = New DataTable da.Fill(dt) Return (dt) End Function How to display three columns sno,name and city in combobox Please help

Member Avatar for me655321
0
123
Member Avatar for tqmd1

These codes work fine to display data from listview to textbox. TextBox1.Text = ListView1.Items.Item(ListView1.FocusedItem.Index).SubItems(0).Text Is there any alternative codes for this purpose?

Member Avatar for me655321
0
123
Member Avatar for compusol

Hi Guys, Im trying to build an order form application that pulls information from a msaccess file. The form has 3 Textboxes labeled 1,2,3 etc The first one is a product code, the second a description. i would like to be able to type a product code into box1 and …

Member Avatar for me655321
0
87
Member Avatar for jonturlington

It gives an incorrect row count and the column count only shows 1. So when I try to handle the true number of columns in the CSV file it reports an OutOfIndexRange error. Any and all help would be greatly appreciated. Example Data: [QUOTE] "Name.ID","Type of Call","Name","Phone Number","Start Date","Server Log …

0
51
Member Avatar for jlego

in vb6 the most efficient/fast way to test if a variable/object was empty was to use [code] if lenb(x) = 0 then [/code] instead of using if x = "" in .net len(x) works, but is there a more efficient way?

0
71
Member Avatar for jlego

im trying to determine if there is an item selected on the listview.. i have a listview that displays customers name with a .tag that holds there ID. how do you tell if the tag is 0 or empty before executing code? in vb6 i simply did [code] if .lstwhatever.selecteditem …

Member Avatar for jlego
0
106
Member Avatar for groff

Hi all! Is that possible to use Crystal Reports 8 with VB2008 Express? Thanks in advance!

0
44
Member Avatar for brimble2010

Hi all, I am currently developing a webpart that works as a submit for many web parts at once. When the Submit button is pressed, it sets a session variable and then when the page is realoded, each form on the screen responds to this and calls their own Submit …

0
60
Member Avatar for chirup

i need help on how to move button over a panel from the form in which the button is created dynamically at run-time ?

Member Avatar for jason_debono
0
56
Member Avatar for 33infinity

I would like to be able to create images in either corel draw or word that I can just copy in vb design view like you could using the image control in vb 6.0 without having to store the picture as a file.

0
46

The End.