Home All Groups Group Topic Archive Search About

Visual Basic .NET

microsoft.public.dotnet.languages.vb
Score Custom Controls with non-String Attributes
Nathan Sokalski - 24 Jun 2006 9:23 PM - 4 messages
I want to add attributes to my custom controls that are not of type String. I know how to convert from a String to the different types that I want, but when the user assigns values to the attributes using properties (assigns the ...
Score interrupting calculations
andreas - 24 Jun 2006 8:50 PM - 9 messages
When I do a long calculation is there a possibility to interrupt this calculation properly? For i as integer = 1 to 100000000 do something next and retrieve the i at the moment of the interrupting Thanks for any response ...
Score streamwriter
Pascal - 24 Jun 2006 6:04 PM - 6 messages
bonjour why chr(9) don't work in streamwriter : in the code : For lPointer = 1 To Val(txtWordCount.Text) 'w.WriteLine(aryListBox(lPointer)) w.Write(lPointer.ToString & ")" & aryListBox(lPointer) & ChrW(9)) Next thanks for help ...
Score Argument out of range exception
pcnerd - 24 Jun 2006 4:59 PM - 6 messages
I'm trying to create a program that plots randomly colored pixels on a bitmap & then displays the bitmap. When I run the program, I see the pixels being plotted down the left side of the form. When it gets to the bottom, the ...
Score Setup for Microsoft Visual Basic 2005 Express Edition
Pitaridis Aristotelis - 24 Jun 2006 11:42 AM - 3 messages
Is there any way to create setup for a project made in Microsoft Visual Basic 2005 Express Edition ...
Score Setup questions
Bob - 24 Jun 2006 11:09 AM - 8 messages
I want my aps to the insalled as was the old way under c:\Program files\Myapp or give the user the choice as before of installing the app in another folder location. That again no longer seems to be the default way things are done when you ...
Score How does this work?
william - 24 Jun 2006 2:36 AM - 8 messages
You guys are a great resource for learners such as I.  I have seen the way that you go  over and above in explaining even the most mudane things to beginners, and I think it is a great thing that you do here.  I only hope ...
Score Hiding MDI forms
Kevin - 24 Jun 2006 12:43 AM - 12 messages
I've got a timer on my MDI parent form. If there's no mouse movement for a set number of minutes, the Visible property of all open forms is set to False and the Log On form is displayed. I could do it in VB6. ...
Score REGISTRY - TemporaryInternetFiles
ngr - 23 Jun 2006 11:58 PM - 4 messages
I have three different locations where my Internet files are stored. For some reason - the registry is creating these Temporary Internet folders in c:\windows and the userfolder. Which registry entry is the correct one created by Windows Explorer. ...
Score Response.Redirect not being called after sending an email
Nathan Sokalski - 23 Jun 2006 11:16 PM - 3 messages
The last two lines of code in the Click event of a Button Control on my page are: Me.WelcomeEmail() Response.Redirect("mainmenu.aspx") The last line of code in Me.WelcomeEmail() is: Mail.SmtpMail.Send(mailmsg) When the Click event is triggered, all of the code in Me.WelcomeEmail() is ...
Score missing System.Security.Cryptography.Xml namespace
segue - 23 Jun 2006 10:59 PM - 4 messages
I have VS 2005, .NET 2.0, no girlfriend and this article: [link] Yet, I can't successfully import this namespace. System.Security.Cryptography.Xml. error message: Namespace or type specified in the Imports ...
Score change DataSet Row background color
martin1 - 23 Jun 2006 9:21 PM - 5 messages
Hi, want to loop DataSet to change row background color based on data retrieved from sql db, the color can be blue, yellow, red or purple. Therefore, Is there any way (vb.net) to change dataset row background color? how to loop ...
Score messagebox response enumeration
cj - 23 Jun 2006 8:36 PM - 3 messages
I see in VB.net 2003's help MessageBoxButtons enumeration, MessageBoxDefaultButton enumeration, MessageBoxIcon enumeration, and MessageBoxOptions enumeration but I don't see a listing of the responses.  What do I search on in the index to find them? ...
Score vb2005 - how to rehide Form constructor after exposing it? -not co
Rich - 23 Jun 2006 7:19 PM - 3 messages
Greetings, I observed that in VB2005 the designer generated code is hidden.  The initialize code appears to be stored in a different module than the Form's class module.  But the form's class module constructor is in the same module ...
Score Something tricky!
Dustin Davis - 23 Jun 2006 5:56 PM - 3 messages
I have an application that uses a TWAIN activex control. On one particular scanner driver, I have the option to do a pre-scan. After doing the pre-scan, my application receives focus again and looks like it is hanging because the pre-scan window is still open waiting for me ...
Score Global variables
Brian Cahill - 23 Jun 2006 5:08 PM - 6 messages
Hello, I am trying to create a variable when my form loads which can be used when I click my buttons.  Here is my code.  What am I doing wrong? Thanks for any help.     Private Sub Connect_Load(ByVal sender As System.Object, ByVal e As ...
Score Multilanguage support
Pitaridis Aristotelis - 23 Jun 2006 4:59 PM - 3 messages
I would like to make a multilanguage project such a way that I will be able to give a sample text file to various pepole around the world in order to translate it in various language. How can I make it in VB.NET without giving ...
Score numbers investigation
andreas - 23 Jun 2006 4:53 PM - 6 messages
Hi, I have to investigate many decimal numbers if they are integral or not and I know that max =99999,999.. What I do is : str = cStr(numbD) If str.length <= 5 then ... I wonder if this is the fasted method to do so ...
Score Mulitp app.config files in multiple project solution
Sam - 23 Jun 2006 2:58 PM - 3 messages
Hi All, I have a solution which consists of multiple projects and each of these projects has their own app.config file. The problem is that all of my projects in the solution pull keys from the app.config file from the main ...
Score Question about Datasets and ASP.NET
Ryan - 23 Jun 2006 2:07 PM - 8 messages
I'm in the process of learning more about building my ASP.NET website to use my SQL datastore and am a bit confused about how ADO.NET works with ASP.NET. This Microsoft article implies that using ADO.NET with ASP.NET applications ...
Score Re: Parse text into words?
Larry Lard - 23 Jun 2006 1:30 PM - 3 messages
Travers Naran wrote: Regex is overkill for this problem, and for gigabytes of text we need to think about performance slightly earlier than we normally would. No _lexical_ analysis is involved here - all we are doing is parsing. This seems to me to be the simplest approach: ...
Score Type xxx not defined #2
chaz - 23 Jun 2006 1:24 PM - 8 messages
Hi, * this class is defined in assembly XXXXClsLib :     Public  class VVDB : inherits DBFuncs     ... * Assembly YYYYFwApi has a reference to XXXXClsLib * this class B in YYYYFwApi  has an imports stmt :    imports XXXXClsLib.VVDB ...
Score Problems with structure in structure and DLL function call in VB.NET
Falko - 23 Jun 2006 12:40 PM - 2 messages
Hi there, I am currently translating a VB 6.0 application to .NET and have the following problem: The data structure I need to pass to a DLL function call has a structure variable inside its structure:     Private Structure CstData_type ...
Score get first 50 characters
John - 23 Jun 2006 12:39 PM - 11 messages
I have a string that is 100 characters long, I need to get the first 50, How can I do that in VB? I haven't coded in VB in years and I forget the syntax for it. ...
Score Problems with structure in structure and DLL function call in VB.NET
Falko Wagner - 23 Jun 2006 12:34 PM - 2 messages
Hi there, I am currently translating a VB 6.0 application to .NET and have the following problem: The data structure I need to pass to a DLL function call has a structure variable inside its structure:     Private Structure CstData_type ...
Score dataadapter and stored procs in design time
limsy - 23 Jun 2006 11:15 AM - 6 messages
Hi ppl, Sorry for asking such a NEWBIE question. I tried looking for answers but cant find. Maybe its too easy.   :( I'm used to manual code ADO rather than this .NET wizard and stuff... and i am really having hard time adjusting.  *cry* ...
Score Trying to understand API calls
Peter Newman - 23 Jun 2006 7:03 AM - 9 messages
Im running vb.net 2003.  Im still on a big learning curve with .net and like most people have great ideas on what id like a peice of software to do....  but lack the knowledge to do it ...
Score Visual Studion 2003 SP1 when will it be released?
Michael Barrido - 23 Jun 2006 4:42 AM - 5 messages
When will the Final SP1 for Visual Studio 2003 be released? Any info? ...
Score How to password protect a folder or similar
alekatz - 23 Jun 2006 4:04 AM - 6 messages
Hi, I developed an aplication for an autoservice Kiosk, witch will be rented to customers. I want to lock a folder where sensitive files will reside, something like a password. Encryption will not work because the files are many and  are big (25Mb aprox every file). ...
Score change progressbar bar color
iwdu15 - 23 Jun 2006 3:03 AM - 10 messages
hi, is there any way (vb.net 2003 or 2005) to change the progress bar color from blue to any other system color? im trying to change between 3 colors depending on a variable in my app. unfortunatly i didnt see any property or ...
Score Drawing vertical string
Adriano - 23 Jun 2006 2:25 AM - 4 messages
Hello, the following code draws 'top to bottom' vertical text, any ideas how to draw 'bottom to top' one? g.DrawString("This is a test vertical string", New Font("Tahoma", 8, FontStyle.Regular), New SolidBrush(Color.Gray), 100, 10, New ...
Score Yes/No ComboBox
Chris - 23 Jun 2006 12:36 AM - 15 messages
I have a need to have a combo box that just has Yes & No as it options.   This will be used everywhere in the application, so I thought I would make a control that inherits from combobox.  I am having trouble ...
Score Visual Basic 6.0 & Sql Server 2005 Compatibility?
Craig - 23 Jun 2006 12:35 AM - 2 messages
Hi All, We have a Visual Basic 6.0 application that we need to communciate with Sql Server 2005.  In the past we had to use the microsoft.visualbasic.compatibility.dll to allow this software to work with ..NET.  This application works fine with Sql Server 2003, but not with the new ...
Score If you connect to Oracle through .NET please help!
D. Patrick - 22 Jun 2006 11:53 PM - 10 messages
I need to connect to an Oracle database.   I've never done it before.   I see that with framework 1.1 you had to download ODP.NET from Oracle's site in order for the framework classes to even work.  I tried that quickly, but ...
Score Parse text into words?
jim_adams - 22 Jun 2006 9:10 PM - 7 messages
I need a very efficient way to parse large amounts of text (GBs) on word boundaries.  Words will then be added to an array as long as they haven't already been added.  Splitting on a space is a bit too basic ...
Score Find out child type in base class call?
roland.bali@gmail.com - 22 Jun 2006 8:39 PM - 7 messages
Hi, Here is the basic setup, my base class is Shoe which has a child class called Sandal. I would like to create objects by calling Sandal.Load. But without overloading Load in Sandal and sending the Sandal type to ...
Score Source object on right click
wxnut - 22 Jun 2006 8:17 PM - 6 messages
In VB 2005 I have six seperately named picture boxes (arranged in a table layout control) in which I plot different X/Y data lines. I would like to be able to right-click on a specific picture box (say, plot #3) and select a ...
Score variable declaration ?
rJ - 22 Jun 2006 8:09 PM - 7 messages
hi, what does the following statement mean and what does it do? Dim obTest As Record.Class1 = CType(Class2.GetSessionInfo(class3.TestConstant), Record.Class1) GetSessionInfo() simply does this Return Me.Session(name) TestConstant is a contstant containing "test.tester" What does me.session(name) do? ...
Score File association question
techspirit - 22 Jun 2006 7:58 PM - 3 messages
Hello , After installing the application, if I right click on the file associated with the application and select the option "Play", it only opens the application, but does not play the file. The files plays perfectly fine when I open the file from the application itself. ...
Score Directory.Delete
zacks - 22 Jun 2006 7:41 PM - 2 messages
I am trying to delete a directory with the Directory.Delete method, specifying True for the second parameter, to indicate all subfolders as well. But an exception is thrown indicating I do not have access to a file. Yet I can turn around and immediately delete the directory in the ...
Score App.config and changing connection strings
Bob - 22 Jun 2006 7:39 PM - 4 messages
Over the life of a distributed app, it is possible for the connection string that it was configured with initailly needs to change. You can't scope a connection string setting to user so that it can be changed easily by user for use with MY namespace. If it scoped to ...
Score disassembly tab?
cj - 22 Jun 2006 7:27 PM - 3 messages
Recently for no apparent reason VB 2003 has been opening a Disassembly tab along with Form1.Vb, Start Page, etc.  The Disassembly tab has in it Address and a text box followed by (Enter an address to view disassembly.)  Where is this coming from?  What is making it appear? ...
Score Line 1: Incorrect syntax near '1'.
martin1 - 22 Jun 2006 7:15 PM - 7 messages
I just use DataSet to bind DataSetGrid and display from SQL DB. when starting run in Visual Studio 2005, get "Line 1: Incorrect syntax near '1'" error message from below fill line, objDataAdapter.Fill(objDataSet, "mindata") any help is greatly appriciated. ...
Score Programatically create a Stored Procedure
darjonase - 22 Jun 2006 6:51 PM - 6 messages
Alright, so I am creating an entire database in code since I have no idea how to bundle a created database in an install of my application. I know how to create the database and the tables in VB.NET code just ...
Score Thanks!
h4xPace - 22 Jun 2006 6:48 PM - 4 messages
I have been looking for the correct way to use these API's FOREVER! I was wondering if anyone knows where I can get my hands on a complete list of the argument constants for CreateFile(). I seems like a saw a ...
Score Paramters passing and RunWorkerCompleted event
nt8jbwu02 - 22 Jun 2006 6:27 PM - 4 messages
I am trying to use the example at: [link](d=ide).aspx to update a control in a thread safe maner. The article shows a couple of ways to do so and indicates using the ...
Score Accessing Login info
Ryan - 22 Jun 2006 4:36 PM - 6 messages
I have a SQLDataSource I want to tie to the currently logged in user.  Is there any way to use User.Identity().Name as a Parameter in the datasource? The only way I've got this to work is by creating a label (label1) and ...
Score how to pass more than one value with client callback?
André - 22 Jun 2006 4:35 PM - 3 messages
Hi, I have to pass a lot of variables from vb.net to javascript using client callback. the problem is that there are single variables, but also arrays with differents indexes. I have two questions: 1) is this technology made for passing a lot of variables or in fact only ...
Score WebControl scrolling
Pitaridis Aristotelis - 22 Jun 2006 3:58 PM - 5 messages
I have to scroll the contents of a WebControl down to the bottom programmatically. Does anyone know how to do it? Aristotelis ...
Score Unicode API
Howard Kaikow - 22 Jun 2006 3:52 PM - 9 messages
Are the following equivalent? <DllImport("kernel32", CharSet:=CharSet.Unicode, SetLastError:=True)> _ Private Shared Function FindFirstFile _ (ByVal lpFileName As String, ByVal lpFindFileData As WIN32_FIND_DATA) As Integer End Function <DllImport("kernel32", CharSet:=CharSet.Unicode, SetLastError:=True)> _ ...
Score How to assign a state to checkbox in Visual Basic.net ?
aurora10 - 22 Jun 2006 3:04 PM - 8 messages
Hi, I have textfile with True or Flase in it and I need to read this file so that the value is assigned to a checkbox on the form. How can I do that ? Thanks:) ...
Score Dragging a control
Tull Clancey - 22 Jun 2006 2:50 PM - 3 messages
Does anyone have, or can anyone suggest a URL for code to drag a control around a form at run time?  VB.Net 2003. I have written stuff in VB6 to do this before, but a long time ago and I ...
Score Reference to a control, by its name in a String
Manekurt - 22 Jun 2006 2:49 PM - 5 messages
Hello to all, I need to change a property of a menuitem called for example A1 I have A1 in a String Varibale I need to accomplish this ------ Me.A1.Enabled = True ------ in this way ----- var_aname As String = "A1" Me.var_aname.Enabled = True ...
Score simple graphics question
Tim - 22 Jun 2006 2:33 PM - 6 messages
hi I used to do this Dim gfx As System.Drawing.Graphics = pic1.CreateGraphics gfx.FillEllipse blah blah blah to draw straight onto a form. but this is frowned up (slow). so what is the alternative? does this line make the new graphics in memory? ...
Score Making an email program
reidarT - 22 Jun 2006 12:56 PM - 3 messages
I have made an outgoing e-mail program (SMTP) with good help from different examples in VS 2005 VB. I wonder if it is possible to receive email as well. The customer wants only to use certain email (intranet users)receipients, to avoid spam and other ...
Score Executing a stored procedure that uses linked server from vb.NET
Mikael.Bergstrand - 22 Jun 2006 12:52 PM - 5 messages
I can't execute my stored procedure from .NET (I think it might be because the stored proc has joins in it via linked servers). I get timeout error from .NET MyBase.connString ="Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=DB;Data Source=Server;" ...
Score putting a line on my form
cj - 22 Jun 2006 12:39 PM - 17 messages
Back in VB4 there was a line tool in my toolbox that allowed me to put a decorative line on the form somewhere.  Does VB.net 2003 offer this? It's not in the toolbox and I can't find it in the list to add to the ...
Score Visual Studio 2005 Pro
JJ - 22 Jun 2006 12:21 PM - 5 messages
I've just installed my new Visual Studio 2005 Pro, after realising that the web express edition didn't do all I wanted. I was surprised to see that no product activation was required. Why is this? Have I installed it wrongly? I assumed all new product would require ...
Score LINQ feedback
guy - 22 Jun 2006 11:44 AM - 3 messages
i am thinking of using LINQ in my next project (my use only) and am looking for feedback. 1/ how usefull is it in practice? 2/ how robust is the current beta? 3/ what is the performance like? 4/ any other comments on it? ...
Score I'm tring to copy complete row from datagrid
Danb - 22 Jun 2006 10:00 AM - 3 messages
Hi All I'm tring to copy complete row from datagrid ...
Score VB6 vs VB.NET
Uri Dimant - 22 Jun 2006 9:29 AM - 4 messages
Hello Does anybody know how to call VB6 Form from VB.NET (VS2005) Application ? Thanks ...
Score Should move to next control with return-key AND tab-key . HHow ?
Peter Stojkovic - 22 Jun 2006 9:21 AM - 3 messages
I need a idea how to program the following. I have a control inherited from textbox. The differnce should be, that the cursor will move to the next control , when the user presses the TAB key or the RETURN key. ...
Score Broken property panel
NickP - 22 Jun 2006 9:06 AM - 4 messages
Hi there,     For some reason the property panel in the Visual Studio .NET 2005 - Visual Basic form designer is not showing the properties for any controls. It just remains blank.  It's only doing it for 1 solution that I am using, ...
Score Newbie Q: Serialization and Me
Simon Woods - 22 Jun 2006 9:02 AM - 5 messages
Hi I'm just beginning to learn VB.Net so if this seems dumb, please forgive me. I have 2 objects and I want to make a deep copy of one into the other. I effectively want to clone an object into Me. (I'm also looking to learn about serialisation). ...
Score datetext
shif - 22 Jun 2006 8:31 AM - 7 messages
Hi How can i customise textbox control to feed date in the format "dd/mm/yyyy". ...
Score How to convert windows from VS.2003 to VS2005
Peter Stojkovic - 22 Jun 2006 6:38 AM - 4 messages
In VS.2003 all information was in one file example: form1.vb Now in VS.2005 the source-code is splitted into two files. I have a lot of windows. Is there any possibility to automatically split the old windows into two ...
Score Help converting C# code to VB
Phill - 22 Jun 2006 4:17 AM - 5 messages
I am trying to convert the following to VB: Imports System.Data Imports System.Data.SqlClient Imports System.Net Imports System.IO.Stream             'Get the stream containing content returned by the server. ...
Score What do I load ?
Tony Girgenti - 22 Jun 2006 12:21 AM - 6 messages
Hello. I'm trying to develop a web comsuming client using VS.NET 2003(VB), .NET Framework 1.1.4322, ASP.NET 1.1.4322, WSE2.0 on a WinXP Pro Sp2 comuter. If i comsume this web service: https://xatanet.net/xatanetwebservice/tripexportservice.asmx ...
Score String parameter dll function
Wyz - 21 Jun 2006 9:32 PM - 4 messages
Hello. I have troubles giving me a big headache, I hope somebody may help me. I'm using Indy.Sockets to have FTP support for my VB.NET application (I also tried with another dll made in C# but the trouble is the same). ...
Score Vb 2005 equivalent to VB6 CreateObject
Terry - 21 Jun 2006 9:19 PM - 10 messages
Based on the documentation that I have found on this subject, I am trying to use ‘Activator.CreateInstance(string, string)’ for a replacement for CreateObject, but I don’t seem to be able to get it to work.  Let me explain ...
Score How to strip XML from a webpage
james - 21 Jun 2006 7:51 PM - 3 messages
Hi, I've written a small application that  reads Weather data from a couple of different websites (depending on the user's choice) and then scrolls the data ( current temp. forecast etc.) on the system tray. The problem I am ...
Score storing unicode in byte array?
grawsha2000 - 21 Jun 2006 6:22 PM - 6 messages
Hi, I'm trying to save unicode chars. in byte array.  The problem is when I try retrieve the saved chars back from the array I get different chars from the one I saved. Code: dim uni as system.text.encoding=encoding.unicode ...
Score Pass byte array from vb.net to unmanaged code
RGarg06 - 21 Jun 2006 6:06 PM - 2 messages
Hi, I am trying to read a buffer from a file and then pass that buffer to a C++ dll as follows. While debugging it tells me that byte array received is a Bad Ptr. Any help will be appreciated. ...
Score Using VS 2005
tshad - 21 Jun 2006 5:08 PM - 6 messages
I have someone at work starting to look at converting our 2002 projects to 2005 and had quite a few problems with the project. I thought you could use either 1 or 2 file (codebehind) method. But when I create a project, I can't seem to find a place to make that ...
Score Q: Cancelling a combo dropdown
G .Net - 21 Jun 2006 4:03 PM - 3 messages
Hi Is there a way to prevent the combo displaying its list of items when the "combo arrow" is clicked? The problem I'm trying to resolve is that depending on a Boolean value, which is set according to other items on the form, I want to prevent the ...
Score Object reference not set to an instance of an object error
bill - 21 Jun 2006 4:00 PM - 10 messages
I keep getting Object reference not set to an instance of an object error when trying to run my application on an installed client machine.  I installed it on several others and it runs fine. I tried installing .Net framework 1.1 on the clients machine that is getting the error but the error remains. ...
Score my challenges with merging 2 Regex.Matches
D. Patrick - 21 Jun 2006 3:57 PM - 5 messages
I'm trying to find all occurrences of either: <font color="red">Smith</font> or <font color="blue">Smith</font> inside strIn which contains a lot of HTML and lot of possible lines like ...
Score Schema Information not found in web.config
Ryan - 21 Jun 2006 3:24 PM - 3 messages
I'm getting tons of these messages and it's from the default web.config file created by VB 2005.  I have a feeling the link is incorrect.  Anyone know what it should be? <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> ...
Score Printdocument.PrintPage cancel current printpage
Coen - 21 Jun 2006 2:57 PM - 3 messages
Hi, can anyone tell me how to cancel the printing of the current page while in the Printdocument.PrintPage event. I don't want to cancel the whole printjob! I need this for printing only the user defined selected pages or the from/to ...
Score ASP.NET profile database
Ryan - 21 Jun 2006 2:49 PM - 3 messages
Ok I'm made an ASP.NET site that uses roles, etc.  I want to store all the user information in a SQL Server database rather than the local .MDF file. I've created and registered the database using aspnet_regsql.exe as per this ...
Score User Control
Lou - 21 Jun 2006 2:12 PM - 9 messages
How do I create a User Control or .dll in VB .Net to be used in VB6? -Lou ...
Score main menu style
cj - 21 Jun 2006 12:58 PM - 3 messages
How can I make the mainmenu look more like a bar?  I think it needs the line below it or border or something.  It just looks like a row of words at the top of the form--indistinguishable from other form items.  But I ...
Score GDI+ question
Adriano - 21 Jun 2006 11:45 AM - 3 messages
Hello! help anybody please with this simple task using VB.NET: I have an image having size 320x240 at "C:\myImage.JPG". I want to put some text, say "Hello World!" (arial 20, red) somewhere on the image and save it as "C:\myImage1.JPG". ...
Score c# to vb.net conversion
mcateer77 - 21 Jun 2006 10:17 AM - 10 messages
This is driving me insane! I'm trying to solve "The underlying connection was closed" issue when using WSE 3.0 in VS2005. I'm trying to convert the following c# code to vb.net: (This is from: [link]) ...
Score using a stream to access a ftp file
frakieack - 21 Jun 2006 8:43 AM - 2 messages
Hi, i need to use, in my classes, a stream to open a file on another pc via ftp. Does somebody know how to do it? ...
Score problem 1 - debugging guids
guy - 21 Jun 2006 8:31 AM - 5 messages
vb2005 webforms app in my app i have a guid (it is used as a primary key) when i debug the app if i hover over the guid, or look at it with quickwatch it always shows as being empty even though it is not. I know it is not empty ...
Score Book recommendations for VS 2005
Cerebrus - 21 Jun 2006 7:57 AM - 4 messages
Hi all, I have an issue with which I need your advice. I am an MCSD.NET on VS 2003 and would like to learn VS 2005 now (or more specifically VB 2005). (Yes, it's late, but better late than ...
Score Authenticating to a service
GM - 21 Jun 2006 7:36 AM - 2 messages
Hello, I need ideas, concepts to realize the following things: I have a service (vb.net) running on a workstation communicating with a client application. The data flow does not need to be encrypted, but it must be validated that ...
Score Datagrid in VB.net
Rupesh - 21 Jun 2006 4:45 AM - 2 messages
hi all, i am working on datagrid, i need to capture the row in datagrid whenever we have double clicked on it. plz guide how to do that thanks & regards Rupesh ...
Score runtime interop exception
m.ra. via DotNetMonster.com - 21 Jun 2006 4:38 AM - 2 messages
hi ive written a database management application and am trying to deploy the same. the program works perfectly on my machine - a windows xp (home edition) with office 2002. (i also compiled the program on the same machine) the machines im trying to install the application on, are a windows xp ...
Score using the Point object
pcnerd - 21 Jun 2006 3:41 AM - 6 messages
I want to create a program that will do graphics like math functions & fractals & stuff. I've been browsing thru books at the bookstores. Apparently, the Point object replaced Pset. The books explain how to create a Point object, but not how to use it. I want to be able to plot individual ...
Score Button event
Art - 21 Jun 2006 2:15 AM - 4 messages
Hi, I've got a main module that instantiates a form and then does form.showdialog. The form has a button.  I want the main module to respond to a click event from the button.  I'm having trouble. ...
Score Updating a dataadapter
mfleet1973@yahoo.ca - 21 Jun 2006 12:43 AM - 3 messages
Hi Gang. I'm using VB.Net 2003.  In the following code I'm updating the dataadapter with a new record added to the table: OleDbDataAdapter1.Update(DataSet11.GetChanges, "Table") However, when I add another record and update the dataadapter again, ...
Score TreeView Control
Dennis - 21 Jun 2006 12:43 AM - 3 messages
Does anyone know how to set the TopNode in the window either by scrolling the treeview control programatically or someother means.  The control has a TopNode property but it's read-only (don't know why M'soft couldn't have made ...
Score get the month (number) and year value from a date
Aussie Rules - 20 Jun 2006 10:17 PM - 4 messages
Hi, How do I extract just the month part of a date. Say for example I wanted to get the value of  6 (as in sixth month) from todays date. Regards ...
Score HOW Change Password
Xnet - 20 Jun 2006 9:55 PM - 4 messages
I need to change password of a local user of a W2003, without Active Directory. I need to do it from an application created with VB2005. Thanks! ...
Score Password Protect
Miro - 20 Jun 2006 8:37 PM - 4 messages
Why Password protect an MDB when someone can google and get a hack? Wondering if anyone else has thought of this and just said "oh well"... I plan to password protect an MDB where I have some system/program variables ...
Score Using .NET user controls into VB6
emferrari - 20 Jun 2006 8:31 PM - 3 messages
Hi I just developed a small form in C# to use inside of my old VB6 programs. My first step was to build a new WindowsControlLibrary project and add the usercontrol to it. It compiled, a DLL was built, and by setting the "Register for COM ...
Score Limit ComboBox entry to ipaddress format
nt8jbwu02 - 20 Jun 2006 8:27 PM - 4 messages
I would like to allow a user to enter an ip address (quad octet format: [link]) in a combo box and then add it to the list when they have completed the entry. How can I do this? ...
Score XML WebSvc Proxy Code Syntax Questions
rJ - 20 Jun 2006 7:58 PM - 3 messages
I performed wsdl on SQL2000 reporting service and have a question regarding the following proxy class.  Right before render procedure declaration you have code that looks like html or xml.  What is this, how does compiler and application interpret at run time, and how do I read it and understand what ...
Next » 2 3 4 5 6 7 8 9 10