Home All Groups Group Topic Archive Search About

Visual Basic .NET

microsoft.public.dotnet.languages.vb
Score Menu - Eliminate The Triangular Arror pointer thing - How to do it?
empire5 - 13 Jan 2007 10:48 PM - 10 messages
I want to eliminate the little triangular arrow poinger that appears tot he right of the menu item. Which control setting lets me do that. ...
Score Logical Mistake
Anna - 13 Jan 2007 2:27 PM - 2 messages
Hi: In the listbox name lstOpenAccounts there are three hundred values. In another listbox name lstseldist there are two values but it could be three or four. Assume from the first listbox name lstOpenAccounts I select 150 Accounts and in the second list box name lstseldist there ...
Score Programmatically modifying the controls in FormView's PagerTemplate
Nathan Sokalski - 13 Jan 2007 9:02 AM - 3 messages
I am trying to create a FormView controls in which I access and modify the the controls in the PagerTemplate programmatically. However, I continue to recieve the following error: Object reference not set to an instance of an object. I am attempting to access the controls in my PagerTemplate using the ...
Score how to read image from database and store in file
androoo - 13 Jan 2007 7:10 AM - 3 messages
Hi all I am reading an image from a database (foxpro) and now want to write it out to file... I have found hundreds of articles on saving a file to the database bu none on how to extract and save to a local drive. ...
Score Hide property at runtime.
Ray Cassick - 13 Jan 2007 5:57 AM - 3 messages
I am looking for a way to hide a property I created on a user control from a property grid at runtime but allow it to be seen at design time. Any ideas? I tried setting the category of the property to 'Design' and that does not ...
Score DataGridView ComboBox lookup question
Chris Hlade - 12 Jan 2007 11:49 PM - 3 messages
I am trying to do something that I would think would be easy. I have a dataset that is filled from an XML file.  For simplicity, let's say there are two tables: - Table Customer has fields CustomerID and CustomerName ...
Score Comparing objects
Roshawn - 12 Jan 2007 10:30 PM - 6 messages
Hi, I have a function that returns a string.  This function can accept any type of object, which determines the structure of the string returned.  My question is, how do I know what type of object is passed in? ...
Score Is WSE 3.0 in VS2005(VB) required to migrate from VS2003?
Tony Girgenti - 12 Jan 2007 10:00 PM - 5 messages
Hello. I developed a VS.NET2003(VB), ASP.NET web application client program with ..NET Framework 1.1, ASP.NET 1.1, IIS 5.1 and WSE 2.0. I tried to migrate it to VS 2005 Pro(VB), Web Application Projects, .NET ...
Score Function Warning - Null Reference
Terry - 12 Jan 2007 9:49 PM - 28 messages
I am getting the following warning for the below function. I understand what it means but how do I handle a null reference? Then how do I pass the resulting value? Regards Warning 1 Function 'Dec2hms' doesn't return a value on all code paths. A ...
Score Creating objects dynamically in a loop
RSH - 12 Jan 2007 9:45 PM - 7 messages
Hi, i have a situation where I need to dynamically create objects in a loop.  My question surrounds intantiation naming in such a scenerio. Below is a snippet that is basically hardcoding each object.  My problem is that I would like to create the objects dynamically but I can't figure out ...
Score Enum
shapper - 12 Jan 2007 9:06 PM - 4 messages
Hello, I have an enum: Public Enum Color   Red   Blue   Green End Enum I need: 1. Loop trough all enum items and get each one value (Ex: Red) and index (Ex: 1). For Each color As Color In [Enum].GetValues(GetType(Color)) ...
Score send Outlook Task programmatically from ASP.NET page
Steve Moreno - 12 Jan 2007 8:57 PM - 4 messages
I have an asp.net application written in VB.NET that allows the user to assign a task to other users.  On my development laptop, everything works fine.  On the web server, it doesn't work.  Below are the code and error ...
Score xcopy deployment
cj - 12 Jan 2007 8:50 PM - 5 messages
In 2003 to deploy a simple program you could copy the exe from the projects obj\release directory.  Why in 2005 does it create a bin\release and a obj\release directory, each of which contain what would appear to be identical exe files? ...
Score Need a method to send byte arrays from Unmanaged C DLL to VB
Vince Castellano - 12 Jan 2007 6:38 PM - 3 messages
Hello, What is the proper way to send byte arrays (or strings for that matter), from a C DLL to VB? I have tried by prototyping the call in VB with ByRef Byte[] as a parameter, then treating it in C as a pointer to ...
Score XMLDocument Parsing Issue in VB.NET
rajesh - 12 Jan 2007 3:53 PM - 3 messages
Hi, I am trying to parse a xmldocument and  to get value of a name tag "techlanguage" is  "vbdotnet". Here i need to select the propername tag which is "techlanguage" and the propervalue which is "vbdotnet" Here is the structure of my XML ...
Score Creating bmp file from VB.NET
Andy Baker - 12 Jan 2007 3:46 PM - 3 messages
I have a utility that captures a signature on a handheld device and stores it as as string containing a series of points. I want to recreate this signature as a bmp file using VB.NET code. To do this, I have created a ...
Score Problems with Flash in WebBrowser
ljlevend2 - 12 Jan 2007 3:32 PM - 2 messages
I am reposting because my original post ended up at a dead end.  Hopefully somebody can shed some light on this issue... I am having problems interacting with flash objects (i.e., Adobe Flash Player 9) in web pages when using a System.Windows.Forms.WebBrowser control.  The ...
Score Windows Form Designer generated code
cj - 12 Jan 2007 3:26 PM - 13 messages
In a project done in 2003 about a year ago I was told to add the SocketWrench code below into the Windows Form Designer generated code area as shown below. #Region " Windows Form Designer generated code "      Public Sub New() ...
Score Startup object
cj - 12 Jan 2007 3:12 PM - 9 messages
In 2003 I sometimes changed the startup object of a project to Sub Main which was found in Module1.vb.  I upgraded one such project to 2005 and I notice in the properties page for the project that nothing is selected ...
Score Multithreading in a looping situation
RSH - 12 Jan 2007 2:14 PM - 2 messages
Hi, I have a situation in where I have a main loop that queries a "Parent" Global database table.  Based on that resultset I loop through all of the databases and the appropriate table in the "children" databases. Because we have roughly 5000 "Children" databases this process is taking ...
Score Converting Structures to Classes with reflection
Nigel - 12 Jan 2007 2:07 PM - 2 messages
Hallo Everyone, I want to transfer the contents of a structure to a class. I have tried the following but it does not work, can anyone see what I have done wronG Imports System.Reflection Public Class Converter     Public Function StructToClass(ByRef oIn As ValueType, ByRef oOut As ...
Score Copying from one db into another
John - 12 Jan 2007 12:36 PM - 6 messages
Hi I am trying to copy data from one db into another. Thanks for everyone who suggested ways to do that. After some more research I have come up with the below simple looking way. My question in, is it supposed to work this way ...
Score folders/ auto namespaces // address in VS2005?
sloan - 12 Jan 2007 9:40 AM - 2 messages
In C#, (2003 and 2005),.... When you add  a folder to a project, and then add a new class (in that folder), you get automatic "namespace MyApplication.Folder" inclusion. Example. Your project name is "SuperBankApplication" You add a new folder called "Exceptions". ...
Score DataTable problem
James Wong - 12 Jan 2007 6:26 AM - 2 messages
In VB.Net 2005, Can I use "GROUP BY" in DataTable? Thanks! James ...
Score Embed a hex character in a text file
Shane - 12 Jan 2007 6:21 AM - 2 messages
I have an old program that terminates text files with a hex (1A). MS-DOS programs used to need the Control-Z character to terminate text files. I need to create new text files in .NET that will embed the Control-Z ...
Score error on Dim info1 As PropertyInfo = component1.GetType.GetProperty(Me.member.Name)
Carlos Rodriguez - 12 Jan 2007 5:29 AM - 3 messages
I have the following function in C#public void Undo(IDesignerHost host) {       if (!this.componentName.Equals(string.Empty) && (this.member != null))       {             IContainer container1 = (IContainer) ...
Score How to check if something is Null
Bonzol - 12 Jan 2007 5:07 AM - 3 messages
VB.Net 2003, Web Application Hey there, ive looked around for ages and havnt found a straight answer. All I want to do is find out if a field in my datatable is Null For example If ts.Rows(isel).Item(4) = Null Then ...
Score Inserting from one db into another
John - 12 Jan 2007 3:36 AM - 12 messages
Hi I have open connection to two separate databases. I now need to insert records from a table in one db into a table in second db. How can I go about doing it? Thanks Regards ...
Score Using variable as form field name
John - 12 Jan 2007 2:52 AM - 2 messages
Hi I have two fields field1 and field2 on my form. Is there a way that the field names can be accessed via variable so that choice of the actual field to access is decided at runtime? Thanks Regards ...
Score sync combo boxes in datagridview
Redback - 12 Jan 2007 2:37 AM - 2 messages
Hi All,   slight problem I hope someone could shed some light on. I am using VS 2005. In a datagridview I have 2 comboboxes that are both bound to a table field called "empCode".  This is an employee code. ...
Score compress and decompress byte arrays
Carly - 12 Jan 2007 1:02 AM - 2 messages
Hello, I am just wondering if somebody can look on this piece of code and let me know what is wrong with DECOMPRESSION. Dim mystr As String = "flower power"         'deflate         Dim mybytearray() As Byte ...
Score Narrowing Conversion - Double to int32
Terry - 11 Jan 2007 9:02 PM - 5 messages
I have x as double, hh as int32 in VBA I can perfom hh=Int(x) (narrowing conversion but disallowed in .NET) One example in .NET is hh = System.Convert.ToInt32(x) Could I use IConvertible and how would I code this? ...
Score Can I edit the Installation Dialog Boxes
Tim A - 11 Jan 2007 8:48 PM - 4 messages
Is there a way to edit the installation dialog boxes?  In particular the "installation folder" dialog box.  Or, can you tell me how to replace them with my own custom forms? Thanks! t. ...
Score How to hide cmd windows
gabi - 11 Jan 2007 8:08 PM - 4 messages
Hi, I am trying to create a VB.Net application that will run in the background some batch files. I don't want any cmd window to show on the screen so I use the CreateNoWindow process property to hide it. The problem is that the ...
Score VB, Windows 5.0 Compact: Multiple Forms
Martin - 11 Jan 2007 7:12 PM - 3 messages
Hi all, I'm making a program for the Smart Device (Compact .NET Framework) and I noticed the "MY" object is completely missing. I wonder how to open a 2nd form. The app is supposed to work like a wizard: Opening window, entry ...
Score Extracting data from an AS400 Database file
VB .NET Rookie - 11 Jan 2007 6:51 PM - 3 messages
I am new to this language and am trying to figure out how to extract data from my AS400 files.  I think I have properly coded a connection to my as400 but now I am having lots of truoble pulling some data into a text box.  Below ...
Score Comment Blocks in VB
Allen - 11 Jan 2007 6:18 PM - 6 messages
Is there block comment for VB like there is for C++ (/**/)? other that wrapping with: #If False Then #End If TIA ...
Score Help on displaying combobox items
max - 11 Jan 2007 6:02 PM - 3 messages
Hello, I have a VS2005 framework and ado.net. I have an access db with two tables: 1) Patients; 2) Doctors. The 'Patients table is already filled by a long list of records (coming from an old access db) in 3 columns: ID, Name, Doctorname (for that patient); ...
Score Deleting files with selected dialogs
mmalinsky@gmail.com - 11 Jan 2007 4:49 PM - 2 messages
I use             My.Computer.FileSystem.DeleteDirectory(target, FileIO.UIOption.OnlyErrorDialogs, _                 FileIO.RecycleOption.DeletePermanently, ...
Score Event is fired multiple times
AMDRIT - 11 Jan 2007 4:29 PM - 3 messages
Hello Everyone, I am having an issue where an event appears to be fired repeatedly where I only expect it to be fired once.  See below for objects and behaviors. I have a control that contains a treeview, it creates the TopLevel object ...
Score select column of data in ide
cj - 11 Jan 2007 4:17 PM - 3 messages
This is only an example not an actual project. Say I have 200 lines of code like this: Dim reqType As String = wuReq.Substring(8, 3) Dim reqCust As String = wuReq.Substring(11, 23) Dim reqSend As String = wuReq.Substring(34, 40) ...
Score Single-threaded apartment?
Dustin Davis - 11 Jan 2007 4:08 PM - 7 messages
I've build an application that monitors a folder. When a new file is created in that folder it kicks off a process. On such process is to load a form. When I get to the statement to create and instance of the ...
Score VS 2005 XML comments: add other fields, author, create date etc?
Kevin - 11 Jan 2007 2:34 PM - 4 messages
Hi In VS 2003 I downloaded the vbcommenter as it didnt have any built it. It created comments like this:     ''' -----------------------------------------------------------------------------     ''' <summary>     ''' retrieves a instance from the database and adds it to the tree ...
Score Using a panel on an MDI form
sonicm - 11 Jan 2007 2:29 PM - 6 messages
Hi, I want to place a panel in the bottom right on my MDI form to show login time and database connection information. However, when a form is put on as a child of the main MDI form it goes under the panel. I have tried SendToBack ...
Score Updating a Listview on the MdiParent
thorgal - 11 Jan 2007 2:24 PM - 3 messages
Hello Following problem occured: I have an MdiParent with a Listview. In that listview i have elements like (x1,x2,x3) When I click on x1 a subform (mdichild) opens and i can change the settings of x1 and the name x1 becomes y1, when i save these settings to my database ...
Score "Generating Preview" Dialog
bob.turner.uk - 11 Jan 2007 2:14 PM - 3 messages
Hi, I would like to supress the generating preview dialog of the print preview control. Does anyone know how to do this? Regards, Bob ...
Score WebCasts
Goofy - 11 Jan 2007 2:10 PM - 6 messages
Hi everyone. I know this is not strictly to do with VB.NET, but I want to make a VB.NET webcast What software would be best to make a recording from your PC reader to be distributed as a webcast. ...
Score hiding public methods in the DropdownList.
Lucky - 11 Jan 2007 1:36 PM - 7 messages
hi guys! again with some interesting Question. i've some public methods in class. i dont want to show this methods in the dropdown list while you are typing the code in .net IDE (it long story that why i dont need those methods in the list). ...
Score Stop a form from displaying until all labels and graphics loaded
will_456 - 11 Jan 2007 9:45 AM - 4 messages
I have a form containing many controls which receive their properties at design time. Trouble is the form displays large transparent  squares all over it while pictures and labels are being filled. It also flashes several times which is quite annoying to watch. ...
Score Setup project
Kris - 11 Jan 2007 8:02 AM - 2 messages
Hi NG, i'm having two questions about the setup-project: 1) The field "company" in the form "customers info" i later want to show in the applications infobox (registered for Hubicompany or whatever). Which namespace saves this information? 2) I'd like to check, whether framework 2.0 is installed or not. If ...
Score Form inheritance problem
Benson - 11 Jan 2007 7:48 AM - 7 messages
I build up a parent form and inherited to a child form. Initially, parent form has a button with an image, so a child form has. Later I change the button's image, but the child form cannot refresh (still ...
Score Spot the error (ie I can't)
Steven Spencer (Spinalogic) - 11 Jan 2007 7:32 AM - 9 messages
Dim dlg As New dlgChangeDate Dim fromdate As DateTime = dlg.GetaDate(System.DateTime.Now, "Please Enter the Start of the Holiday") If (Not fromdate.CompareTo(New DateTime(1, 1, 1, 1, 1, 1, 1)) = 0) Then     While IsDateBetweenShifts(fromdate, cboHolidayDoctors.SelectedValue) ...
Score BindingList FindCore, how do you implement this? Why doesn't this not work?
Chad Dokmanovich - 11 Jan 2007 5:44 AM - 2 messages
If you could answer this, I would be very appreciative: Why does this code die on line 63 with the error "Specified method is not supported." error message?     1 Imports System.ComponentModel     2     3 Public Enum DataType As Integer ...
Score Evaluating an event - C# to VB.NET
Carlos Rodriguez - 11 Jan 2007 5:38 AM - 4 messages
When evaluating if the Deactivated event Is Nothing. It cause an errorWhat is the right translation from C# to VB.NET?C#public void Deactivate() {       this.m_transactions.Clear();       if (this.Deactivated != null) ...
Score Start as Minimized Memory Usage
Allen - 11 Jan 2007 2:40 AM - 8 messages
When minimizing Visual Basic application, working memory is greatly reduced from about 20 MB to only about 2 MB.  However I want the application to start as minimized, and most of the time it will remain minimized, never being brought to normal or maximized view and consequently then minimized. ...
Score Key handling outside application?
aeron005 - 11 Jan 2007 12:00 AM - 5 messages
Hello, I am developing an application, mainly for personal use, that runs in the system tray, organizes data (calendar, etc.), and has several useful widgets included (little scratch pads and stuff). I would like to add a feature where I, as the end user, can set custom ...
Score Coding Problem (Who is smart enough to help?)
Tony K - 10 Jan 2007 11:29 PM - 4 messages
I'm note sure how to state this but, I have a Windows form that contains 2 tables.  Details View on top and Datagrid on the bottom.  The two tables are related.  One of the fields in the details view is a calculated field not ...
Score Menu Control and Sitemap, eliminate the home column on the menu display
empire5 - 10 Jan 2007 9:50 PM - 2 messages
My menu and sitemap: home     foo        bar                  foo1      bar1 ...
Score .NET Class mad available as COM
Lou - 10 Jan 2007 9:38 PM - 7 messages
I have created a .net .dll using the wizard to create a COM class. Every thing is fine. Here is what I don't understand. If I import the .tlb file into a VB6 project it all works. However why can't ...
Score dim myb() as byte versus dim myb as byte()
Carly - 10 Jan 2007 8:15 PM - 2 messages
Hello there, I wonder what is the difference between declaring array of bytes as: Dim myb() as Byte versus Dim myb as byte() Thanks, Carly ...
Score Base form inheritance error
Chris H - 10 Jan 2007 7:41 PM - 2 messages
I have created a simple base form (no visual inheritance) with a couple of methods to save form and grid settings and inherited this form instead of the standard system.windows.forms.form.  The new base form is located in the same ...
Score Licensing Software
Steve - 10 Jan 2007 5:07 PM - 5 messages
I'm in the process of finishing a vb2005 application for commerical use, and wanted to know if anyone has any favorites for licensing software? Would like something reasonably priced for a part-time developer and flexible for both trial and regular licensing. ...
Score Spaces being removed from POST data
Terry Olsen - 10 Jan 2007 4:59 PM - 2 messages
Using the HttpWebRequest to post data for a query, the input tag that i'm mimicking is: <input type "hidden" name="severity" value="'SEV 2', 'SEV 5'"> I'm using this for making the query via HttpWebRequest POST method: ...
Score Sorting a list of integers
robin9876 - 10 Jan 2007 4:52 PM - 11 messages
I have a list of integers (example sub set of data below), what is the best method of sorting these in code? 1, 872 5, 1283 8, 343 9, 123 ...
Score adding data using DataGridView
BillE - 10 Jan 2007 4:26 PM - 8 messages
What is the best way to add data using a DataGridView in a multi-tier application (data entry is handled in a data access layer using stored procedures)? Thanks Bill ...
Score moving backward to write in TableAdapter / DataTable
spam - 10 Jan 2007 3:20 PM - 6 messages
Hi, I have a problem by writing content in my DataTable. All is working fine, but when I refer to the last row (or better: all rows before the activeRow), I can't manipulate the fields. Nothing happens... My code goes something like this: ...
Score Creating a user control
Thorgal - 10 Jan 2007 2:53 PM - 9 messages
Hello, I created a UserControl named ucCel.  (This is for the moment just a square with a label where I create a random number. The problem is the following. In my code in frmMain i try to create a various amount of ucCels on my ...
Score Partial for more than one class
Johan Karlsson - 10 Jan 2007 2:12 PM - 7 messages
Hi! Is there anyway to write code that applies to 2 or more different classes. Inheritance is not possible in this case. Something like: Partial Class AClass, AnotherClass    public sub DoStuff()    end sub end class Thanks ...
Score Editing URL before displaying it into the addressbar of the web browser
Lucky - 10 Jan 2007 1:10 PM - 4 messages
Hi guys, again with problem. now the problem is something like this. in the backend of the asp.net 2.0, i'm getting query string in the page_load event. the request url is something like this. [link] ...
Score Problems with Flash in WebBrowser
ljlevend2 - 10 Jan 2007 5:10 AM - 7 messages
I am having problems interacting with flash objects (i.e., Adobe Flash Player 9) in web pages when using a System.Windows.Forms.WebBrowser control.  The flash objects always seem to display correctly, but when I click on a link ...
Score Re: User Control Resize
Mudhead - 10 Jan 2007 2:48 AM - 2 messages
In VB.Net 2003: (You can also use this to implement the MaximumSize and MinimumSize properties like in VB 2005) Imports System.ComponentModel Imports System.Runtime.InteropServices Public Class UserControl1     Inherits System.Windows.Forms.UserControl     Private Const WM_WINDOWPOSCHANGING As Int32 = &H46 ...
Score Need help with parsing a multilined log file into objects
Paulers - 10 Jan 2007 2:14 AM - 10 messages
Hello, I have a log file that contains many multi-line messages. What is the best approach to take for extracting data out of each message and populating object properties to be stored in an ArrayList? I have tried looping through the logfile using regex, if statements and flags to ...
Score Splash screen
New - 10 Jan 2007 2:13 AM - 6 messages
I have a form that is slow to load.  I would like it to load in backround while a splash screen show. How would I do that? ...
Score Scanning uploads in my asp.net pages
tshad - 10 Jan 2007 1:10 AM - 4 messages
We have a few pages that accept uploads and want to scan the files before accepting them.  Does Asp.net have a way of doing a virus scan? We are using Trendmicro to scan files and email but don't know if we can use ...
Score Callback from Unmanaged .dll using BSTR strings
Rberk - 9 Jan 2007 9:55 PM - 5 messages
I have a c++ .dll that uses a callback function pointer to a VB6 program. It passes BSTR strings to the VB6 callback function no problem. If I build a workalike callback function in VB.net 2005, the function works, ...
Score NotifyIcon ShowBalloonTip not appearing
nospam - 9 Jan 2007 9:42 PM - 4 messages
I have an application that is made up of a single module for my global variables and then multiple classes.  There is no form.  I am using a notifyicon as my notification(Basically different colored icons).  All ...
Score Why does 28.08 show up as 28.080000000000002 in DataGridView
Daniel Manes - 9 Jan 2007 9:11 PM - 3 messages
I'm baffled. I have a column in a SQL Server Express database called "Longitude," which is a float. When I view the table in a DataGridView, some of the numbers, which only have two decimal places in the database ...
Score Master Detail
DC - 9 Jan 2007 8:59 PM - 3 messages
The help article "Walkthrough: Saving Data to a Database (Multiple Tables)" in VB 2005 Express does not seem to work. If I add a new Master record and a new Detail record at the same time, the Detail record does not contain ...
Score Why does 28.08 show up as 28.080000000000002 in DataGridView
Daniel Manes - 9 Jan 2007 8:53 PM - 80 messages
I'm baffled. I have a column in a SQL Server Express database called "Longitude," which is a float. When I view the table in a DataGridView, some of the numbers, which only have two decimal places in the database ...
Score why is this crashing?
Smokey Grindle - 9 Jan 2007 6:55 PM - 4 messages
Please look at the attached screenshot for what I am seeing... why is this crashing? I am asking it the count is > 0 then do it, but when the count is zero it still does it!? thanks! code block is in the screenshot also... there is only one thread running, so ...
Score Hide cursor in IE from vb.net
VidarHe - 9 Jan 2007 5:31 PM - 3 messages
To hide the mouse cursor in my vb form code in vs 2005 I only have to call Windows.Forms.Cursor.Show(). But this only applies to my form and I want to hide the cursor from the screen or most specifically an automated internet ...
Score VB book for beginner
Andy - 9 Jan 2007 4:24 PM - 3 messages
Hi I need a recomandation for a good VB.net for someonenew to VB programming. I've for the last few weeks been using "Beginning Visual Basic 2005" by Thearon Willis and Bryan Newsome ([link]) but I ...
Score FOR Loop
shapper - 9 Jan 2007 2:19 PM - 3 messages
Hello, How can I make a Loop for to go from the bigger number to the lower number? I have:   For i As Integer = 1 To 100   ... And I need:   For i As Integer = 100 To 1 ...
Score User Control Resize
Newbie Coder - 9 Jan 2007 12:18 PM - 12 messages
Hi All VB.NET 2003 Can anyone tell me how to stop a user control being able to be resized during both design time & run time, please? I am looking for something like the LOCKED property, but being able to move ...
Score Visual Studio 2005 (vb.net)
marcmc - 9 Jan 2007 11:17 AM - 3 messages
Where is the auto tab on VS 2005 during debug to show you things like the cn.state, dtr state etc? I cannot find it. Also, vb.net 2005 is saying that i have a Null Reference Exception on the ...
Score Confused myself!
leonaisse - 9 Jan 2007 9:42 AM - 5 messages
Hi All I need your help please, i've been thinking about this one for so long I have confused myself! I have a web app that contains a clients table in SQL server. When a new client is entered onto the system I want to take all the usual ...
Score parsing HTML text
Lucky - 9 Jan 2007 9:17 AM - 5 messages
hi guys! here i'm again with an interesting problem. the problem is, i've a HTML text like this : 01.%20Bhulado%20%5b[link] and i want to parse it like IE or any web browser dose into this: ...
Score Invalid postback or callback argument error
Nathan Sokalski - 9 Jan 2007 8:51 AM - 3 messages
I have a DataList in which the ItemTemplate contains two Button controls that use EventBubbling. When I click either of them I receive the following error: Server Error in '/' Application. -------------------------------------------------------------------------------- Invalid postback or callback argument.  Event validation is enabled using ...
Score grab a web page without a control..
buu - 9 Jan 2007 6:59 AM - 2 messages
Is there a way to make a screen capture of web page? but without using web control (inside a form) tnx in advance... ...
Score GAC install problem
Dean Slindee - 9 Jan 2007 3:59 AM - 3 messages
Getting the following message when doing a ClickOnce install at a deployment PC: "Unable to install or run the application.  The application requires that assembly Microsoft.Office.Interop.Access Version 11.0.0.0 be installed in the Global Assembly Cache (GAC) first. Please contact your system ...
Score Query a DataSet Table in Visual Studio 2005
forforumsid - 9 Jan 2007 3:35 AM - 3 messages
Hi all I have a Dataset name: dsMain I popullate with all the data from the database on form load event I have a requirement to filter data as per users requirement on a button click event What I want is that when the user clicks the button the program should query the Dataset table and not the database table and return the result ...
Score Opening a specific form with a string
Paul Craig - 9 Jan 2007 12:23 AM - 9 messages
Hi, I am currently able to open forms given a string variable using the following code: Dim strForm As String = "Form1" Dim theForm As Form theForm = AppDomain.CurrentDomain.CreateInstanceAndUnwrap _                 (Me.GetType.Assembly.GetName.Name, System.String.Concat ...
Score run out of space to put controls on form
vbDavidC - 8 Jan 2007 11:42 PM - 6 messages
I have a  form that has like 20 text boxes that are comments. When I create the textbox I add it below the previous one; eventually I run out of space on the form.  I am able to resize the form but ...
Score VB .net Service cannot connect to sql 2000
blurryimage - 8 Jan 2007 11:01 PM - 11 messages
Ok guys I have racked my brain on this one. I have a vb .net service installed on a win2k server. I am trying to get it to connect to sql 2000 box but I get this error: An error has occurred while establishing a connection to the server. ...
Score Mdi Icon Position in MenuStrip
ljlevend2 - 8 Jan 2007 9:31 PM - 4 messages
Is there any way to control the position of the icon that corresponds to a maximized MDI child form in a Windows.Forms.MenuStrip?  By default, the MenuStrip shows the icon of the MDI child form at the far left of the ...
Score VB.NET Property 'Font' is 'ReadOnly' - Please Help!!
Patti - 8 Jan 2007 9:23 PM - 3 messages
I am building an application using VB.NET 1.1 and I have an issue with Font properties in my Radio Button Lists and Check Box Lists.  My issue is that the Font Names and Font Size for these controls have become ...
Score Getting the control that called a Context Menu
Louis-Pierre Dauphinais - 8 Jan 2007 6:37 PM - 2 messages
To get the control that called a context menu item (ToolStripMenuItem), I normally do: itm.Owner.SoucreControl but what if the menu item is actually in a second level of the context menu? I can get the ContextMenuStrip using "itm.OwnerItem.Owner" ...
Score Bootstrapper
Arne Beruldsen - 8 Jan 2007 6:06 PM - 2 messages
I have a vb.net 2005 app that I would like downloaded from my site.  I've heard something called Bootstrapper...can combine my setup.exe and the Net Framework piece. I want my download to be as easy as possible for my users.  To-date I'm ...
Score how to Access/Read Event Viewer for win2003 server?
Rich - 8 Jan 2007 5:40 PM - 2 messages
Hello, Just requesting information on how to access/read the Event Viewer for win2003 server using a VB2005 app.  The Event Viewer has several folders - Application/Security/System...  I am just requesting some guidance on where to start for accessing/reading the Event viewer.  Are there environment ...
Score vb.net service issue
igor - 8 Jan 2007 5:28 PM - 2 messages
I have a vb.net windows service that ran great for 2 years on a Windows 2K server.  Since upgrading to Windows 2003 server I've noticed the service continually builds up memory usage as indicated by task manager. ...
Next » 2 3 4 5 6 7 8 9 10