20,285 Topics

Member Avatar for
Member Avatar for tanvirahmad

Hi experts I m using Hindi font In a text box, these textbox has a value [B][U]"uxn ¼dS'k½"[/U][/B], when I use select command for searching "uxn ¼dS'k½" value, it's show error. I know this error is showing for ' which is in "uxn ¼dS'k½" , how to search m I

Member Avatar for kvprajapati
0
66
Member Avatar for pritesh2010

Many of the student don't know how to find connection string, if they find then there will be some mistake. it's a simple idea to find connection string try it. and vote for it how to find connection string of any database or any server like, access or sql or …

Member Avatar for etftw
0
1K
Member Avatar for preeti_3617

hi...Im doing M.Sc.(last year)....can you suggest me a research project.

Member Avatar for finito
0
58
Member Avatar for tycham

I have a database set up in Access. Currently I have 12 exact copies so individuals can enter data. We use the data to fill in multiple forms. I know that VB can be used to allow everyone to access one database. Does anyone have this as a runtime module …

Member Avatar for nayak_1983
0
95
Member Avatar for Lee21

guyz i need your help..i'm still developing my project bout evaluation of employees. I'm using the code below,I want to multiply the values of the two specific row/column inside my datatable and then insert the product in the KPIGRDEQUI field in the KWEEKDTL table.Is it possible to be done? please …

Member Avatar for kvprajapati
0
106
Member Avatar for Dmlang1985

Does anybody out there know of any VB.Net tutorials regarding pulling and adding records out of a sql database? I am trying to figure this out on my own, but I just need an example program to show me how to do it. I have figured out how to connect …

Member Avatar for kvprajapati
-2
213
Member Avatar for Ryoolol

Hi, I am working on an application to post some news on Twitter using VB.NET, it's all fine so far but I'm wondering how I'm going to keep it up 24/7. A friend told me I should look into buying a VPS but most seem to be for web hosting …

Member Avatar for kvprajapati
0
116
Member Avatar for flasy12

well im hereagain with another question how do make a league table in vb 2008?? i want it to show this: Position| Team | Games | Wins | Loses | Ties | Goals in Favor | Goals against | Points its for a simulation app so it will have to …

Member Avatar for kvprajapati
0
92
Member Avatar for Anigmalee

Since Visual Basic 2008 Express Edition have no Crystal Report template included. Is there Other way to show Report/Log data similiar way? Maybe by MS Excel? Or MS word? Any hint or Idea will be wellcome^^ many thanks.

Member Avatar for Anigmalee
0
122
Member Avatar for dakaboguy

I have binded a textbox to a column in a SQL Server 2005 Database, when i fill the dataset it displays the data, but when i click the save button it doesn not save the changes to the database. I used this same code to do a Datagridview and it …

Member Avatar for dakaboguy
-1
234
Member Avatar for b89smith

I am trying to write an application that monitors internet usage. So it sort of needs to act like a firewall/proxy, recording each site the computer goes to. It will record all these sites in a log file. Using a proxy server on the network is not an option, each …

Member Avatar for Luc001
0
153
Member Avatar for PDB1982

I am having some trouble drawing a circle that is constant when the program runs. right now I am able to create one of my clock hands (that is going counterclockwise), but I can't figure out how to draw the circle of the clock..any suggestions? [code] Option Strict On Imports …

Member Avatar for Luc001
0
181
Member Avatar for G_Waddell

Hi Folks, I wonder if anyone knows what is happening here because I'm very confused... I have some nested repeater that I'm using to display a list of Categories, projects and tasks on my ASP.net site written in VB.net i.e. Repeater 1 Category Repeater 2 Project Repeater 3 Task In …

Member Avatar for G_Waddell
0
358
Member Avatar for dre-logics

Three one questions about releatie in MySQL with Visual Basic 2008. How can i use Mydatapter1 over again and over agian (see code)? So that i can fill [COLOR="Green"]three datasets[/COLOR] I want to fill three datasets with tree different tables and use them in my program [CODE] myCommand1.CommandText = "select …

Member Avatar for dre-logics
0
215
Member Avatar for Anigmalee

Hi, I had a form ([B]says form A[/B])with control on it, 2 buttons with text "View Process Flow"([B]Button1[/B]) and "Manual trigger Process"([B]Button2[/B]). Both button will load and shows Form A in [B]Panel1[/B] in Form1, but button1 will let user to see the action but block them on clicking on it, …

Member Avatar for Anigmalee
0
172
Member Avatar for grafiksinc

Hello All, I have a Web Application I am developing that has a GridView. I have searched the internet to no avail looking for an answer to this. The gridview has 11 columns. I want to hide the 11th column while in normal mode and make visible while in edit …

Member Avatar for grafiksinc
0
134
Member Avatar for Abey_2010

Hi, I have designed a front end screen for a simple login page with two fields username and password in ASP.net/VB.net. I want the data that I enter into the textboxes to be populated into the database, on click of submit button and a confirmation message like 'Your data has …

Member Avatar for b89smith
0
108
Member Avatar for trpsjt2008

I use [CODE] Shell("explorer Path")[/CODE] Path is Directory But it Open My Document Path is D:/ I think It because The syntax "explorer Path" i try a lot like shell("explorer" path), shell(explorer path) , shell(""explorer" path") but it always open My Document

Member Avatar for trpsjt2008
0
100
Member Avatar for David Mac

I'm not sure this is really the right place for this question but I couldn't find a general programming forum. Why are the numeric values -1 and 0 used to represent the logical values TRUE and FALSE? No particular reason to ask this, I'm just curious! David

Member Avatar for David Mac
1
129
Member Avatar for royaloba

hello every one, i just want to know if it is possible to install . NET into Mandrake Linux server.. thanks..:confused:

Member Avatar for kvprajapati
0
96
Member Avatar for flasy12

well ive been trying to make an app in VB 2008 Express Edition so that every time my timer ticks it randomly adds a number like it either adds 1 or nothing but having trouble with it since it just does it one time this is my coding for the …

Member Avatar for flasy12
0
89
Member Avatar for bghodsi

Hi Folks: I am still having trouble moving data between sql and ms access databases. Has anyone got any idea? Bob Ghodsi

Member Avatar for finito
0
49
Member Avatar for HappyMe

I'm using verion 3.5 of the .NET framework I have a form with a number of controls including text boxes. All my text boxes are named in the style txb_name, can I search for controls with txb in their name? The following code doesn't work: [code] For Each tb As …

Member Avatar for HappyMe
0
76
Member Avatar for PEFCa

If I had 5 text boxes on a form, TextBox1...TextBox5, is there a method to do something like this? [code] Dim strFld As String For intFor = 1 to 5 strFld = "TextBox" & intFor Me(strFld).Text = intFor Next [/code] It doesn't like the line of Me(strFld) but I figure …

Member Avatar for kvprajapati
0
154
Member Avatar for delizihin

I'm trying to create a messenger-like program, which user will enter an IP adress and connect to another user and send messages with a send button, and receive and view messages at a textbox. But my problem: "The target machine actively refused". I'm trying to connect myself for testing using …

Member Avatar for kvprajapati
0
273
Member Avatar for Brandrune

Hello Community, I need some help on where to start with this project I am doing. Firstly, I wish to import all the computers listed in active directory into a list view. Then I want to run an Group Policy update on machines which are focussed on. (GP update = …

Member Avatar for kvprajapati
0
52
Member Avatar for Big-D2xL

Hello y'all. Here's the thing I'm not the brightest guy when it comes to vb.net but I'll do somethings. My question/problem is that I want to have a little zone in my program that has a kind of list , e.g. a panel with 100x50 with a scroll and inside …

Member Avatar for Big-D2xL
0
92
Member Avatar for purplepom

Thanks for this posting, very useful. I have used the above code, but had to make one minor (but important) change. I happened to be using text containing backslashes, which threw the RTF out. This was overcome by modifying the main InsertLink function to escape RTF special characters first: [CODE] …

Member Avatar for kvprajapati
0
146
Member Avatar for jafarkottayil

i have an error when executing this ExecuteReader: CommandText property has not been initialized

Member Avatar for kouroshnik
0
80
Member Avatar for Sailor_Jerry

I have a DataGridView which I AllowUserToAddRows behavior enabled. I want to be able to force that only one row be added at time, then if the user clicks the save button the row is inserted into the database, and then another row may be added if the insert was …

Member Avatar for kouroshnik
0
686
Member Avatar for TheSaboteur13

Hi I want to add the table names from a database in sql server to a combobox with vb.net windows programming. Its a customer accounts database where for instance I add a new Account holder which creates a new Table and when I want to view a specific account holder …

Member Avatar for kouroshnik
0
264
Member Avatar for detoxx

I hope you can help me. I'm working on a program that will open any Access database that might be on the system. The problem I'm having is that I cant get get the SQL statement to show all the tables within the database. The code im using is as …

Member Avatar for detoxx
0
107
Member Avatar for ameltei

Hello, I need help with something it drives me nuts. I have an application which send XML to a web server through a POST method. This part works excellent. But where I have issues is with receiving the standard response from the web server for OK or error. Instead of …

Member Avatar for ameltei
0
4K
Member Avatar for tweakernut

I have been working on a project for a while now for a secure application launch-able via a internet browser. I have come to terms that it needs to be somewhat similar to how steam does it "steam://appid/7510" Is there any way this can be done? Any help is much …

0
21
Member Avatar for wish4129

Hi guys, i would like to ask is there anyway to read a txt file with UTF-8 encoding using streamreader or filestream. the txt file is contain some extended ASCII that makes me cannot read the characters properly. I hav tried Encoding.ASCII.GetString(Encoding.UTF8.GetBytes()) but still it return wrong character when it's …

Member Avatar for biopaul
0
154
Member Avatar for cellus205

Hey guys, I need some help with the logic on coding a checkbox column on a Datagrid on a Windows Form. What I want the Datagrid to do, is once the checkbox is checked on the Datagrid, to enable several other columns also on the Datagrid. I think I almost …

Member Avatar for cellus205
0
142
Member Avatar for emaduddeen

Greetings Everyone, In the TableAdapter configuration wizard I am using this query: [CODE] SELECT AttendanceID, StudentID, ClassId, DateOfClass, Absent FROM Attendance WHERE (DateOfClass BETWEEN #5/1/2010# AND #5/30/2010#) [/CODE] Can you tell me the correct syntax to change the #5/1/2010# AND #5/30/2010# so the WHERE clause uses dteStartDate AND dteStartDate which …

Member Avatar for emaduddeen
0
373
Member Avatar for matt.clark.228

When LiteScribing a disk, the CD drive uses back-emf to determine the exact position of the cd, would it be possible, to using the CD drive on my laptop with the drive open, read back-emf to use it as a "DJ Table" to be able to scratch songs and such? …

0
62
Member Avatar for tanvirahmad

Hi experts i m using this code for create new table and add data in this table from old table, but i need to sort or filter my old table before adding new table, how i can this?[code]Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click 'Create …

Member Avatar for kvprajapati
0
109
Member Avatar for speedingbullet

Hi, I'm new here, but I am relatively experienced with vb.net. I am currently creating a program that outputs an image, but the image being outputted consists of text and other graphical elements. So the text element would look like: [CODE]graphics.DrawString(text, variable, variable, variable, variable)[/CODE] My problem is that I …

Member Avatar for kvprajapati
0
108
Member Avatar for trpsjt2008

I Make Encode Text Program Then I use Function [CODE] TextBox2.Text = Passed(Microsoft.VisualBasic.Right(nowvalue, 5)) & " " & TextBox2.Text [/CODE] And It tell This Error [CODE]Operator '&' is not defined for types 'System.Drawing.StringFormat' and 'String'.[/CODE] Why "&" is caught in function but it seperate from "()" First And My Code …

Member Avatar for kvprajapati
0
88
Member Avatar for CipherPol9

[TEX]Hello[/TEX] [ICODE]How do i use truncate in vb 2008? [/ICODE] my database its in Access and i want to implement a truncate table in vb but i don't know how to do it. Plz Help me With complements CipherPol9

Member Avatar for kvprajapati
0
35
Member Avatar for ukshir

Hi, I have a custom control. I need to add a property, say, Comparison, to the control. The property should be set at design time using a dropdown. The Dropdown will have String values like '=','>','<' etc. I tried using Enum values and working perfectly but I need to do …

Member Avatar for ukshir
0
129
Member Avatar for needanswer

I have 1 tabcontrol with 2 tabpages, each tabpage with 1 datagridview (different tables for each), I load these 2 databases on the form load: [ICODE] Me.AnndepTableAdapter.Fill(Me.HonorDataSet2.anndep) Me.SysdepTableAdapter.Fill(Me.HonorDataSet.sysdep) Dim sql1 As String Dim con1 As New OleDbConnection("Provider=Microsoft.Jet.Oledb.4.0;Data Source=C:\Users\user\Desktop\honor.mdb") con1.Open() sql1 = "SELECT * FROM sysdep" Dim adapter1 As New OleDbDataAdapter(sql1, …

Member Avatar for needanswer
0
419
Member Avatar for discovery-power

Hi All, I dont quite understand why this wont work i was hoping someone could help, I have got a noughts and crosses game and its all finished appart from the checkdraw sub routine i forgott to write in, so I wrote it out as below: Private Sub CheckDraw() If …

Member Avatar for discovery-power
0
87
Member Avatar for marawangy

Hello please i need a simple phonebook program using vb.net 2008 and access 2007 using ado.net with add , edit . delete buttoms

Member Avatar for Luc001
0
171
Member Avatar for sathya_k_83

Hi , can u help with a code to convert to get a data set & convert the values in a table to .csv file which can be viewed in a Excel sheet how to create an .csv (comma separated) file using an VB.net programming ie converting data in a …

Member Avatar for kvprajapati
0
1K
Member Avatar for tashiDuks

HI Everyone, I have designing a desktop application with SQL SERVER 2005. I have one form where user can take a full backup of SQL Database in one File. I have following controls : 1. txtSQLServerName 2. txtSQLDBName 3. txtSQLSQUserID 4. txtSQLSAPassword 5. txtBackupLocation 6. btnStart 7. btnCancel When user …

Member Avatar for kvprajapati
0
142
Member Avatar for lunaluni

i have a textbox to upload .csv file. after i click upload it insert the .csv file into sql server database how to insert .csv file using vb.net into sql server

Member Avatar for lunaluni
0
1K
Member Avatar for kseling

i can't find any other posts on this, so.... i have a site hosted at godaddy and i'm using vb.net in dreamweaver to make my solution. i can connect to the database at godaddy by using the database connection wizard in dreamweaver, but i can't get my pages to use …

Member Avatar for kseling
0
102

The End.