Forum: VB.NET Apr 10th, 2008 |
| Replies: 0 Views: 1,001 I have the following code to re-create an image
the program fails due to lack of memory even though I have 2gb memory
How can I use disk space instead of memory which fails at this line:
Dim... |
Forum: VB.NET Apr 2nd, 2008 |
| Replies: 1 Views: 2,041 I am developing an app on XP which uses a 3rd party ocx > imageviewer2.ocx
In development it works fine but program does not run when insatlled on a vista machine
I presume it is because the... |
Forum: VB.NET Jan 23rd, 2008 |
| Replies: 2 Views: 2,465 I haven't a clue what you are implying, does it relate to this question? |
Forum: Windows Software Jan 22nd, 2008 |
| Replies: 3 Views: 1,920 works like a charm
for others reading this we have 2 pc,s pca & pcb
pcb dive c failed but ghost was on d
pca drive put in usb case and connected to pcb
must not be used through hub, must... |
Forum: Windows Software Jan 20th, 2008 |
| Replies: 3 Views: 1,920 thanks for reply, I will try it, however a problem might occur when restore is complete to old c partition, then pc tries to reboot on it's own c drive, there does not seem to be an option to ignore... |
Forum: Windows Software Jan 20th, 2008 |
| Replies: 3 Views: 1,920 I have an old coputer which the c drive has failed
it was partitioned to be c & d
I have ghost 2003 backups on d (which can be moved elswhere)
I now have the drive in a case which has usb... |
Forum: VB.NET Jan 20th, 2008 |
| Replies: 0 Views: 797 I have an app designed on a standard screen, but now I have a 15.4 wide screen the images are distorted
The ratio of width to height should be height / 0.75 for standard jpg files
but setting... |
Forum: VB.NET Jan 18th, 2008 |
| Replies: 0 Views: 1,676 I have an app that print images from an arraylist with a corresponding arraylist for a text description of the image
I am using the addhandler function to retreive the arraylist data, everything... |
Forum: VB.NET Jan 18th, 2008 |
| Replies: 2 Views: 2,465 How do I find the code to add/update/retrieve text to exif data as comments
Also what are limitations, eg number of characters and is it just plain text or control characters eg cr/lf etc for... |
Forum: VB.NET Nov 13th, 2007 |
| Replies: 0 Views: 1,385 I have an app that requires text which is typed into a text box which is then placed in an access database, later retrieved then printed in a defined area
the problem is that on the screen near... |
Forum: VB.NET Feb 9th, 2005 |
| Replies: 0 Views: 2,429 Microsoft has the following example of how to use itemdata in .net
It works fine if you are populating row by row from 0 to whatever
I need to reset itemdata in a particular row that has been... |
Forum: VB.NET Jan 30th, 2005 |
| Replies: 1 Views: 4,289 I want to modify my app to include a list box of thumbnails
say 3 or 4 across horizontal plane (depends on width of list box0
probaly add file name underneath as in explorer
Any help much... |
Forum: Windows NT / 2000 / XP Sep 5th, 2004 |
| Replies: 3 Views: 3,806 Thanks for that, I just tried it & I am now confused.
My documents folder did point to new folder, but when I opened Excel & tried to save a document it did not list new folder, only MyDocuments
... |
Forum: Windows NT / 2000 / XP Sep 1st, 2004 |
| Replies: 3 Views: 3,806 I want to change the registry to enable user to save in a different folder, for all software that defaults to my documents, my music, my photos
I know word has this option but I need to change it... |
Forum: VB.NET Aug 8th, 2004 |
| Replies: 2 Views: 6,906 Sorry it took so long to reply, & thank you for taking an interest in my problem
It took a while to determine all the options I wanted to exclude, but the use of keyascii was most useful
Thanks... |
Forum: VB.NET May 20th, 2004 |
| Replies: 2 Views: 6,906 I have a combo box I want to limit user input
I have the following code on 'keypress' event
dim keyascii as short = asc(e.keychar)
dim s as string
if keyascii = 45 then
exit sub
end if |