20,285 Topics
![]() | |
as the title states. Is there a way to determine if both datatypes are the same? | |
Team - HELP!!! I have broken my code and it can't get up! When I go to run my application within Visual Studio I get the dreaded "There are build errors. Would you like to continue and run from last successful build?" That build runs fine, but how do I … | |
I WANT TO EXTRACT THE 2 BITMAPS FROM WINDOWS VISTA'S WINLOAD.EXE.MUI FILE WHICH IS LOCATED AT C:\WINDOWS\SYSTEM32\EN-US\WINLOAD.EXE.MUI IN VB.NET 2008 ANY IDEA I KNOW THE NAMES OF 2 BITMAPS THOUGH have a look at here also [url]http://winprj.net/board/viewtopic.php?f=60&t=349[/url] | |
dear experts i have w big problem, i need to solve it as soon as possible, i have a link to a web site i'm tying to retrieve data from it but unfortunately i have receive an error in vb " The remote server returned an error: (400) Bad Request." … | |
How can I do the same thing with other shaped like rectangle? I know that I need x,y,widht,height but it still don't do my rec. Any ideas? | |
Hello Forum, I am having trouble retrieving data from a stored procedure that I have set up as a Data Adapter using VB.NET 2005. The Database is SQL Server 2000, and what I am trying to access is a simple Stored Procedure that will validate a users login access. Details: … | |
Excuse me if is a silly question... I call a Function to deploy a simple form (data from a table with just one record) DoCmd.OpenForm display form with first record data but CONTINUES excecution!! -Doesn't wait to get typing or clickling- [code] Function PedirDatos() DoCmd.OpenForm ("Asunto y Cuerpo email") Subjectline$ … | |
I am developing an application, that will display the status of various USB devices: USB Hub USB Bluetooth Radio USB Robotic Communication Radio USB Digital IO Module Misc USB I would like this application to monitor whether each of these devices is connected or not. And also, get the name … | |
Hi Guys, feel quite stupid with this one, been staring at it for ages. What to combine three tables with the left join sql. keep getting the syntax error in Join operation. [CODE]SELECT SubmittedTeam FROM (NETT LEFT JOIN NETT ON NETT.SubmittedTeam = Team.Team) LEFT JOIN tempDate ON NETT.Date = tempDate.date … | |
I have an XML here as follows, [CODE] <?xml version="1.0" encoding="ISO-8859-1"?> <countries> <country> <text>Norway</text> </country> <country> <text>Sweden</text> </country> <country> <text>France</text> </country> <country> <text>Italy</text> </country> </countries> [/CODE] And, I am trying to sort it without using XSLT, and I am not using this to edit the XML file. I only would … | |
I am using Visual Studio 2008 sp1 - VB.Net I have been working on an application for a while now that has printing for each of roughly 30 forms. All the printing up to now has been with text only, so no need to worry about color ink. I was … | |
I have a Crystal report it has dynmic information on page header when I export to excel, only first page header shows in excel. I am using asp.net visual studio 2008 sp1. if I export it to others format like pdf, word etc... its working fine lets assume page header … | |
Hi, I wonder if anyone on this list has tried to mix numerical variable, such as 1, 2,3 within an xpath expression. [CODE]songList = document.SelectNodes("/music_songs/song[category='" & drop1.SelectedItem.Text & "'][item_number_first<=position()<=item_number_last]") [/CODE] For some reason, item_number_first and item_number_last appear to have no value in the above code snippet, when they do have … | |
Hi, i've been working on a couple of vb.net projects, but i've been unable to make an executable project.is there a way i can go about this?? Please Help! Thanks | |
Hello all, this is my first post here on DANIWEB. I am looking for a way to display the directory of file opened with OpenDialog. I can get the entire path (including file name) using: TextBox1.Text = OpenFile.FileName The result would be something like C:\Documents and Settings\Administrator\Desktop\Test.txt What I am … | |
Ok, im using vb.net and a DGV to open a access DB. On load im filtering out everything except what was created on the current date. [code] Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'TODO: This line of code loads data into the 'Database1DataSet.Table1' table. … | |
i have data which i am receiving as xml files and i need to put the data in a database and then use it to create reports on a windows app using vb 2008 anyone who can help me ????? | |
Hey i am also facing the same problem. I have tried this but this is not working. please help me. [code] Protected Sub cmbParty_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmbParty.SelectedIndexChanged myConnection.Open() Adpt = New SqlDataAdapter("SELECT * FROM PartyMaster where Id = '" & cmbParty.SelectedIndex & "'", myConnection) … | |
Hello folks, I've written an application to send SMS through GSM mobile using AT commands. It's not working at all. Heres the code below. Can any one tell me what I have done wrong. Private Sub SendSMS() Try SMSPort.WriteLine("AT") SMSPort.WriteLine("AT+CMGF=1" & vbCrLf) SMSPort.WriteLine("AT+CSCA=""+9779851028801""" & vbCrLf) SMSPort.WriteLine("AT+CMGS= ""+9779841892897"" " & vbCrLf) … | |
Hi all. I've been working on a small program, and I need to get the Process ID by the name. This is what I have: [code=vb] Dim Processes() As System.Diagnostics.Process = System.Diagnostics.Process.GetProcessesByName(ProcessName) Dim Process As System.Diagnostics.Process = Processes(0) Dim id = Process.Id [/code] But I always get this error: [icode]Index … | |
Can any one give me code for finding size of my log file using [COLOR="Red"][B]VB.NET????[/B][/COLOR] Also I want the code to make my log file of 1KB only and not more than that. :'( | |
Hey All! I'm working on a project at the moment, where there are a variety of sections. Each section has its own window and WPF controls. Each window has a tab control, with tabs to 'View', 'Add', 'Edit' and 'Delete' records. The 'View' tab has a ListView which is populated … | |
Hi all, I'm trying to display the total extraction progress of a zip file as below. This gives me the total file size of all uncompressed files in the zip: [CODE] For Each backup In zip TotalSize = backup.UncompressedSize + TotalSize Next[/CODE] I'm then using this to get the current … | |
I want connect with other user through ip address and send them a message how it will don in vb.net | |
Hi All I am currently drawing up a database for contractor management. We have to keep an eye on when these contractors were inducted. The max term of an induction is 1 year. I have built a database and everything works EXCEPT when I want it to calculate the number … | |
Hello world of DaniWeb. If the title of this thread kinda looks complicated, believe me, it's not. This'll be a simple and straightforward question along with a piece of code attached to it. So, how can I determine whether a RichTextBox control contains text or not when functions such as … | |
Hey there..... I am working on VB.NET(Visual studio 2008)..I completed developing my application and i need to deploy the application. I tried it and faced problems in some areas like adding crystal reports to the setup and deployment. I created a setup file to my application and everything is fine … | |
i am trying to create a messagebox which brings up four random percentages which add unto 100%, i can create the messagebox with messagebox.show ("") but have no idea how to create the random percentages, can anyone please help me with this. | |
I have a insanely large file that has a lot of customer data in XML format. The start of a customer <CUSTOMER> and end </CUSTOMER> are how I'll determine the starting and ending points of the customer data I need to extract. The <DOC_NUM> is the number I'll be searching … | |
I have this code that gives me the user logged on name of a remote computer, but if i run the program in certaing computers, it returns with the error "Not Available Due Restrictions" which is set if the scope cant connect... why it connects fine in some computers and … | |
I'm developing a very simple VB app in Visual Basic 2008, where i have a textbox being dynamically updated with a value every second, i need this value to be inserted into a mySQL DB, i have made the connection ok but not too sure how to structure the VB … | |
I need to know how to show my search item in a data grid? There is error in grid display part. Can you help me to solve it? Imports System.Data.OleDb Imports System.Text Public Class mainpage Inherits System.Windows.Forms.Form Dim cn As OleDbConnection Dim cmd As OleDbCommand Dim cn4 As OleDbConnection Dim … | |
I need to know how can I get specific record there in report by passing string parameter from vb.net to crystal reports? For example - I have text box, button & crystalreportviewer there in my form. When user will use it he will write specific word there in the text … | |
hi all :) I am now working on a calculator that is mimic to windows calculator. I have the whole thing done except for the percent button. Have looked everywhere and cannot seem to find out how to do it! can someone help me here?? Here is a peek at … | |
Hello, I've made a Jeopardy game using VS2010 and I mistakenly made it as a .NET 4.0 project. I am wondering if there is any easy way to convert the project into a .NET 2.0 project so more people will be able to use the program. [URL="https://sourceforge.net/projects/ezjeopardy/"]https://sourceforge.net/projects/ezjeopardy/[/URL] | |
Please tell me about how i connect vb 2010 to ms access Thanks!!!!!!!!!! | |
hello all, I get the error : dt.PrimaryKey = New DataColumn() {dt.Columns("Title")} "These Columns are not unique" when I doubleclick a cell in my datagridview... Does anyone know what I have wrong? Thank you. [code] Private Sub DataGridView1_CellDoubleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellContentClick Dim con As … | |
I'm trying to implement a used disk space "Progress Bar" on a form similar to the Computer view in Vista\Windows 7. The closest I've come is the progress bar but this is rather restricted for example the colour cannot be changed. Has anyone found an alternative? | |
Hi all, i started programming with .NET (i have express edition) and wanted to make a conection to an SQL Server.. the problem is that i cant conect :( previously i had .net 2005 - i started having the issue there - i unistalled it, n installed visual studio 2008. … | |
Dear Freinds Kindly help me about these problems that what a coding for lock the form in runtime and user no adjsut form witdth or length 2)my 2nd question is that what the query if i want that the price of any other table come into current forms and match … | |
I'm pretty new with VB.net and I'm working on a project modelling the traditional FlashCard to learn words. What I want to do is to replace existing buttons and forms in Visual Studio with my own photoshop version. FYI, I'm not familiar with WPF yet but I'm willing to learn. … | |
hi,i want to know how to export sql server 2005 database to access through vb.net coding..no need to select n insert table one by one,just save package... | |
Hi, I have the following code that I would like to get working, but for some reason, it keeps giving me the wrong output, and I wonder if anyone on the list might be able to help me fix it. Here is the code, [CODE] Sub submit(ByVal sender As Object, … | |
Hello! I currently am enrolled in an intro to VB2008. I have done well thus far but have hit a snag on Chapter 5 programming challenge 4 on p350 of the 4th edition(yellow). I swear to you I have put probably 10 hours into this embarressingly and I am ready … | |
I am trying to set up some common dialogs but some how forgot how to do it. I have a menustrip set up just need to know how to apply a fontdialog and colordialog. Can anyone assit me with this, I need some help as soon as possible. I am … | |
Respected Sir/Madam, Hii Guys?I am harish here and i am just a starter in vb.net.I am interested to develop some applications in vb.net. So, I have to start things right from scratch i.e designing and coding etc... I need a sincere suggestion on what type of applications can i try … | |
Hi all i just wanna ask if any one can give me the related function with colordialog(vb.net) and if i can change backcolor of form with it?how? Thanks:confused: | |
hi there, how can i get the row index of the last row in the datagrid view in C#. i have a add button that adds a row to the datagrid view if the three cells in the datagrid view curent row is not null. when i try to add … | |
Hello Folks, I'm very new to programming. I'm work as an IT guy. I'm trying to create a stand alone app for general troubleshooting purpose. So here is my question. I managed to create scripts on generating System information etc. Now i need sripts to Export Event Veiwer Logs (Application … | |
Hi, This is my code. Here I want to retrieve return value of stored procedure. when I am executing this, I am receiving exception as string[1] string invalid index[0]. coding.. cmd.CommandText = "sp_dat_enc" Dim params() As OleDbParameter = {New OleDbParameter("@pVisitDates", r("visit_dates").ToString)} Dim ret_val As New OleDbParameter("@DataOut", OleDbType.VarChar) ret_val.Direction = ParameterDirection.ReturnValue … |
The End.