FileSystemWatcher and syncing database with changes
I’m creating an application (just started) with a front end (GUI) and backend
(database). The database will be populated with file related data populated
from the FileSystemWatcher. I want to discuss the database design and how it
relates to the files and their paths and how information is obtained via
FileSystemWatcher.
Since folders usually contain multiple files, I thought it would be a good
idea to have a file table and a folder table. Since file names (without
path) may not be unique, I thought using an integer as a primary key would
work well especially if the file ge
|
3/10/2010 9:56:08 PM
|
0
|
=?Utf-8?B?TWlrZSBCZWViZQ==?= <MikeBe...@discussions.microsoft.com>
|
|
Dynamic Instantiation With Generic Parameters
Kinda stumped on this one... I've got a generic class, defined like this:
Public Class GenClass(Of VType As IComparable)
Inherits BaseClass
[ ... ]
End Class
The class works just fine, no problems with it. I'm going to build a list of
objects of this type at run time, from a table in a database that
corresponds to the properties of GenClass. I've got a code in the database
that identifies what VType should be for each instance (for example, 1 would
be "String", 2 would be "Integer", and so on). So far, so good.
What I can't quite figure out is how to create an insta
|
3/10/2010 9:10:37 PM
|
1
|
"Captain Jack" <CaptainJack1...@comcast.net>
|
Default Event in VB NET
Hi,
I have a UserControl with a Button. When I click in this button, The default
event is the "Load".
I'd Like to Change this default event (Load) to Click.
Thanks...
|
3/10/2010 7:27:42 PM
|
1
|
"Vinicius Gonzaga" <vinic...@lmp.ufrj.br>
|
Defaul Event VB.NET
Hi,
I have a usercontrol with a Button. When I Click in Button, the default
event is the "Load". I'd Like to change this default event to "Click".
Thanks...
Vinicius
|
3/10/2010 7:25:01 PM
|
0
|
"Vinicius Gonzaga" <vinic...@lmp.ufrj.br>
|
How Do I Read Settings from the Config File?
I have a config file which contains settings for several projects. How
do I read the settings for one project from within another project's
code?
I'm using Visual Studio 2005 and NET 2.0.
-TC
|
3/10/2010 6:27:24 PM
|
1
|
TC <existential.philoso...@gmail.com>
|
What is best way to read binary file into string?
Hi all,
I am now building a routine that reads a small (no larger than 100 bytes)
binary file
and saves the contents in a string. The file can contain characters anywhere
in the
0 - 255 ASCII range. After looking at MSDN Lib. and on the 'net I found a
few
approaches to this problem. I selected one; the resulting code:
Dim strBuf As String = ""
Dim i As Int32
'Check to see if file exists.
If System.IO.File.Exists(strFile) Then
'File exists. Read it.
Dim fs As New System.IO.FileStream(strFile, System.IO.FileMode.Open)
Dim bytAr(fs.Length
|
3/10/2010 6:02:16 PM
|
4
|
"Saga" <antiS...@nowhere.com>
|
Add class in datacontext in the datacontext designer
Hi,
I have a Sql Server DB with two tables, customer and order, and from
the Visual Studio2008 do a DataContext of this bbdd.
If from the code when I have a client, to get their orders do
something similar to "myCustomer.Orders" and with this I will return
the customer orders in question.
So far so perfect..
But now add in the designer's DataContext, otherwise, it is not in the
DB, a class called Enterprise, which has a field that is idCustomer,
and I make this association in the DataContext. Why with the code can
not do myCustomer.Enterprises?
Thanks
|
3/10/2010 4:47:13 PM
|
0
|
Paul <gambam...@yahoo.es>
|
Security Issues
This is a multi-part message in MIME format.
------=_NextPart_000_0001_01CAC03B.F38E8E90
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 8bit
I have an app that creates and copies files using the System.IO methods.
To get this to run on my 64 bit Win7 Pro, I had to adjust the manifest
so that it requires admin rights � I
don�t know if there is any better way of doing it, but I haven�t found
it anyway.
If I start the app manually, UAC darkens the screen and asks me if I
really want to start my app because
it can make changes to the syst
|
3/10/2010 9:24:45 AM
|
0
|
"Johnny J�rgensen" <johnny.jorgen...@sverigeflyg.se>
|
How to Rollback transaction
I have created a form from the data sources that is generated by a wizard to
produce a dataset. Now I just simply drag tables from this dataset to my
winforms. I can have two tables in winform with a parent/child form.
The binding navigator will create a code below to save the data back to the
database:
Me.Validate()
Me.InvoiceBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.InvoiceDataSet)
InvoiceDataSet includes two tables called Invoice and InvoiceDetails.
Beside from this code I also added a code below to update ItemsDetai
|
3/10/2010 7:50:11 AM
|
4
|
"Jay" <jpab...@gmail.com>
|
.net logging option
Hi
Is there a library for logging errors in a .net app which can also email the
errors across?
Any recommendations would be appreciated.
Many Thanks
Regards
|
3/10/2010 2:48:06 AM
|
0
|
"John" <i...@nospam.infovis.co.uk>
|
How to freeze momentarily screen output, please ?
How to freeze momentarily screen output, please ?
Thanks for response
|
3/10/2010 2:08:24 AM
|
2
|
"philmagic" <phiphi59.enlever.c...@wanadoo.Fr>
|
withevents and arrays
i'm trying to create pictureboxs inside a picturebox but i need to determine
when a user clics or uses the "mouseDown" event on each of those pictureboxs.
I've tryed to use a global variable of type "picturebox", with the
"withevents", and an array
private withevents m_pics() as picturebox
but visual basic doesn't let me create a "withevents" variable with an array.
How can i solve this situation?
My thanks in advanced
|
3/9/2010 9:46:01 PM
|
2
|
=?Utf-8?B?UmljYXJkbyBGdXJ0YWRv?= <RicardoFurt...@discussions.microsoft.com>
|
VB 2010: DIM...
Dim Hundred as Integer
Hundred = 100
won't work.
What's wrong??
(I'm a vb6 programmer.)
Eric
|
3/9/2010 4:44:27 PM
|
21
|
"Eric van Dijken" <evandij...@invalid.nl>
|
Help with Linq to Dataset
Hi,
I have a problem with Linq to Dataset that have N rows and 13 columns,
the first colums represents a bank and the other 12 are the months.
What I need is to get rows that have the same bank and one chosen
month.
Dim months() As String() ={"Jan","Feb".......}
Dim banks= From q In dtTempDataTable _
Where q.Field(Of String)(0) = bank_
Group By CC = q.Field(Of String)(0), DD =
q.Field(Of Double)((Array.IndexOf(months, singleMonth) + 1)) _
Into Group _
Select New With {.BanckName = CC, _
|
3/9/2010 11:43:14 AM
|
0
|
BlackSun <black_...@email.it>
|
Where is "imports Win32"?
Dumb question I know, but after 2 hours googling I give up.
What is the easiest/recommended way to access the Win32 API from VB Studio
Express? I assumed it would be a simple matter of Imports Win32, or
something similar and the whole API would be exposed. Surely I don't have to
Declare every API function I call individually? I just want to do things
like FindWindow, GetForegroundWindow and SendMessage. There are also a
gazillion constants like WM_CHAR et al, that I would have thought were
predefined somewhere.
|
3/9/2010 10:45:56 AM
|
6
|
"Marc Hillman" <7owsx1...@sneakemail.com>
|
Some concepts of OOP.
Hello.
I need a basic tutorial for OOP in VB.NET (VS 2008), please, and how can I
implements it?
(Why :
public class myClass implements panel doesn't work?)
Thanks :)
|
3/9/2010 5:03:47 AM
|
6
|
"Mr. X." <nos...@nospam_please.com>
|
Curious behavior from Enviroment.SpecialFolder
Hello Everyone,
I've raised a similar question in the group before but am still puzzled by
this behavior and I'd like to understand what is going on here. If anyone
would be so kind as to take a shot at explaining this, I'd be most greatful.
I'm writing an application for Windows Mobile that will store its
configuration file in the \ApplicationData folder of the device. Let's name
the configuration file 'myApp.conf'. At first, I thought this code would
work:
Dim oFile as New
StreamReader(System.Enviroment.GetFolderPath(Enviroment.GetSpecialFolder.ApplicationData)
& "\myA
|
3/9/2010 3:00:21 AM
|
2
|
"Anthony" <anth...@adcl.us>
|
Passing a PDF as a parameter
Is it possible to pass a PDF as a parameter to a server via remoting?
If so is there a resource I can use to learn how?
Thank you.
|
3/8/2010 7:58:32 PM
|
6
|
Luft <edam...@spamcop.net>
|
More multi threading advice needed!
Hi,
Need more help with this.
I have an array of objects (Computer class).
The class has a method that takes a while to run and I want it to run in
it's own thread.
So I have code like this:
Private ProcessResultHandler As AsyncCallback = AddressOf ProcessResults
For i = 0 To ComputerArray.GetUpperBound(0)
sfh = AddressOf ComputerArray(i).UninstallAgent
sfh.BeginInvoke(ProcessResultHandler, Nothing)
Next i
Public Sub ProcessResults(ByVal ar as IAsyncResult)
sfh.EndInvoke(ar)
End Sub
Now, I need to know from within ProcessResults wh
|
3/8/2010 12:58:25 PM
|
0
|
"Dan" <dart...@NOSPAMpagepearls.com>
|
Need Advice !
I need some overall architectural advice...
I have a process whereby I would like to accomplish the following...
The setting includes many client workstations using a VB.net application
that communicates with a database via ADO connections.
The workstations will be adding "transactional" information into some sql
server tables.
Been there, done that... so far, so good...
Unfortunately, that is only half of the "transaction"...
Once the first half of the transaction has been successfully committed to
the sql tables, elements of this data must then be used to create the s
|
3/8/2010 4:35:41 AM
|
12
|
"Alfred" <aaanone>
|
Design question
So I'm developing a new application for Windows Mobile (WindowsPhone) that
will use a REST API I'm developing to interact with a backend MySQL server.
While I need to make access secure (it's a medical app), I don't want the
user to constantly have to hit the user table of the database every time
they want to do an API call as that table could have thousands of rows and
could slow down access a bit.
So my thought is to use sessionID's of sorts. When the user does the first
call to the API (which should be a login call since they need to login to
the app), the mobile app will a
|
3/8/2010 12:17:57 AM
|
1
|
"Anthony Papillion" <papill...@gmail.com>
|
VB.NET and sql server
I have the following questions about creating sql server 2008 reports with
VB.NET 2008:
I am creating a report that will contain the following:
a. page header with the title of the report,
b. page footers that contain the page numbers, and
c. table of contents to tie about 27 subreports together,
d. several of the tables in the subreport will appear on more than
one page.
Thus, I would like to know how to tie all of this together. I am
planning on doing the following:
1. Put the title of the report in a textbox control,
2. Somehow have logic in the tables to know t
|
3/6/2010 5:20:01 PM
|
2
|
=?Utf-8?B?amF6enlkYW5jZQ==?= <jazzyda...@discussions.microsoft.com>
|
WebBrowser print to specified printer
Hi all.
I'd like to print the document from WebBrowser to the specified printer, but
silently, t.i., not by calling ShowPrintDialog. The printer could be the
default system printer, but not in always. Accordingly, using
WebBrowser.Print() is not the solution.
I found one solution: change the system default printer to desired one, do
the print job and then change back the default printer to previous. Tha
problem is, that the user, who uses my app, may not have enough rights to
make some system changes.
Is there another method how to do it silently? Is there any other control
|
3/6/2010 3:22:26 PM
|
4
|
"Andrius B." <andrius.bleiz...@gmail.com>
|
MDI parent, childs and panels ...
I have an MDI parent form with a panel. If I create an MDI child form and,
at runtime, move the MDI child window over the panel on the MDI parent, the
panel appears in front of the MDI child window.
How can I make the MDI child window appear in front of any controls that may
be on the MDI parent?
Detail my panel can not be docked. And it needs to be centered in the MDI
parent.
Can anyone help?
thanks ...
__________ Informa��o do ESET NOD32 Antivirus, vers�o da vacina 4919 (20100305) __________
A mensagem foi verificada pelo ESET NOD32 Antivirus.
http://www.eset.com
|
3/6/2010 11:44:32 AM
|
3
|
"Rafael" <raf...@digifarma.com.br>
|
Force click on an object.
How can I force click on an object (such as button, etc. ) ?
Thanks :)
|
3/5/2010 10:31:27 PM
|
1
|
"Mr. X." <nos...@nospam_please.com>
|
creating new component class.
Suppose, I am making a new button class of my own (with some features), and
want to use it in my code.
How can I do that.
I would like some links that explain this, and some samples, please.
Thanks :)
|
3/5/2010 6:46:46 PM
|
8
|
"Mr. X." <nos...@nospam_please.com>
|
FileSystemWatcher won't fire for directory events
I trying to be notified when a directory is created, deleted, renamed or
moved. What am I doing wrong?
moFolderSysWatch = New FileSystemWatcher(m_WatchDirectory, "")
moFolderSysWatch.IncludeSubdirectories = True
moFolderSysWatch.NotifyFilter = NotifyFilters.DirectoryName
moFolderSysWatch.EnableRaisingEvents = True
|
3/5/2010 6:13:01 PM
|
10
|
=?Utf-8?B?TWlrZSBCZWViZQ==?= <MikeBe...@discussions.microsoft.com>
|
capture the MouseHOver event, when component is invisible.
Hello.
On VS 2008 - VB.
I have a panel component.
On the panel there is a label component, that hides all the panel.
I want that when mouse is over the label, the panel handle the event
MouseHOver, though it's hidden.
How can this be done?
Thanks :)
|
3/5/2010 4:15:56 PM
|
2
|
"Mr. X." <nos...@nospam_please.com>
|
Border style of panel.
Hello.
I want to change the behavior of the border of panel.
There is only three choices :
none, fixedSingle, and Fixed3D
I want to change the border style to inset, outset, etc. and also the border
width.
Is there any component that control only the border style, width etc. ?
Thanks :)
|
3/5/2010 3:50:41 PM
|
0
|
"Mr. X." <nos...@nospam_please.com>
|
Multi Threading question
Hi,
Hopefully i can make myself clear :-)
If I have an array if objects and I loop through the array and call a method
of each object in a
different thread, can I use the same handler when the thread completes or
will this cause problems?
Something like:
Private ProcessResultHandler As AsyncCallback = AddressOf ProcessResults
For i = 0 To ComputerArray.GetUpperBound(0)
sfh = AddressOf ComputerArray(i).UninstallAgent
sfh.BeginInvoke(ProcessResultHandler, Nothing)
Next i
Public Sub ProcessResults()
DoSomething()
End Sub
Thanks!
Da
|
3/5/2010 1:09:23 PM
|
2
|
"Dan" <dart...@NOSPAMpagepearls.com>
|
write to a new file at new user defined directory
Hi all!!
in my windows form there should be two textbox and one button.
one textbox is for the name of new directory and the other one is for text file that should be placed in new directory with the name that user enter at previous textbox.
after the button is clicked, program should create a directory with the name entered at the first textbox and create a text file with the name entered at the second textbox .
can anybody advise me a tutorial or some codes to accomplish the task???
thanks in advance...
Submitted via EggHeadCafe - Software Developer Portal of Choice
Dr
|
3/5/2010 12:02:20 PM
|
0
|
recep mansiz
|
How to make browsercontrol surf while executing more code?
I have a userform in VB.bnet which contains a webbrowser control.
I want to let the webbrowser navigate to a certain URL and when the
navigation has finished I want to run further actions against the page.
Whatever I try, the browser won't load a page as long as there's any code
running. Only after the code has been finished the navigation will take
place.
How can i get my browser to navigate as requested and have my code wait for
the browser to complete?
|
3/5/2010 10:43:01 AM
|
1
|
"Geek" <TheG...@hotmail.com>
|
Serialization problem
Hi,
For my webapplication I have a structure with strings, booleans and datasets.
I use it to store the information that the user has entered.
The datasets contain data from a part where the user can add multiple rows
of data.
I want to move this data to a file so it can be read by a windows application.
The webform is basicly a request form.
I thought of serializing it because that is a nice way to transfer the data.
When I serialize the data to a file, all the data from the strings, dates
and booleans are in it, but from the datasets I only see the structure but
not the
|
3/5/2010 9:57:01 AM
|
1
|
=?Utf-8?B?RXJpYw==?= <E...@discussions.microsoft.com>
|
link button to an icon
After linking button to an icon, by : button.image = ...
How can I decide what button size it should be ?
Thanks :)
|
3/5/2010 12:19:32 AM
|
6
|
"Mr. X." <nos...@nospam_please.com>
|
SendKeys and Keyboard Hook
I have an application that is hooking the keyboard and trapping the
PAUSE/BREAK button to perform a function.
I would like to activate that function from my VB .NET 3.5 app by
simulating the keypress. However, using SendKeys("{BREAK}") doesn't
activate it.
The hooking app usually sits minimized in the system tray. I've even
tried bringing it to the foreground before using SendKeys and still
nothing.
Is there a way to simulate a keystroke that will be trapped by a
keyboard hook?
*** Sent via Developersdex http://www.developersdex.com ***
|
3/4/2010 11:13:39 PM
|
0
|
Terry Olsen <tolse...@hotmail.com>
|
How do I determine is string is number?
Using VB 2008. This seemed like a simple question. To make a short story
long...
Dim ssTest as string
Typed in ssTest<dot> expecting for Intellisense to display something like
IsNumber,
but the only method that seemed related was CompareOrdinal. I selected that
and
then used F1 for more info. This method is something totally different. I
found a few
Isxxxx methods, but none that I could use.
Next up, Google. So how much was Google my friend? In this case, not much. I
found asnwers that ranged from doing a loop and testing each string position
for
0 - 9 (ASCII 48 to 57),
|
3/4/2010 6:41:48 PM
|
8
|
"Saga" <antiS...@nowhere.com>
|
Datacontext and reject partial changes
Hi,
How to do this with a DataContext,
I have a form where there is a DataContext, and allowed to make
changes, since this form opens another form,
and in this second form the user have changes, but on leaving the
second form selects the option to cancel. How can I do to delete only
the second form changes, and keep track of changes on the first form?
Thanks
|
3/4/2010 10:07:06 AM
|
1
|
Paul <gambam...@yahoo.es>
|
Using an unmanaged external DLL
I'm moving outside my fairly limited .Net experience here so this may
be a question with a simple, even obvious, answer but if someone would
be kind enough to indulge me...
I want to use a 3rd party DLL to get some data from a set of sensors -
the DLL is effectively an API to the sensor circuitry via a serial
port.
I've got a simple prototype program working so I know that I can
access and use the DLL OK (via ComInterop), but what I'm not clear
about is where the target DLL should be located and how to deploy it.
I'm presuming that this is an unmanaged DLL - if I browse to it fr
|
3/4/2010 9:15:07 AM
|
3
|
prodata <gprod...@googlemail.com>
|
Method does not have the same signature as delegate
Dim wsThread As ThreadStart = New ThreadStart(AddressOf readFile.Read_File)
Submitted via EggHeadCafe - Software Developer Portal of Choice
Creating a WPF Custom Control
http://www.eggheadcafe.com/tutorials/aspnet/32d63678-2798-465e-ad29-c0b45fb68b78/creating-a-wpf-custom-con.aspx
|
3/4/2010 2:43:25 AM
|
2
|
ketia kem
|
create long folder in vb.net 2008
How do I create long folders(directories) in vb.net?
e.g. md c:\MS Office #10, 11
|
3/4/2010 12:44:01 AM
|
2
|
=?Utf-8?B?Umljaw==?= <R...@discussions.microsoft.com>
|
JPG Processing in .NET
I shrink pictures in .NET and the quality of the JPG is very low.
Is there anything to do about that?
Thank you,
Samuel
|
3/4/2010 12:35:50 AM
|
3
|
"Samuel" <smshul...@hotmail.com>
|
Short Path Name via VB.NET
I have a legacy app from a manufacturer that requires a driver file
with a path in short format. The path is guaranteed to exist so there
are no problems there as I understand the path (or file) must exist in
order to make the conversion. I looked around a bit and found several
articles showing how to do this with an API call. Is there no native
method in the .NET framework that will give me this?
thanks
AGP
|
3/4/2010 12:03:38 AM
|
6
|
DIOS <sindi...@gmail.com>
|
Help with clickonce deployment over VPN
We have an office in a different location where two employees need to
use my program.
We are using Small Business Server 2003 R2 with ISA Server 2004 as our
firewall, which is set up to receive VPN connections. I am using a
self-made certificate for Exchange webmail.
I currently publish to a folder on the server and all the office
computers can install and receive updates from that location.
I need the VPN clients to be able to install from the same location.
Heck, I'd be happy if they installed from ANY location at this point!
I've tried to FTP, I've tried to access a network
|
3/3/2010 9:14:41 PM
|
1
|
kevinp <kev...@nospam.com>
|
How do I get the identity of the current user...
For a web app running on an intranet, how do I get the identity of the
current user? They have to be logged onto our domain so I should be
able to access their identity.
|
3/3/2010 8:08:06 PM
|
5
|
dgk <...@somewhere.com>
|
Another setup option
Hi
I need a slightly better setup option than is included in vs 2008. My
requirements are as below;
- Well enough integration into vs IDE.
- Some UI element to reduce learning curve (Wix is great but I find the
scripting daunting).
- Allows customisation of shortcut names and app target folder names based
on some variables such as app version/build date etc.
Any recommendations would be appreciated.
Many Thanks
Regards
|
3/3/2010 6:41:08 PM
|
1
|
"John" <i...@nospam.infovis.co.uk>
|
Create Web Share
Hi Gurus,
I know how to create shared folder.
But don't have any idea how to create a web share.
I'll appreciate any help/suggestion I get.
Thanks,
Dan
|
3/3/2010 3:28:19 PM
|
2
|
"Dan" <...@nospaml.com>
|
Don't understand permissions
This is a multi-part message in MIME format.
------=_NextPart_000_0003_01CABAAC.CEAA9EF0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 8bit
I have a small app that makes a backup copy of a file in the folder
where it is installed on startup (using System.IO.File.Copy).
On some systems this doesn�t work, and the user gets a permission denied
to the folder (or file?) in question.
I have tried looking at the FileIOPermission class, but I think I�m
thick as melasses, because I don�t understand how it works at all, and
no matter what I do, I c
|
3/3/2010 7:37:46 AM
|
0
|
"Johnny J�rgensen" <johnny.jorgen...@sverigeflyg.se>
|
Set Textbox BorderStyle to None Dynamically in 2008
The line below marked with * is not valid in vb.net 2008; how do I set the
border dynamically?
Dim cControl As Control
For Each cControl In Me.Controls
If (TypeOf cControl Is TextBox) Then
cControl.BackColor = Color.White
cControl.BorderStyle=None '*****************'
End If
Next cControl
|
3/2/2010 11:36:01 PM
|
2
|
=?Utf-8?B?Unlhbg==?= <R...@discussions.microsoft.com>
|
User Controls Gets bigger
Hi all,
As I insert the customer User Controls on the for everything becomes bigger
i.e. controls and the overall size but not the font
Any suggestion why this would happen
Thank you in advance,
Samuel
|
3/2/2010 10:55:33 PM
|
1
|
"Samuel" <smshul...@hotmail.com>
|
Refer object as a common class.
Hello.
If I have the code : sender As System.Object
and sender is Button class.
How can I refer sender as a button ?
Thanks :)
|
3/2/2010 10:42:00 PM
|
6
|
"Mr. X." <nos...@nospam_please.com>
|
Dynamically adding menu items and their OnClick events
How do I add items to a menu while simultanesously adding an OnClick event
for each. I have an 2Xn array of text items (labels) and matching URLs.e.g.
"Google", www.google.com
"Yahoo", www.yahoo.com
I want the first column to be the menu label and the second column is where
the browser goes when the menu is clicked. OK, so the first part is easy.
AdditionalToolStripMenu.DropDownItems.Add(strResearchLinksArray(i, 1))
How do I go to strResearchLinksArray(i, 0) when that item is clicked. I am
vb.net 2005.
--
Thanx & Regards,
Anil Gupte
|
3/2/2010 4:38:13 PM
|
3
|
"Anil Gupte/iCinema.com" <anil-l...@icinema.com>
|
Problem calling unmanaged DLL from VB.NET
I've been bashing my head up against a brick wall for 4 days, and I've
reached the limit of my frustration and knowledge. I'd appreciate some ideas
on what I'm doing wrong.
I have a simple Visual Basic Express 2008 program. It calls a DLL (supplied
by others). Calls to the DLL in small (trivial) programs work fine. When the
program grows in size I get a "vshost.exe has stopped working" message. It
happens when I call any dll function that tries to return a string. I have
googled and tried everything.
The full program is a few thousand lines, much of it auto coded because of
|
3/2/2010 12:20:26 PM
|
10
|
"Marc Hillman" <7owsx1...@sneakemail.com>
|
Windows Service
Hi all,
I have SQL Server Agent and under it I've some jobs that runs with a definde
schedule (they can run at the same time).
SQL Server Agente doesn't belongs to SQL Server Express edition, so I'm
lookig for a way to build a such schema with a .net windows service.
Let's say I need 10 jobs:
1) it is better to have 10 windows services?
2) it is better to have 1 windows services with 10 threads?
in the first case, I need to have 10 different project that installs 10
different services with 10 different name (it is correct?)
in the secound case, how can I tell the service (fr
|
3/2/2010 9:15:17 AM
|
9
|
"Andrea Caldarone" <fakeandrea.caldar...@poste.it>
|
ctype question.
Hello, I have a button control (button1) on form.
In my project I create a class mybutton that inherits by button class.
Now, I want to change button1 class in mybutton. How can I do it?
Thanks
I tried this, but it doesnt work
Dim a As New MyButton
a = CType(button1, MyButton)
Me.Controls.Add(a)
Me.Controls.Remove(button1)
Thanks
|
3/2/2010 8:52:17 AM
|
15
|
"zzz" <...@tin.it>
|
getting a hardware value from the PC.. like CPU etc.
Hi,
Is it possible to get some sort of unique ID from a PC, such as a CPU serial
number or motherboard serial number ?
I want to just to a quick check to see if my application is on another PC.
Thanks
|
3/2/2010 1:58:40 AM
|
1
|
"AussieRules" <nos...@nospam.com>
|
Writing to text file
Hi all! Using VB 2008.
I need to write to a text file. Create and write if it does not exist
or append if it does. I have this code:
If System.IO.File.Exists("G:\work\temp\TestTxtFiles\Box\testfile.txt")
Then
'Open file for append.
Using oFile As System.IO.StreamWriter =
System.IO.File.AppendText("G:\work\temp\TestTxtFiles\Box\testfile.txt")
oFile.WriteLine("Test file line 4")
oFile.WriteLine("Test file line 5")
oFile.WriteLine("Test file line 6")
oFile.Close()
End Using
Else
'Create a test text file.
Us
|
3/1/2010 10:50:30 PM
|
2
|
"Saga" <antiS...@nowhere.com>
|
Progress bar and system thread
Hy,
I have in my application a function which reads from database and
export data to txt files. Now i wantz to make progress bar who will,
depends of number of record populate progress bar or status of my
operation.
Please, does anyone know how to do that?
Regards
|
3/1/2010 10:36:41 PM
|
1
|
imarkic <imarki...@gmail.com>
|
"Automating Word document for different versions of Word"
I am developing an app (in VB 2008) that will open a Word template,
populate some bookmarks, save the document as a Word document and then
allow the user to access the Word document and add their own info.
My problem is I don't know now (while I'm developing the app) what
versions of Word the user will use - they have a mixture of Word
versions (2002, 2003, 2007) so how do I develop for them all - I
understand I must have a reference to the Word library but I don't
know which one(s).
Any help will be gratefully received.
Regards and Thanks
Alan
|
3/1/2010 2:56:16 PM
|
3
|
alanbr <ambrad...@hotmail.com>
|
http status code woth webbrowser component
Hi guy.. i am a newbie in vb.net
I am trying to get http status code (200,404 ecc) from webbrowser
component.. but i dont know how!
Please help me!
please be easy
Thank you.
Nando
|
3/1/2010 1:59:29 PM
|
0
|
"Nando The Jack" <...@io.it>
|
datareceived event is not fired
Hi, I'm using a serial port control with bytethreshold=8
I'd expect the event is fired everytime i get new 8 bytes, instead in byte
to read i get also 40 bytes but sometime the event is not fired.
I'd wish to know the reason and how could I solve this problem.
Thanks
|
3/1/2010 11:08:18 AM
|
1
|
"mosris" <mos...@b.it>
|
How Do I Share Data Files?
I need to deploy an application which shares data among all users of a
computer. I thought I could do that by putting the data file in the
Common Application Data folder. However, that doesn't work because
Vista is using virtualization to make a unique copy of the file for
each user, so it isn't being shared.
How do I deploy an application with shared data? Is there a document
anywhere that describes the best practices for folder usage in Vista?
-TC
|
3/1/2010 4:29:50 AM
|
0
|
TC <existential.philoso...@gmail.com>
|
using a single module or form in multiple projects
Hi,
I have a project that I have developed, and I want to create a new project
that will use about 50% of the code and form objects in the first project ?
Is there a way to share a module or form accross multiple projects ?
Thanks
|
3/1/2010 2:11:24 AM
|
2
|
"AussieRules" <nos...@nospam.com>
|
Button.PerformClick
Hi,
Using VB2003.NET.
I've got a TabControl with 3 tabs. On one tab is some status information and
on the other two tabs, some data related to settings.
I've got a timer and whenever it ticks, I see how long it has been since a
certain automatic action has occured (trying to connect to a device across
the network). When its been 20s since the last connection attempt was made,
I click a button which does the connection attempt. The button is on the 2nd
tab.
The problem I have is that if I viewing the 2nd tab, then when I call
"btnMyCutton.PerformClick()" it actually does
|
2/28/2010 5:11:25 PM
|
4
|
"Alain Dekker" <abdek...@NOSPAM.fsmail.net>
|
Setup in vs 2010
Hi
Is setup project significantly better in vs2010?
Thanks
Regards
|
2/28/2010 4:15:34 PM
|
3
|
"John" <i...@nospam.infovis.co.uk>
|
Class Inheritance Issue
Hi Group
I think that what I would like to do is not possible.
I would like to create a class with four possible sub classes which must
inherit data from the master class.
In the first class I would like to do some work which would then instantiate
one of the four sub classes without calling New in the first class.
The sub classes each has the potential for holding large amounts of data,
there for I don't want to instantiate them if not necessary.
When I do call the chosen sub class from the first class, I would like it to
inherit some of the data that the first classes created.
|
2/28/2010 3:04:47 PM
|
5
|
"mickey" <mickmarsh...@earthlink.net>
|
Problem Removing Item
Hi
I'm new to VB.Net and I'm wondering if there is any function available that
will remove a troll called Paul Clement (MVP) from the VB6 newsgroup?
Mike
|
2/28/2010 10:50:58 AM
|
5
|
"Mike Williams" <M...@WhiskyAndCoke.com>
|
Creating icons
Hi all, I have vb code below which convert image to icon but there
are two problem with this. One when i try to save 16 x 16 size icons,
it creates black bacground whith that icon. Two it saves 32 x 32 icon
ok but in different colours from the original image colours. I'll be
very greateful if any friend has sultion for this.
Dim img As New Bitmap(PictureBox1.Image, 32, 32)
Dim g As Graphics = Graphics.FromImage(img)
g.InterpolationMode = Drawing2D.InterpolationMode.HighQualityBicubic
g.DrawImage(img, 0, 0)
Dim Hicon As IntPtr = img.GetHicon
Dim newicon As Icon = System.Drawing
|
2/28/2010 9:59:46 AM
|
1
|
K <kamranr1...@yahoo.co.uk>
|
Concurrency violation handling in data adapter
Hi
When one updates an adapter like DataAdapter.Update(DataTable) and one gets
the concurrency violation error, what is the recommended method to resolve
the violation gracefully? A code segment would be very much appreciated.
Many Thanks
Regards
|
2/28/2010 3:09:53 AM
|
1
|
"John" <i...@nospam.infovis.co.uk>
|
Deleting record from bindingsource
Hi
I have a winform app with form control bound to a binding source
TblClientsBindingSource. The binding source has a data table as its data
source as per below code;
dAdapter = New OleDbDataAdapter("SELECT * FROM tblClients WHERE ...", Conn)
dAdapter.Fill(dTable)
TblClientsBindingSource.DataSource = dTable
My question is; how do I delete the record currently pointed to by the
binding source from the backend database table tblClients?
Thanks
Regards
|
2/28/2010 2:52:25 AM
|
2
|
"John" <i...@nospam.infovis.co.uk>
|
User defined events
Hi
How can I setup a mechanism to raise user defined events which I can catch
at some point?
Thanks
Regards
|
2/28/2010 12:18:27 AM
|
1
|
"John" <i...@nospam.infovis.co.uk>
|
Feasibility of using visual basic express
Hi
Is it possible to develop sql server db winform apps using visual basic
express?
Thanks
Regards
|
2/27/2010 6:38:20 AM
|
4
|
"John" <i...@nospam.infovis.co.uk>
|
Namespace Question
Hello -
The following two files are part of a project in Visual Studio 2008.
I'm a little confused about the way doing the Imports NamespaceA.cTest
is hiding the getValue() from Module Main. This works without the
"NamespaceA." if I specify NamespaceA as the root namespace for the
solution.
I thought I could access both getValue() but I guess I don't
understand something quite right ...
File1.vb:
Imports NamespaceA
Imports NamespaceA.cTest ' <<< This required the "NamespaceA." below
Module Main
Dim lTest As New cTest
Sub Tester()
lTest.getValue(1)
|
2/26/2010 8:31:06 PM
|
2
|
Joe Duchtel <duch...@gmail.com>
|
BUY FAKE PASSPORTS OF SOUTH AFRICA,FAKE MEXICAN PASSPORT FOR SALE! FAKE UNITED KINGDOM(UK) PASSPORTS
Our team is a unique producer of quality fake documents.
We offer only original high-quality fake passports, driver's licenses,
ID cards, stamps and other products for a number of countries like:
USA, Australia, Belgium, Brazil, Canada, Italia, Finland, France,
Germany, Israel, Mexico, Netherlands, South Africa, Spain, United
Kingdom. This list is not full.
To get the additional information and place the order just visit our
website:
http://www.sellingpassports.com
>> Contact e-mails:
General support: support@sellingpassports.com
Technical support: tech@sellingpas
|
2/26/2010 7:23:45 PM
|
0
|
John Dawson <t...@sellingpassports.com>
|
Confusion in VS 2003 over declaring a new class....
We have an app that requires .net 1.1 to work, so are using VS 2003 for
convenience.
I'm most of the way through cleaning up the code that was originally created
in VS 2008, so that it will not error on build.
One particular statement has me a bit confused, as I cannot find any obvious
examples to explain it.
m_Results.PR = New Validator.Details
currently complains that type Validator.Details is not defined, which is
correct.
I tried to add a new Details class to the Validator class, and declared
several variables that are then used
m_Results.PR.UPRN = getSelectedRowValue(g
|
2/26/2010 5:36:02 PM
|
0
|
=?Utf-8?B?b2xkX2dvYXQ=?= <oldg...@discussions.microsoft.com>
|
ANTIVIRUS FREE DOWNLOAD 8982
Many problems with performance and safety of your computer can be solved
easily with an updated antivirus and recognized. Antivirus Free Download
Microsoft best practices in:
http://yourantivirusfreedownloadonthissite.blogspot.com/
Content Site Links:
http://yourantivirusfreedownloadonthissite.blogspot.com/
http://yourantivirusfreedownloadonthissite.blogspot.com/2010/01/what-is-antivirus.html
http://yourantivirusfreedownloadonthissite.blogspot.com/2010/01/free-download-antivirus-recommended-by.html
http://yourantivirusfreedownloadonthissite.blogspot.com/2010/01/antivirus-o
|
2/26/2010 1:39:01 PM
|
0
|
=?Utf-8?B?YW50aXZpcnVzIGdyYXRpcw==?= <antivirusgra...@discussions.microsoft.com>
|
Size of remote file
This is a multi-part message in MIME format.
------=_NextPart_000_0004_01CAB6D6.DC14FCE0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
I want use System.Net.WebClient to download a file for which I have a
URL. That in itself is no problem.
But before doing that, I would like to know the size of the file in
question.
Does anybody know how to get the size of a file that resides on a remote
web server (over which I have no control) without actually having to
download it first?
TIA,
Johnny J.
------=_NextPart_000_0
|
2/26/2010 10:27:57 AM
|
2
|
"Johnny J�rgensen" <johnny.jorgen...@sverigeflyg.se>
|
Not having to wait for routine to finsh / run three events at the same time
I developed a simple app, it goes out to an access db and populates a
list box and pings as server. Pretty much how can I do both events at
the same time without haveing to wait for one to complete before
moving on to the next one. It acts like an application monitor where I
ping the servers every 15mins and see if they are up, they are totally
seperate Public routines, sound simpel but it is not. I just want to
ping all three severs and get the ping times. I have everything coded
it is just the waiting that has me stuck! Thanks
|
2/26/2010 5:04:04 AM
|
1
|
Spero <robsp...@gmail.com>
|
Binding source data source
Hi
I have a winform with form controls bound to a binding source. How can I;
1. Use a dynamically created sql to retrieve data from the backend table
and use it as data source for binding source?
2. Save the data back to the backend table when data is changed in the form
controls and user presses Save on binding navigator?
Many Thanks
Regards
|
2/26/2010 12:13:12 AM
|
1
|
"John" <i...@nospam.infovis.co.uk>
|
Delete control?
I'm using VB in VS2003.NET. I have a TabControl with a couple of group
boxes. I've added some buttons and labels to a group box, but now I want to
delete the controls. Cannot! Why? I've tried pressing "Delete",
right-clicking but Cut and Delete are disabled. I can't even delete the
whole group box.
What am I missing here??? Is this some strange setting locking down group
boxes on a TabControl or mabe a bug in VS2003.NET?
Thanks,
Alain
|
2/25/2010 2:31:33 PM
|
1
|
"Alain Dekker" <abdek...@NOSPAM.fsmail.net>
|
How to integrate excel worksheet in browser ?
Dear All,
Please help !!!
How to display excel worksheet in browser ?
Showing Excel Worksheet Format on the browser.
Thank you !!!
|
2/25/2010 9:39:05 AM
|
3
|
Kelvin <kelvin...@gmail.com>
|
(New Object).Method
Is there a simpler acceptable syntax for
(New Class).Method
than
With New Class
.Method
End With
In VB.NET you can use Call
Call (New Class).Method
but this syntax is not acceptable in VB6 (with or without the () at the
end).
FYI I am looking for VB6 and VB.NET answers, if they are different.
(Using Call in VB.NET is "acceptable", I'm just wondering if there is an
alternative syntax I haven't thought of.)
BTW Note that if you define an "identity" function:
Function Identity(ByVal C As Class) As Class
Identity = C
End Function
(And in VB.NET you can use Ident
|
2/25/2010 7:27:47 AM
|
6
|
"Mark Hurd" <markh...@ozemail.com.au>
|
Print values dynamically on a form
I have a form that needs to display values from an array on the form; how do
I achieve the following?
If item count in array is < 20 then print
Val1 Val2
Val3 Val4
Val5 Val6
and so on
If items in array is > 20 then print
Val1 Val2 Val3
Val4 Val5 Val6
Val7 Val8 Val9
and so on
The following code works fine and prints values in two columns butI need to
modified it to print in three columns if nItemsCount > 20
for i=1 to nItemsCount
If i Mod 2 Then
nX = nX * 25
nY = nY - 15
End If
myVal.Name = "myVal" & i
myVal.
|
2/24/2010 8:31:01 PM
|
2
|
=?Utf-8?B?Umljaw==?= <R...@discussions.microsoft.com>
|
How do I process text file?
Hello all. I am using VB 2008 and need to process text fies. Looking
at MSDN Lib I see that two methods are used to read a text file:
Using StreamReader
Dim fileReader As System.IO.StreamReader
Using ReadAlltext
Dim fileReader As String
fileReader = My.Computer.FileSystem.ReadAllText("C:\test.txt")
Is one preferred obver the other? Any considerations I should look into?
Although the files that will be processed are text, I have seen a "bad"
non ASCII character get into them. I validate for this condition, but
given the fact that it is a non ASCII char, will either of the
|
2/24/2010 5:16:01 PM
|
4
|
"Saga" <antiS...@nowhere.com>
|
VB code help
Hi all, I am creating an application on Visual Basic 2008 to convert
any image into icon. I have written code (see below) which works
fine. It converts any image to icon in specified size. But the
problem is that when I try to use that icon I get error message
saying "invalid image property" or "invalid image" etc. Please can
any friend tell me that what amendments i need in my code below to
achive my objective. help in shape of code will be much appriciated.
Dim imageFinal As System.Drawing.Image = Nothing
Dim g As System.Drawing.Graphics = Nothing
imageFinal = New System.
|
2/24/2010 12:17:42 PM
|
3
|
K <kamranr1...@yahoo.co.uk>
|
VB Express 2008
Hi,
I just re-installed VB Express 2008, in the hope that it will finally be
working properly with Vista 64 and SQL Express2008.
But now the only thing that work is the main interface, but I can not to
anything with it since the damn thing does not work with SQL Express 2008 ,
and it does not let me do a thing
What can I do to fix this
BTW I downloaded the installation ISO file from MS a few days ago
--
Thank You in Advance
Merci a l'avance
Martin
|
2/23/2010 7:25:07 PM
|
6
|
"Martin Racette" <rat7_2...@hotmail.com>
|
A list of all interfaces in .net 3.5SP1
I want to make some wise choices when making my objects. I want to add
features to them, but don't feel like writing my own interfaces if they
already exist. Since I don't totally know what's out there in .net 3.5sp1 as
far as interfaces go, is there a simple easy way to find a list of them
somewhere? I would need them from msdn if possible.
|
2/23/2010 6:50:58 PM
|
10
|
"Andy B." <a_bo...@sbcglobal.net>
|
Use one routine for several events
I'd like to set a flag called "bEditing" (Dim as Boolean) whenever the user
has entered (called the Enter event) on any of the edit boxes on my form.
Similarly I'd like to set "bEditing" to False when the Leave event is called
on any edit box.
Currently I'm having to set a separate sub-routine for each event for each
edit box. Is there a way to pool them? You could do with Visual C++ 6.0 by
manually editing the message map, and most other languages so I expect
there's away to do it in VB!
Using VB 2003.NET
Thanks!
Alain
|
2/23/2010 5:11:49 PM
|
3
|
"Alain Dekker" <abdek...@NOSPAM.fsmail.net>
|
interfaces...I'm confused!
Hi.
I have read tons of blog posts and articles about how and when to use
interfaces. I have seen some people use them to define every object they
create and I have seen some people say to not ever use them. Other people
say not to use them unless you have some actions that multiple objects will
use, an example is like this: You can have an interface that tells all
breeds of cats that they must eat their food, sleep or even meow. Now, you
have different kinds of cats: house cat, farm cat, tiger, lion, panther. All
of these cats do the exact same thing, just in very different w
|
2/23/2010 4:48:14 PM
|
11
|
"Andy B." <a_bo...@sbcglobal.net>
|
Type Mismatch
I have a type *Address* and a type *ResidentialAddress* which inherits
Address. When I try to execute SOMECLASS.ResAddr = OTHERCLASS.Addr I get the
inevitable type mis-match error "unable to cast type ObjectModel.Address to
Type ObjectModel.ResidentialAddress" I was thinking that since
ResidentialAddress inherits Address, there must be some way to do this
assignment
|
2/23/2010 4:44:01 PM
|
2
|
=?Utf-8?B?RGF2ZSBU?= <Da...@discussions.microsoft.com>
|
GetTickCount() confusion in VB
I know how to privately declare a function exported from kernel32.dll as
follows:
Private Declare Function GetTickCount Lib "kernel32 as Long
and then to use code like this:
Dim lElapsed as Long
lElapsed = (GetTickCount() - lPreviousTimeValue)
' etc
but I'm curious. Why is the type Long? The VB.NET (2003.NET) documentation
tells me that a Long is a 64-bit signed number. In my experience of all
previous compilers (Delphi 7, Visual C++, etc), I'ce always known
GetTickCount() to return a DWORD (unsigned 32-bit number).
In fact, the MSDN documentation states that:
DWORD WINAP
|
2/23/2010 11:46:36 AM
|
8
|
"Alain Dekker" <abdek...@NOSPAM.fsmail.net>
|
How to change 7 to 07 in VB Script?
Hi experts,
Here is my code (test.vbs)
<<<<<<<<<Start
if CHour = 7 then
CHour2 = "07"
CurrentHour = cstr(CHour)
end if
MsgBox " Current Hour " & CurrentHour
>>>>>>End
If I have the number 7, I want to replace it with 07 in my code. What
is wrong in the above snippet?
In the MsgBox, I see only the Current Hour with no 07 :(
Can you kindly help me out here?
Thanks,
-J
|
2/23/2010 1:49:50 AM
|
1
|
Rider <cleargu...@yahoo.com>
|
how to set default control modifier to private (winforms)
Hi,
In new WinForms project, whenever I drop a control on a form / user control,
its Modifiers property defaults to Friend.
Is there any way to change it to default to Private?
|
2/23/2010 12:11:01 AM
|
0
|
=?Utf-8?B?U2VyZ2V5IFBvYmVyZXpvdnNraXk=?= <SergeyPoberezovs...@discussions.microsoft.com>
|
LDAP error
Hi,
I'm testing a LDAP connection to my companies Active directory server and
I'm getting the "An invalid dn syntax has been specified." error all the time.
Here is my code:
Dim entry As New DirectoryEntry()
entry.Path = "LDAP://xxxxxx.company.se:389"
entry.Username = "uid=MYAPP,ou=users,ou=internal,o=company"
entry.Password = "yyyyyyyyy"
entry.AuthenticationType = AuthenticationTypes.Secure
Dim search As New DirectorySearcher(entry)
search.ExtendedDN = ExtendedDN.Standard
search.Filter = "(&(ou=ENN)(eriIsManager=Y))"
search.PropertiesTo
|
2/22/2010 1:06:01 PM
|
0
|
=?Utf-8?B?RXJpYw==?= <E...@discussions.microsoft.com>
|
Add DLL at runtime.
I have a problem.
I'm making an app in VB9 VS 2008.
The app is going to be a form MDI and a menu.
What I need to do is search app.path/Plugin or something like that and find
..DLLs.
My DLLs will have a couple of functions.
First I need the Main form to add a menuitem in the menu.
This menu item should then declare an instance of a form in the DLL as an
MDIchild and open the form.
I have looked high and low on the internet and MSDN to find what I need
without success.
As I'm writing both the main program and the DLLs that make up the add-in
functionality I'm thinking I don
|
2/22/2010 7:37:46 AM
|
5
|
"Tomas Andersson" <ki...@hotmail.com>
|
how to force a text box to always be in focus.
Hi,
I have an application that has a single text box, but many many buttons, and
a few other controls (grid etc).
The problem is that the application has a barcode scanner that acts like a
keyboard. What I need to have is that the text box always has the focus, so
at anytime the barcode scanner is used, the value is in the text box.
If I push a button or slide the grid etc, the focus moves from the text box
to the other control, which means when the bar code scanner scans, the value
is not entered into the text box.
Is there a way to have it so that the txt box always has
|
2/22/2010 1:31:56 AM
|
6
|
"AussieRules" <nos...@nospam.com>
|
Big problem with VS2008 & WPF
I just made a small change to a WPF project to put the usercontrols into
their own assembly.
I made the changes and all seemed good (for a while, a common WPF
occurence).
Now I have a main project and several (DAL, UserControls) assemblies. I
have the reference correct since it did compile correctly once.
I reopen the solution an hour later and .......
I have so many problems with assembly not found etc.
I try to just compile the usercontrol assembly and .... it compiles the
entire solution and it just doesn't work. I get errors from the main
project attempting to re
|
2/21/2010 7:27:55 PM
|
1
|
"Lloyd Sheen" <...@b.c>
|
How do I find which screen my app is running in?
Hi,
When my app starts it always starts up in the primary display of a
multi-display setup. If the user decides to always put my app in screen 2, is
there a way in VB that allows you to identify the screen you are running in?
I would then check the screen I am running in as the user closes the app and
store it in a registry setting. Then when the user re-opens the app make sure
it comes up in the same screen (probably needs a test to ensure the user
hasn't disconnected a screen since you last opened)?
I have had a look at the "My" command and can find read only properties tha
|
2/21/2010 6:26:01 PM
|
2
|
=?Utf-8?B?U2l2?= <...@discussions.microsoft.com>
|
VB2010 Beta1 ActiveX problem
I have an ActiveX in my test program. When I drag it onto the form and
compile, in VB2005 it would place a copy of AxInterop.XXX.dll file and also
Interop.XXX.dll.
In VB2010 it only places AxInterop.XXX.dll there and when I try and run it,
it errors:
System.InvalidOperationException was unhandled
Message=An error occurred creating the form. See Exception.InnerException
for details. The error is: Could not load file or assembly 'Interop.XXX,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its
dependencies. The system cannot find the file specified.
Any
|
2/21/2010 6:18:54 PM
|
2
|
"Jerry Spence1" <...@2.com>
|
data repeater in power code examples ???
Hi
I want to add the data repeater to my existing winforms application. My
application does all the database calls via code, so I am not using the
designer(s) to create table adapters/dataset etc... Its all done in code.
So I am having trouble binding the data repeater to an existing dataset.
Does anybody know how to do this, or some sample code that shows how to do
this, and then have a text box in the datarepeater show data in the dataset
?
Thanks heaps...
|
2/21/2010 8:56:05 AM
|
0
|
"AussieRules" <nos...@nospam.com>
|
Messaging problem
I have a windows server, and a number of Internet-connected PC's. I need to
create a program for both ends to transfer simple text messages. The problem
is that I don't want the user to have to open ports on their router so I was
thinking of the PC opening up a connection to the server via TCP and for
that connection to allow two way traffic. Is this possible?
I'm on VB2005.
-Jerry
|
2/20/2010 1:02:36 PM
|
4
|
"Jerry Spence1" <...@2.com>
|