Click here to Skip to main content
Page 1 of 3
Page Size: 10 · 25 · 50


Author filtered by: hansoctantan [x]
Question 8 May 2013   license: CPOL
I created a database, putting some data, making dummy/testing connections in my vb.net projectsMy database has 9 tables 1 is for users and the other tables can have millions of data. When I try to view the Database SQL(Script Database as -> Create To -> New Query Editor Window) I found...
VB.NET working with MAILS by hansoctantan
Question 23 Apr 2013   license: CPOL
Hi Everyone, I'm trying to read mails from an Email Applications(Eudora). I search in the Internet, all I found is reading emails from Outlook. Don't know where to start. Can someone post suggestions or links that read emails other that OutlookThanks in advanceI found this in...
Re: PROGRAMMER RYAN GOSLING by hansoctantan
Forum Message 20 Feb 2013  
Hey Girl... :omg: programmers pickup lines What???
VB.NET PDF rotation. by hansoctantan
Question 25 Jan 2013   license: CPOL
Hi, How can I rotate a page from a PDF using vb.net. I'm new to PDF controls and I don't have any idea how to do this. I try searching in the internet and have no luck finding the solution. Hope anyone could help.Thanks
Question 4 Dec 2012   license: CPOL
Does anyone already succeed reading the file .msg in a particular location or path.I did it in vb6 but I can't do it in vb.net. I'm using vb.net 2010.Here is my code in vb6: Dim Msg As RDOMailDim Session As RDOSessionSet olNs = olApp.GetNamespace("MAPI")Set Session = New...
Answer 21 Nov 2012   license: CPOL
I try experimentingI use this # and it worksUPDATE WINNERS SET PrizeClaimed='1' WHERE RaffleNumber=461 AND [Date]=#11/21/2012 11:12:52 PM#;
Question 21 Nov 2012   license: CPOL
Hi,I'm creating a Raffle Program using VB6.I'm having trouble updating the data in MDB. This is the error when executing the SQL Data type mismatch in criteria expression.UPDATE WINNERS SET PrizeClaimed='1' WHERE RaffleNumber=461 AND [Date]='11/21/2012 11:12:52 PM'; This is the...
Re: Interesting observation by hansoctantan
Forum Message 12 Nov 2012  
yes me too, I think... What???
Answer 8 Nov 2012   license: CPOL
I have found the solution in this...I just open the file in wordpad and save it(Ctrl+S) and it works...
Question 8 Nov 2012   license: CPOL
I have a code that create a database using ADOX reference.I search in the internet on how to create a field with Auto Increment properties, this is what i found "link[^]"With tbl .Columns.Append "ContactId", adInteger .Columns("ContactId").Properties("AutoIncrement") .Value =...
Question 8 Nov 2012   license: CPOL
I have a program that automatically opens a RTF file.This is my codeShell "C:\Program Files\Windows NT\Accessories\wordpad.exe " & rtfPath, vbNormalFocusWhen the line is executed the Wordpad opens but I'm getting this error in WordpadC:\RTF Cannot find this file. Please verify that...
Forum Message 8 Nov 2012  
I just updated my profile too.. I don't know why that I didn't notice that.. I'm a member since 2010 or maybe I didn't care back then :-\ ;P What???
Question 8 Nov 2012   license: CPOL
I have a RTF that displayed in RichTextBox, The program can load the file but not all.Not all because when I opening the file in WordPad the missing text is there. I try searching it in the Internet but I have no luck finding the solution.Can anyone post why this happens.Originally the...
Re: I'm just asking this by Christian Jay Soyosa
Forum Message 9 Oct 2012  
You sure watch a lot of anime What???
Re: I'm just asking this by Christian Jay Soyosa
Forum Message 9 Oct 2012  
Its so sad that you don't watch manga now harold aptroot wrote:I used to watch Naruto, until it started to suckI'm just saying that Naruto i
I'm just asking this by Christian Jay Soyosa
Forum Message 9 Oct 2012  
I like programming but when I'm getting bored of making confusing programs I read manga or watch anime. I just want to ask if there's a programmer like me that loves manga and anime... :) :-D :laug
Answer 8 Oct 2012   license: CPOL
I really don't know why the codes in my question won't run but I try using this an it works...Public Sub CreateDatabaseADO(ByRef dbCon As DatabaseConn) Dim newDB As ADOX.Catalog Set newDB = New ADOX.Catalog newDB.Create "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data...
Tiff to Pdf convertion by hansoctantan
Answer 25 Aug 2012   license: CPOL
yes it is really hard to find a source code in converting TIFF to PDF... Use VB.NET instead, try using iTextSharp. You can find lots of resource on this click here[^]
VB6
Answer 13 Aug 2012   license: CPOL
How about this pure javascript function Change() { var txt = parseInt(document.getElementById("txt").value) alert(txt); var tr =...
Re: Math Problem by hansoctantan
Forum Message 13 Aug 2012  
Well how did you do it???:confused::confused::confused:
Re: Math Problem by hansoctantan
Forum Message 13 Aug 2012  
yes yes yes ;) ;) ;)
Math Problem by hansoctantan
Forum Message 13 Aug 2012  
hey guys... :-D :-D :-D We have a slight debate about this... 6/2(1+2) so whats the answer.. My answer is 9 6/2=3 1+2=3 3*3=9 My friends answer is 1 He did this(hi
Question 2 Aug 2012   license: CPOL
Hi everyone, I'm creating a program that verify an email if it exists. I found a code on doing this but when I try using it, the runtime stops "ResponseString = reader.ReadLine()" when the program reading the response string.Below is the code (I just converted this t VB.NET the...
Answer 9 Jul 2012   license: CPOL
Found this on Google[^] Dim xlApp As Excel.Application Dim wb As Workbook Dim ws As Worksheet Dim var As Variant Set xlApp = New Excel.Application Set wb = xlApp.Workbooks.Open("PATH TO YOUR EXCEL FILE") Set ws = wb.Worksheets("Sheet1") 'Specify your...
VB6
Answer 9 Jul 2012   license: CPOL
I Googled[^] it and found this[^] first link..var xhr = new XMLHttpRequest();xhr.open('HEAD', 'img/test.jpg', true);xhr.onreadystatechange = function(){ if ( xhr.readyState == 4 ) { if ( xhr.status == 200 ) { alert('Size in bytes: ' +...
Question 27 Jun 2012   license: CPOL
Hi everyone, I have a program that downloads file from FTP Server.This is my code for downloading files Dim request As FtpWebRequest = Nothing Dim response As FtpWebResponse = Nothing request = DirectCast(FtpWebRequest.Create(New Uri(clsDownload(index).FTPURL)),...
Re: One option missing by hansoctantan
Forum Message 17 Jun 2012  
It happened to me when we were making our theses exam.. It just popup the solution in my dreams and when I try it in school it doesn't work.. :(
Re: Subconscious Mind by hansoctantan
Forum Message 17 Jun 2012  
yes your right, sometimes it happens when I'm going home at work... multiple times this happened to me
Question 14 Jun 2012   license: CPOL
I'm creating a program that downloads file from ftp server.Putting all downloaded files and downloading files in a ListView.I want to prioritize the downloading file so I want to add the item in first index.I try using this sample code but it doesn't work. 'FIRST DOWNLOAD With...
Answer 7 Jun 2012   license: CPOL
try using jquery.heres' a sample link http://speckyboy.com/2009/06/03/15-amazing-jquery-image-galleryslideshow-plugins-and-tutorials/[^] try experimenting on that sample.
Information about Languages by hansoctantan
Answer 7 Jun 2012   license: CPOL
I guess it depends on how a programmer used any language.
Answer 21 May 2012   license: CPOL
I just posted a message http://www.codeproject.com/Messages/4252911/Re-Get-the-project-path-using-Java.aspx[^] in Web Developer discussion.The problem is not the code. You can see the answer in above link
Forum Message 18 May 2012  
yes, I'm really confused... I can't see the uploaded files in my Eclipse App..
Forum Message 16 May 2012  
Thank you very much it work perfectly what I expected... :laugh: Even if its not in my Eclipse Web Project it can view the pdf. :thumbsup::thumbsup::thumbsup::thumbsup::thumbsup:
Forum Message 16 May 2012  
Hi, I have a problem on getting the project path of a web application. Reason on getting the project path is I'm uploading a PDF Files to the project path so that I can open it to the browser, I'm
Forum Message 15 May 2012  
Is this for real?
Question 14 May 2012   license: CPOL
I've created a program that upload PDF files from a server.I save the uploaded file togetServletContext().getRealPath("/")+ "UploadedFiles\\";Also I created a File Viewer to display the names of all uploaded files..Now all I have to do is display the PDF file to browser. My problem is...
Re: You look like.. by hansoctantan
Forum Message 21 Mar 2012  
what happened to this Fail[^]
Answer 18 Mar 2012   license: CPOL
If this object is String, Int, Char or etc...and putting it to a file(Text File) you can use thisimport java.io.*;public class WriteTextFileExample{ public static void main(String[] args)throws IOException{ Writer output = null; File file = new File("write.txt"); output =...
Forum Message 16 Mar 2012  
Hi everyone, I try to run an exe to a windows 2000 but an error occurs The dynamic link library mscoree.dll could not be found in the specified path... so I put the mscoree.dll to th
Disabling Right click by hansoctantan
Answer 16 Mar 2012   license: CPOL
Try this oneJust put it in your HTML codefunction disableRightClick(btnClick) { if (navigator.appName == "Netscape" && btnClick.which == 3) { // check for netscape and right click alert("Right Click is disabled"); return false; ...
Answer 16 Mar 2012   license: CPOL
you can use POST or GETName: Age: in PHPWelcome .You are years...
PHP
donkey kong source code by hansoctantan
Answer 16 Mar 2012   license: CPOL
Try this Donkey Kong source code in Java[^]
Re: The Code Repeater by hansoctantan
Forum Message 14 Mar 2012  
I don't know if this is appropriate but it make sense
Answer 14 Mar 2012   license: CPOL
I don't know if this is right but what I understand is.You have two tables Table1 and Table2Lets say Table1 is your Parent Table(with Primary Key) andTable2 is the Child Table(with Foreign Key), when you delete a record in Table1 without deleting the record in Table2 then the problem...
C#
Answer 9 Mar 2012   license: CPOL
try using document.getElementById("href").innerHTML
Answer 7 Mar 2012   license: CPOL
The above answer is right, you can extract JAR file but it only contains class files but you can convert it to .java if you want using Java Decompiler.
Question 1 Mar 2012   license: CPOL
Hi,I am searching a code for displaying the content of a DOC File inside a Web Page using JAVA(either jsp or servlet) but I have no luck finding it. Can someone show me an example of this or just a link.A little overview of this Program:A Web Application that allows user to view a Word...
Forum Message 29 Feb 2012  
Hi everyone, I have a project that is already deploy in local. All local computers can access the program to server. Now I want to make the application go online and I don't know how... :confused:
Forum Message 28 Feb 2012  
try storing the variable to cookie http://www.w3schools.com/js/js_cookies.asp[

Page 1 of 3
1 2 3


Advertise | Privacy | Mobile
Web02 | 2.6.130513.1 | Last Updated 15 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid