19,728 Topics

Member Avatar for
Member Avatar for Geek-Master

I have custom updates that need to be pushed out ever so often and need all receiving PCs to be booted up. Unfortunately, end-users will shut down their computers when they leave for the day. I need a way to (based on the MAC address) boot up a PC. All …

Member Avatar for Geek-Master
0
481
Member Avatar for bhavna_816

I am accessing MS Outlook Folders through VB.NET and displaying it in an HTMl page. now there are some attachments with the messages,i have given a href link to the attachment name which should open the attachment in another page. I want to see the contents of the attachements in …

0
94
Member Avatar for bhavna_816

There is a querysting for example abc = "<a href=test_table.exe?PFolder=" & oPFolder.Name & "&SFolder=" & sfolder.Name & "&oMails=" & fItem & ">" s.WriteLine(abc) this oPFolder.Name and sfolder.Name contains some words with spaces. suppose oPFolder.Name is Personal Folders and sfolder.Name is Deleted Items. s is the streamwriter for htm page. When …

0
43
Member Avatar for him_mca

i have a datadriven form which is fetching data from sql server and displaying it into textfile now i want if any error occures in this application then it will log error into the following database tabel i have created following fields,And table name is ErrorLogFile errorid auto edate datetime …

0
49
Member Avatar for bhavna_816

There is a filestream and a streamwriter in Sub Main() Dim fs As New FileStream("c:\OL_Table.htm", FileMode.Create, FileAccess.Write) Dim s As New StreamWriter(fs) //code goes here s.Close() fs = New FileStream("c:\OL_Table.htm", FileMode.Open, FileAccess.Read) Dim d As New StreamReader(fs) d.BaseStream.Seek(0, SeekOrigin.Begin) and there is a class having functions Public Class MailItemClass Function1: …

0
57
Member Avatar for bhavna_816

I have two for loops from which I am displaying the folder items in a table. i.e. from outer for loop I am displaying the folder names and from inner loop I am displaying the contents of that folders . Now I want to do paging since in case of …

Member Avatar for Geek-Master
0
87
Member Avatar for bhavna_816

Actually i have coded this whole thing in console and displaying the output as a table format in HTML.my output is something like this in HTML page: Deleted Items From: Subject: Received: Size: No.of Attachment(s): bhavna final 1/12/2007 2:34:14 PM 4949 0 Inbox From: Subject: Received: Size: No.of Attachment(s): bhavna …

0
50
Member Avatar for heading

hello I am able to covert text into wave file, and I need this wave file to be converted into an mp3 file. can anyone help me in this issue thanks

0
51
Member Avatar for bhavna_816

I have created a console application which shows the output on an HTML page.I want the contents of that HTML page should be paged. It means the contents should be displayed in page format like Prev Next Can i do this in VB.NET console Application?

0
53
Member Avatar for extofer

What is the easiest way to migrate a project, with about 40 forms, 3 modules, 3 classes, and several designers (Crystal Reports) from VB6 to .Net 2003?? Any ideas?

Member Avatar for waynespangler
0
73
Member Avatar for marcusbris

Hi there i have a problem with my little calculator project, i did everything but i got stuck at the decimal place, What i want the calculator to do is to give out an error when a user try to put in morethan one decimal point eg. 12.30.30 or 12..30. …

Member Avatar for waynespangler
0
101
Member Avatar for bhavna_816

I wrote a code in VB.NET to access Microsoft Outlook Folders.When I want to see the contents of the Address Book it shows a Pop up box "A program is trying to access e-mail addresses you have stored in Outlook.Do you want to allow this? If it is unexpected, it …

Member Avatar for Dukane
0
132
Member Avatar for Cammarata123

Hi I'm making a mouse recorder. I want to record whatever the person does and then play it back when they want. I have everything right( I can record and play back the mouse movement) but What I cant do is record the clicks. Do you know how I can …

Member Avatar for iamthwee
0
91
Member Avatar for bhavna_816

How can we do this in VB.NET? //create two structures to hold our Main Window handle //and the Button's handle HWND WindowHandle; HWND ButtonHandle; //this window's caption is "Microsoft Office Outlook", so we search for it's handle using the FindWindow API WindowHandle = FindWindow(NULL, "Microsoft Office Outlook"); //the Button's Caption …

0
50
Member Avatar for michael.ngobeni

Hi guys, I have an ftp server that I need to copy files from. The files are big, so i need to compress them first before i can download them. How do I do this in VB.net I can see all the directories and files using asp.net and vb.net, but …

0
48
Member Avatar for bhavna_816

I wrote a code in C# which contains a datagrid which is having a hyperlink and we want when we click on this hyperlink it will redirect to another page and select all the selected messages. How can i do this?

Member Avatar for ses5909
0
69
Member Avatar for bhavna_816

[COLOR=darkblue]Sub Main() Dim value As String value = "PFolder=oPFolder&SFolder=sfolder&oMsg=i" Dim myFolder As String() = Nothing Dim msgs(5) As Char msgs(0) = "=" msgs(1) = "&" msgs(2) = "=" msgs(3) = "&" msgs(4) = "=" myFolder = value.Split(msgs, 6) Dim f As String For Each f In myFolder Console.WriteLine(f) Next f …

Member Avatar for Dukane
0
79
Member Avatar for Cammarata123

How do I perform a click on the screen anywhere at runtime example this is how you move the mouse at runtime system.windows.forms.cursor.position = new point(500,400) is there anyway to do something like that with a click? Thanks in Advance Nick Cammarata 14 yr. Old Programmer

Member Avatar for Oxiegen
0
55
Member Avatar for abexander

hi all I will try develop a software for my final project using any programming language( but im good at java and vb.net).Im an IT student. Can any one give me any suggestion on what king of project im going to do.I mean i need some list of proposed projects …

Member Avatar for Oxiegen
0
89
Member Avatar for bhavna_816

I want to split this string s.WriteLine("<a href=ConsoleApplication1.exe?PFolder=oPFolder&SFolder=sfolder&oMsg=i>") and want to extract "oPFolder,sfolder and i" from above string.How can do it in VB.NET?

Member Avatar for Dukane
0
50
Member Avatar for jay0

Hi i am looking for someone to write a simple program for me that would allow me to print out a docket on a dot matrix. I have posted on another forum too here is the link [URL]http://forum.codecall.net/request-services-paid/2255-help-program.html[/URL] [URL="http://img120.imageshack.us/my.php?image=jasonkeatleykr3.jpg"][IMG]http://img120.imageshack.us/img120/166/jasonkeatleykr3.th.jpg[/IMG][/URL] here is what the docket looks like and here is some …

0
38
Member Avatar for Oxiegen

Hi. I'm having some difficulty here. Perhaps someone here has some ideas. I would like to implement some kind of P2P functionality in an existing application that is designed to work within a local network. The concept of this functionality is that the application stores the username of the current …

0
80
Member Avatar for bhavna_816

I wrote a code in [URL="http://vb.net/"][COLOR=#0000ff]VB.NET[/COLOR][/URL] which accesses the outlook folders.Following is the code.According to this code it displays outlook folders and there is hyperlink on each subject.I want when we click on the subject the message body should be [URL="http://dispalyed.in/"][COLOR=#0000ff]dispalyed.in[/COLOR][/URL] href how can we do this? I know we …

0
83
Member Avatar for boss_boss

Here i have problem by develope SMS system the problem is the data sms form mobile cannot receive the message and vice versa. So any else can help please give me a help

0
57
Member Avatar for sathya_k_83

Hi[COLOR=#000000]How to Export data from Dataset to Excel sheet in VB.net Windows Application and also How to convert Excel Sheets into Data set Using VB.net coding(Windows Application)[/COLOR] [COLOR=#000000]how to Convert Dataset into XL Sheet to the VB.net Windows Application only by using the default resource(dll) available in VB.net.[/COLOR] [COLOR=#000000]ie without …

0
106
Member Avatar for Cammarata123

Hi I'm in 8th Grade and I'm thinking of trying to get into IT tech before the end of there year so that I can say I was in college before I went into highschool. Can you guys/girls give me an idea as of what you do in 1st or …

Member Avatar for Cammarata123
0
137
Member Avatar for Tim Riley

I want to use an MS Access Database as a back-end. I am trying to: [B]Use data in one field (column) of my Access database as the items in a listbox[/B] Example, "Customer #" is a field in my database, i want to show all of the customer numbers in …

Member Avatar for jbennet
0
77
Member Avatar for bhavna_816

[COLOR=#0000ff]I am writing a code in VB.NET to access MS Outlook folders.Its giving all the folders and their msgs but when any calender meeting or any other things other than the mails appears any the folders like deleted items ,Inbox etc. then it shows exception in line oMsg = oItems.Item(i) …

0
68
Member Avatar for bhavna_816

I m writing a code in VB.NET to access MS outlook Folders.Following is the code.I want tht when I click on the link on the message"subject" hyperlink it will go to the body of the message in the required folder.Wht should be given in a href? For i = 1 …

0
53
Member Avatar for AlreadyWon!

hello every1! Im a newbie to vb.Net and i have done my best to workout a solution for this challenge but i keep hitting walls. i would appreciate it if some1 could help me with it, thanks in advance!! My application is 99% complete except for this 1 problem: the …

Member Avatar for Cammarata123
0
888

The End.