all groups > vb.net > august 2005 > threads for monday august 29
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Link to an application folder file from a form?
Posted by Grumpy Aero Guy at 8/29/2005 11:34:01 PM
I have a VB.Net solution, for which I have created a deployment project.
Everything is going good. I find this all pretty slick, by-the-way......
One innocent question.
I have added a users reference in pdf form to the application folder, and
created a shortcut for/to it in the "Users Prog... more >>
Best way to release Memory used by Datasets
Posted by S Anand at 8/29/2005 10:09:02 PM
Hi,
We are using vb.net in our "windows application" and are using datasets
heavily (100s of them). We declare them in our methods and use them and
currently are not doing anything to specifically dispose or reclaim memory.
What is the best way to dispose them and reclaim memory. We are fi... more >>
file.copy
Posted by Bala at 8/29/2005 9:12:02 PM
Hi all,
First of all I just want to know this will work out or not. I am going to
have a console application on my server. I am going to call that application
from my asp.net page. i'll pass command line parameter as source file path.
so the application will copy the source file and past it... more >>
Setting focus on a control when the form is loaded
Posted by Aung Thu at 8/29/2005 7:16:01 PM
Hi, there!
I want to set focus on a control, of which TabIndex is not the first, when a
form is loaded. In the form's load event, I have used Control.Focus() but it
doesn't not work. The focus is not on the control I set. The focus is always
on the control of which TabIndex is 0.
Thanks... more >>
Control Events triggering at load.
Posted by Manuel at 8/29/2005 5:34:23 PM
When a form loads it fires all modification events for its controls. For
example, if I put a comboBox and give it some values at design time, it will
fire the comboBox_Change event (or whatever it is called). Since I don't
want to handle these events when the form loads, the only way to avoid ... more >>
.NET Framework Equivalent to ASCW & ChrW
Posted by Mike Labosh at 8/29/2005 4:49:37 PM
I would really rather use the "dot-nettified" syntax rather than digging
global functions out of Microsoft.VisualBasic.
Anyone know the newfangled way to achieve the same results?
--
Peace & happy computing,
Mike Labosh, MCSD
"Musha ring dum a doo dum a da!" -- James Hetfield
... more >>
Internet connection detection
Posted by ThunderMusic at 8/29/2005 4:19:17 PM
Hi,
probably the question have been asked many times, but I can't find the
answer anywhere. Is there a way to detect if an internet connection is
active? just like Internet explorers detect you are offline when you try to
open it when not connected (then asks if you want to connect or work
offl... more >>
I want to bind a runtime-generated dataset to a crystal report. HELP!!!
Posted by Jean Christophe Avard at 8/29/2005 4:06:27 PM
Hi! It's been about 2 weeks I'm stucked on this. I have a dataset that I
generate at runtime. Then, I want to print the records contained in the
dataset. I just don't know how to bind the dataset field to the report
field. Please I really need help for this, I looked all over msdn, google.
v... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
rectangle contains
Posted by Rob T at 8/29/2005 4:05:28 PM
Hi.
I have a program that creates an image and displays it to the
screen....pretty simple. I put it into a matrix so that I can rotate it. I
would also like to be able to know when I click on it so I am doing a
rectangle.contains. This works fine if the image isn't rotated. But if it
... more >>
VB.Net and Lame
Posted by Dennis at 8/29/2005 3:04:03 PM
I am trying to decompress MP3 files to WAV using VB.Net. What I really need
is a wrapper in VB.Net or C# that includes ALL of the Lame.Dll funcitons
including those to decompress to a WAV File. Most I've found so far don't
work and lack any form of documention.
--
Dennis in Houston... more >>
Problems querying index catalog...
Posted by Michel Moreno at 8/29/2005 2:15:53 PM
Hi everybody, i would like to query the Index Catalog, for a site, as
describe in the article:
http://support.microsoft.com/default.aspx?scid=kb;en-us;820105
But i'm having an error, I don't know what to do.
Please help me.
Thanx in advanced.
Michel
Here is the error.
Server Error in '/' A... more >>
Smart client and VB.NET apps - How to make it work?
Posted by Bill Nguyen at 8/29/2005 1:56:21 PM
I have couple VB.NET apps (windows forms) that I would like to run with
smart client. What modification within the apps do I need to do to make it
work?
Thanks a million.
Bill
... more >>
COM Releasing .NET Object
Posted by Michael Tissington at 8/29/2005 1:31:28 PM
I have an application written in C++ (NOT .NET) which creates an instance of
a vb .net object.
My application releases the .net object when it has finished using it.
However .NET GC is not destroying the object until my application closes
which can be minutes or hours later.
How can my C... more >>
threading problems
Posted by mburghdorf NO[at]SPAM fingerlakesconstruction.com at 8/29/2005 12:05:06 PM
I am currently working on a vb.net program that interacts with autocad.
The thread processes a building that was created within the program and
comes up with a price. I then after the job has been priced give the
user an option to display a report that they would be interested in.
One of the opt... more >>
MissingMethodException on System.Activator.CreateInstance
Posted by Harry F. Harrison at 8/29/2005 11:06:30 AM
Hi folks,
I'm getting the following error message using the
System.Activator.CreateInstance shared method:
A first chance exception of type 'System.MissingMethodException' occurred in
mscorlib.dll
Additional information: Member not found.
I'm using the following overload:
CreateIn... more >>
Overloaded constructors
Posted by cmay at 8/29/2005 11:00:32 AM
Can someone quick shed some light on this issue I am having?
I wanted to create 2 constructors for my object, one that takes an ID
value and one that takes a datarow.
If ID value is provided, it is going to get the info from the database
and populate itself. If a datarow is provided, then i... more >>
Forms and Memory management question
Posted by rforman1 NO[at]SPAM optonline.net at 8/29/2005 10:43:52 AM
Suppose I do this: let's say that in my vb.net app's main/MDI form, I
declare a form-level variable of type Form1, where Form1 is another
form (more technically, I know, another class which itself is inherited
from system.windows.forms.form) defined in my application.
dim mfrmForm1 as Form... more >>
Timer not working with Windows Service
Posted by Manuel at 8/29/2005 10:41:37 AM
Used VS2005 to create a windows service and I can't make a timer trigger the
tick/elapsed event.
On the form viewer I dragged a timer from the components section of the
toolbar, enabled it but the tick event does not fire!
I tried this other method but the elapsed event does not fire.
---... more >>
Arguments for learning VB - slightly OT
Posted by Andy at 8/29/2005 10:15:35 AM
Hi
I'm in the position where my employer might pay for courses in VB.net or
even the complete MCAD certification. But I need some good arguments for
learning VB.net that can relate to my current job. I work as a
system/network administrator, and I'm currrently the only IT person working
in ... more >>
select on textfile question
Posted by Peter Proost at 8/29/2005 9:48:19 AM
Hi, I'm creating an import module to read data from old textfiles, run some
calculations on them and save them to sql server. I've figured out how to do
a select on textfile using a schema.ini file (my textfile is delimeted by a
| )
But I've got on problem remaining, below you can so two example... more >>
Outlook-Style Folder-Navigation
Posted by Nijazi Halimaji at 8/29/2005 9:40:23 AM
Hi newsgroup
I am looking for a plug-in which looks like the side navigation from
outlook...
Do someone has a link or a tip how to do?
Thanks alot
Nijazi Halimaji
... more >>
Need help on Regular Expression
Posted by jcvoon_99 NO[at]SPAM yahoo.com at 8/29/2005 9:11:23 AM
Hi:
I'm new on regular expression, i need a regular express to mask the
data input through text box (DevExpress TextEdit control), i want to
limit the user so that only a digit or a group of digit separated by
comma can be enter
eg
1 or
1,2,3 or
1,2,3,4,5
I only able to produce the ... more >>
cant open vbProj web app when copied to different virtual director
Posted by Rich at 8/29/2005 8:47:40 AM
Hello,
When I copy a VB web app from my workstation to my laptop (which has the
exact same software as the workstation) or to a different virtual directory
on the same workstation and then try to open the vbProj at this new location,
I get the error message that it can't open the app becaus... more >>
Telling a classes full name
Posted by Brian Henry at 8/29/2005 8:42:44 AM
I am creating a plugin system and each plug-in has a class called "Connect",
which is what I created as the entry point for the plug-in. The problem is,
I need to get the Full type name of this to create a instance of it.
previously I was doing this a different name by using the same root
na... more >>
Sql server group name from VB
Posted by Dagoberto Aceves at 8/29/2005 8:23:21 AM
I want to set up different user privileges on the sql server using
groups. At the moment im a little stuck on which way to go with it. I'm
making different forms for each user, depending on their privileges. If
I set up a db with username and passwords, I can check the user against
it and pull t... more >>
Best Chart references
Posted by Doudou at 8/29/2005 8:15:20 AM
Hello,
I must draw charts in a VB.NET application, I would like to know what
is the the best choice et differences between :
- Microsoft Office Chart 9.0 (Library : Microsoft Office Web Components
9.0)
- Microsoft Chart Control 6.0. (SP4) (OLEDB) (Library : Microsoft Chart
Control 6.0 ... more >>
Send POST command to webserver
Posted by Philip Wagenaar at 8/29/2005 7:53:04 AM
I need to communicate with a service that listens on a specific TCP/IP port.
I need to send an XML document using POST commands.
I know I need to use System.Net.HttpWebRequest and
System.Net.HttpWebResponse, but I am not sure how to use them.... more >>
Paint event confusion, please help!!!
Posted by GatorBait at 8/29/2005 7:04:37 AM
Good morning experts,
Here is what I'm trying to accomplish:
I have a form that has 8 panels spaced out so that they look like rows.
Inside each panel is a series of labels and when a user clicks any
label in the panel I am trying to have a thick border around the panel
to indicate that ro... more >>
How to distinguish WinForms from ASP .NET?
Posted by Nikolay Petrov at 8/29/2005 5:26:16 AM
I have compiled some shared function in a lybrary, which I use in
various application from asp pages, web services to winforms and
windows services.
some of the functionality in my libarary is dependent on where it is
called from. I would like to do one things if it is called from asp
applica... more >>
reeview with columns?
Posted by Ch0rY at 8/29/2005 4:48:32 AM
How to make a treeview with columns in vb.net?
Thanks
... more >>
ASP.NET Excel Automation, Access is denied error
Posted by ajain1008 NO[at]SPAM gmail.com at 8/29/2005 4:33:27 AM
I'm running the following code on asp.net form
Dim objExcel As Excel.Application
Dim objWrkBk As excel.Workbook
objExcel = New excel.Application
objWrkBk = objExcel.Workbooks.Open("C:\Inetpub\wwwroot\ret\ret.xls")
objWrkBk.Close(SaveChanges:=True)
objWrkBk = Nothing
objExcel.Quit()
objExce... more >>
VB String Manipulation
Posted by CelticView at 8/29/2005 3:40:02 AM
Can anyone help with a sub to reverse the order of a string.
What I want is something that will do the following
Initial string value - "This is a string"
Reversed value - "string a is This"
What is the best way to do this?
Should I read all of the substrings into an array then read the... more >>
newby VB arrays
Posted by Boni at 8/29/2005 12:00:00 AM
Dear all,
How can I add something to the VB arrays after the initialization.
dim _points() as System.Drawing.points
If it is not possible how can I pass into function, with VB array as an
argument the .NET array.
I.e.
sub func(byval _points() as System.Drawing.points)
....
end sub
sub Main... more >>
Problem updating dataset
Posted by Diarmuid at 8/29/2005 12:00:00 AM
I don't understand how I update the table underlying the dataseet
Heres what I have at the moment. In this simple example, it works fine until
I try
adapSimple.Update(dsSimple, "Customers")
What should I be doing instead?
Thanks
Diarmuid
Dim stSQL As String = "SELECT * FROM Customers"
... more >>
DTS coding
Posted by Anusha H via DotNetMonster.com at 8/29/2005 12:00:00 AM
Hello there,
I simply need to import a text file into a sql table. Text file is fixed
width and i know the column widths. Will anyone give me the exact coding in
vb.net by using DTS please. Your help is highly appreciated.
Regards,
Anusha... more >>
Fire event on midnight
Posted by Jared at 8/29/2005 12:00:00 AM
Hi,
Is there any other way to determine new day other than setting timer to a
really high value?
Thanks
Jared
... more >>
COPY & PAST -REMOVE HANDLES EVENT
Posted by Agnes at 8/29/2005 12:00:00 AM
In my form, i got around 20 textbox and buttons,
Now,i need to move them into the group box. I use 'copy & paste'
after doing that, I found that the handles "button.clicked,
checkbox.checked'.. All handlers are removed.
Can I disable this behavior in Visial Studio ??, in the coming days, I ne... more >>
sql language problem
Posted by Ivan V via DotNetMonster.com at 8/29/2005 12:00:00 AM
Dear All:
I am not sure this is the right place to ask this question, but I hope
someone can help me out of that. I have a set of data which is in dbf format
and need to import into my SQL2000 server. The langage in the dbf files is
Protuguese, and after I finish my import into SQL server... more >>
how: Paradox to SQL or Access (CodePage Problem)
Posted by Tark Siala at 8/29/2005 12:00:00 AM
hi
i have Simple Paradox Database, contains Data With Arabic CodePage (i think
Dos Code
page)
and i want convert it to SQL or Access DB, i make import DB, and Working
good
but Arabic Data Changed to Loke this Character (?????)
i try to make Small VB Application to Read this Code Page and ... more >>
|