20,285 Topics
![]() | |
pls i need the different betwwen Vb.net and PHP looking in the are i listed Area Visual Basic .Net PHP (1)Variable definitions (2)Loops (3)Conditions (4)File handling | |
Hi, I have the code as in the following: [CODE] Sub submit(ByVal sender As Object, ByVal e As EventArgs) songNodesOut.Text = String.Empty Dim file As String = Context.Server.MapPath("alice_music_list2.xml") Dim document As XmlDocument = New XmlDocument() document.Load(file) Dim songList As XmlNodeList songList = document.SelectNodes("/music_songs/song[category='" & drop1.SelectedItem.Text & "']") Dim songDisplay As … | |
Hi... file with extension vb(*.vb) can compile to exe using vb.net coding. could everyone help me how to compile to exe using vb.net coding if use own extension(not *.vb) ? thanx | |
Is there a method for checking which roles a user has in SQL using SMO? I can add a role via: [CODE]user.AddToRole("Administrators")[/CODE] But cannot see an obvious method to progmatically list them. | |
Hello, I Have a Lag Problem With my Code My Snake Game It Will Move With Timer Tick 100 interval And Each Timer It Move It Will Use A Lot Of Code In Procedure It LAGGY My Touch Code Use This [CODE] Function Touched(ByVal obj1 As String, ByVal obj2 As … | |
Hi, I have a list of a few thousand names. I actually have last name, first name, phone number, etc and more info. I'm going to make a class to contain the data. so I'll have like a people object with for example a last name field. I'm going to … | |
Hi... I have one problem regarding how to check whether the record already have or not then do insert or update...I'm using firebird database....i want to pull all record from one table to other database . Here my coding but i'm get stuck to do insert or update...hope anyone can … | |
hi all is there any code converter from vb6.0 to vb.net.if it is Plz tell the exact | |
| |
Hey i have so far set up a form to save data into a database and i am using: [code] con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0.;" & _ "Data Source = F:\Database1.mdb" con.Open() [/code] I tried saving the database as i did with images in the resource folder and used my.resources but this … | |
Hi, i have a access database with two tables, one for customer and one for booking. I then have a form application i made in VS 2008 which lets a user enter details such as their name phone number ect into text boxes. All of the information the person enters … | |
Hi Everyone, How are we all? Im pretty new to vb.net but have worked with alot of vbs scripts. I have used vb scripts in past that prompts to change a computer name & joins it to a inputed domain name... i am currently working on little app in .net … | |
can I have 2 form share the same progress bar? If so how does this work? | |
I'm developing an application that generates mobile GSM numbers, but i need to find a way to make sure each generated number (e.g: +23408068576645 begin_of_the_skype_highlighting +23408068576645 end_of_the_skype_highlighting) is in use and importantly the CellID or location parameters of the number: the software is not a mobile app, but rather a Desktop app. … | |
hi there, i have a datagridview in that i have coded the CellBeginEdit. how can i attach the CellBeginEdit event in another function that i have implemented in C# ??? thanxxx | |
hi i designed an application in VS 2008 and i'm using .rdlc reports. My problem is when i deploy on the client machine and try to generate a report i get an error saying 'Operation must use an updatable query' then when i click the details See the end of … | |
Ok, for a small program im making, im using a VLC ActiveX Control and already have buttons to Stop, Play, Go to Next/Prev item, etc. Now im having problems modifying the VLC Control's volume, which I have set at 50. Here's the code i use for the Volume Down key: … | |
i am working on a game in vb.net which is designed to ask the user a set of questions which are stored in multidimensional arrays. the user can answer the questions by clicking one of four buttons. I currently have a set of buttons numbered 1-4, I also have a … | |
I want to know how can I get specific record to make report? For example I have student information there in my program. Its easy to create a report of all students. but if user wants to get & print specific record of a student what should I do? I … | |
I have recently made a database in MS Access that has a user-friendly GUI. Can someone please tell me how I can hide the Host Application [MS Access] so that when I run my database, the GUI gives the illusion that the database that I created is a stand alone … | |
Hi guys, I was wondering about something: is there a way to communicate with another program/process on the PC without using files? What would this look like? Is there a search term I can use to get more info? This is not a vb.net question per se, but a general … | |
Hi Friends Please help me to making A/C statment in crystal report i m tryng to make report but its not working i explain u to description of my project i have 5 tables in form Payment,Receivable,Expense,Sale,Purchase and now i want to make debit credit form and its work that … | |
Hi! I have five text boxes & one button there in my form. I have written this code to get user`s current age. But problem is that I have to get user`s age with months. I am little bit confused. Please help me. My code to get age : Private … | |
I have created a hotel booking system programme. However, I am puzzled as to how when the booking button is clicked it can search a database and find the best suited room (RoomType) and make sure that it is available (Date of Departure < system.date). This data is held in … | |
I want to chane the backColor of particular date.Mine code is only just bold the particular date,but not changing the BackColor. I have searched on internet,But none of them provide me the Solution. I Found the Below code thru net- [code] Private Sub Calendar1_DayRender(ByVal sender As Object, ByVal e As … | |
new to this form guys need some help When opening a button and opening a new form as soon as it opens it close for some reason but its not giving any errors as to why its doing this now i've checked the linked linking it to the next form … | |
Hi! This is actually not a question, but I want to share what I realized when I was doing some projects using DataGridView. I was a bit confused on what I should use for the cells whenever I check the value of a DataGridCell (e.g. [inlinecode]String.IsNullOrEmpty()[/inlinecode]). Before I usually do … | |
Hai frds, I am a final year B.E student.As i have to start my final year project by now,can you give me some valuable ideas regarding what topic to choose and in which platform that would score me high marks. Thanks in advance. | |
I'm trying to import all data from an Access DB using Visual Basic 2005. I'm new to Access and so far I can only import one record at a time. Any help would be appreciated!! Here is the code I have so far (obviously to bring one record at a … | |
Dear All, I want to connect to SAP and call RFC from VB.Net 2008. I have done it with VB 6.0 But not getting success in VB.Net I used following code in VB 6.0 ------------------------------------------------ Set ctlLogon = CreateObject("SAP.LogonControl.1") Set oConnection = ctlLogon.NewConnection oConnection.User = "SIILRFC" oConnection.Client = "777" oConnection.Password … | |
I have a dropdownlist that loads a list of users from AD. I need to retrieve selected user's properties, e.g. displayName and display it using a label. How do I do that? The situation is like I have a list of users is dropdownlist e.g. Paul. I select paul. Click … | |
I have design a window application form in 1440X900pixel resolution(which I dont aware of this could cause a problem). When I move this application to other PC with different resolution(or shows on a projector that only support low resolution), thing change nasty, all the control is out of shape. Any … | |
Hey - I've been given a gutted version of Minesweeper, and been asked to reconstruct it. I'm taking it piece by piece, and I've got some parts working. What I'm trying to get now is the 'Zone Clearing'. Just quickly: Zone clearing is when you click a 'blank' square, all … | |
My program performs a search on a specific directory and returns a list of files with specific criteria. When the user selects a file name in the list and Clicks the button, I want the program to open that file and print it. I have two functions - one store … | |
Hi, I'm trying to make a rather simple Visual Basic app with which I can update some tables within my MySQL databases. I've been following [URL="http://www.vbmysql.com/articles/vbnet-mysql-tutorials/the-vbnet-mysql-tutorial-part-3"]this tutorial[/URL] from page 3 on, as the first 2 pages where on how to initialize a local MySQL database. My MySQL database is on … | |
I Want To Search Date From .mdb Database file, Table Name is Purchase, and The Field is Purchase Date, its Type is DateTime and Formate is ShortDate in MS Access Database File, I Conceted it to Vb.net Form, and Tryed to Search Date, but it Returns Error. the Code to … | |
Hello Forum, I am new to SQL Server and have inherited a database from another developer. I have a Stored Procedure that I'm trying to use in my vb.net program to fill a form with multiple datagrids. The Stored Proc looks like this: set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go … | |
Hello guys. I'm building an application that connects to a SQL Server 2008 database via connection string. The thing is, since the computer loading the app (or the user, in either case) is outside the Active Directory domain, I can't use Windows Authentication to connect to the DB. But when … | |
hi, any one here can helpe me, i'm search how i can make a connetion of data base with acces | |
Hello, I am trying to develop a program that will open, print and then close the selected files from the listview. The printing needs to be done at the printer. There is a multibox which allows the user to select the printer . Currently, I can open the files and … | |
is there anyway to retrieve and list all the attributes for an active directory user to be used for updating with using the following [CODE] de.properties.contains(propertyName) [/CODE] Just wondering, quite a newbie AD programming, a little guidance thanks | |
Hello I'm building a small program like notepad and wanted to know how to make it save and load a file [CODE] Public Class Form1 Private Sub btnClear_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnClear.Click txtNotes.Text = "" End Sub Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e … | |
Hi, im trying to disable a button until anything has been entered into two text boxes simultaneously. So far i have tried: [code] If String.IsNullOrEmpty(TextBox1.Text & TextBox2.Text) Then Button1.Enabled = False Else Button1.Enabled = True End If [/code] However it doesnt work simultaneously, the button will become enabled if i … | |
Ok, I have a usercontrol in a Class Library Projects which contains a Button, 2 Listboxes, and a Progress bar. My code is to look for a file and if its there post to one listbox and fill in the progress bar and also put the programs current task in … | |
hi there, i have a datagrid view which has a combo box and 3 datagrid view text boxes.when the form loads the values form the database adds to the datagrid view combo box. when a value is selected the relevant information is begin taken from the database and displayed in … | |
I want to save Text box values in VB and retrieve.If you having any sample code please help me | |
hi guys. its been a long time but sincerely, am happy to be back. now i've got a problem on my mind and that is; am trying to develop a database application but i want it to be a console application. the major issue is that i dont know how … | |
Ok I have a program that has some web controls. When the user logs into the web system it loads in WebBrowser4 and their worklist comes up. I want to code the web control so if they click any link in the control it will load those links in a … |
The End.