Posts
 
Reputation
Joined
Last Seen
Ranked #321
Strength to Increase Rep
+10
Strength to Decrease Rep
-2
89% Quality Score
Upvotes Received
73
Posts with Upvotes
70
Upvoting Members
58
Downvotes Received
9
Posts with Downvotes
9
Downvoting Members
8
26 Commented Posts
11 Endorsements
Ranked #153
Ranked #136
~242.38K People Reached
About Me

I've always had a fascination with computers while growing up. So it seemed appropriate that I chose that as a career.When I discovered software development I knew what I really wanted to do.Oh, and I'm also a bit lazy from time to time. :)

Interests
Computers and SciFi shows/movies
PC Specs
Custom built: Core i5 6500 2x3.2GHz, 32GB RAM 120 GB SSD, 3TB HDD, 8TB NAS. Windows 7 64bit.
Favorite Tags
Member Avatar for bklynman01

Try this: Imports Excel = Microsoft.Office.Interop.Excel Public Class frmImportDoc Dim trFile As Excel.Application .... Or you can try removing and re-adding the reference. Or you can simply ignore the `Imports` altogether and use the full name in the code.

Member Avatar for shahidul263
0
585
Member Avatar for Coder Smurf

I would suggest that you add a few pieces of code for Release version debugging. In the code for the primary form, add a StreamWriter and put a bunch of writer.WriteLine("Now I'm doing this thing") lines in strategic places. When the application launches, those lines will be written to a …

Member Avatar for ngozijesus
0
1K
Member Avatar for Oxiegen

Let's say, for instance, that you posted an answer to a question. Only to realize a few seconds later that your answer is not correct. How do I delete that post, or do I just add a comment for the moderators, asking them to remove it for me?

Member Avatar for JamesCherrill
0
614
Member Avatar for Oxiegen

Hi! It's been a while since I last posted here. I've just gotten started with Windows Service, and have created a sort of 24/7 service to update a database. But because it's my very first project (besides the tutorial one) I feel that I could use some assistance in checking …

Member Avatar for Paul.Esson
0
1K
Member Avatar for Lol_1

The first thing you need to do is to make sure that the content of both the textboxes are indeed numeric. The function for that is called IsNumeric and returns a boolean value. Second. In order to perform any calculations you need to convert the numeric strings in the textboxes. …

Member Avatar for JustMarkInAz
0
548
Member Avatar for pardeep3dec

I've been thinking about something like this myself, and I've been doing some research into the matter. There are two options available to you (that I'm aware of). 1) Create an application that communicates with a cellphone connected to your computer. 2) Use an existing webservice API provided by any …

Member Avatar for Tran_10
0
521
Member Avatar for Bianca Zhang

Try to replace the part in red with this. Although, I don't know if it works on Pocket PC devices. [CODE] oRead = IO.File.OpenText(My.Computer.FileSystem.SpecialDirectories.MyDocuments & "\test.txt") Entire = oRead.ReadToEnd() [/CODE] My.Computer.FileSystem.SpecialDirectories.MyDocuments is a VB.NET shortcut to the "C:\Documents and Settings\<current user>\My Documents" folder.

Member Avatar for leonardo_4
0
620
Member Avatar for Waldek

Something like this: Private Sub CopyToAccess(source As DataTable) Try Dim connString As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\myFolder\myAccess2007file.accdb;Persist Security Info=False;" Dim accConnection As New OleDb.OleDbConnection(connString) Dim selectCommand As String = "SELECT <field1>, <field2> and so on FROM <table>" Dim accDataAdapter As New OleDb.OleDbDataAdapter(selectCommand, accConnection) Dim accCommandBuilder As New OleDb.OleDbCommandBuilder() accDataAdapter.InsertCommand = accCommandBuilder.GetInsertCommand() …

Member Avatar for Daniele_1
0
6K
Member Avatar for Oxiegen

Hi. I'm in the process of learning Swift coding and decided to attempt a porting of one of my existing Windows programs. The thing is, that program relies heavily on connecting to a remote MySQL server. I've seen a few attempts to provide various connectors to an assortment of databases, …

Member Avatar for Tim_11
0
1K
Member Avatar for Oxiegen

Hi guys! It's been a while since I last posted here. I'm having an issue with not being able to remove non-installed fonts. Meaning, the fonts are not installed in the Windows/Fonts folder and cannot be uninstalled the proper way. These fonts came with some kind of hidden-object game that …

Member Avatar for rproffitt
0
256
Member Avatar for Mr.M

I think that you have pretty much answered your question yourself already. If you can send data between the client and server, then the server knows the IP of the client, right? And also, because you can send data to the server it's quite easy to send a command the …

Member Avatar for Mr.M
0
3K
Member Avatar for noobjavacoder

I'm not enterily sure about how java handles constructors. But could the problem be that the only constructor in Node1 takes arguments, and that you're instantiating it using no arguments as the very first act in the BST constructor? What would happen if you change the constructor in Node1 to …

Member Avatar for Oxiegen
0
418
Member Avatar for tashiDuks

In the form opening event, call a method that reads the last id from the database into a variable, and increment that value by 1. [ICODE]SELECT TOP 1 <ID> FROM <table> ORDER BY <ID> DESC[/ICODE]

Member Avatar for Syed Hassan Abbas
0
2K
Member Avatar for Dani

Hmm. I'm not entirely liking the new design. It's looks enlarged as if you're using the accessibility tools in Windows. We're not blind or elderly. You can tone down the bloatiness of it. And the font size. In fact, I liked the previous design better than this, and the one …

Member Avatar for Dani
4
636
Member Avatar for Papa_Don

It sounds like those "texts" that you scrape from the screen are log messages of some type. Wouldn't it be easier to create a program that connects to the server and retrieve those log files, instead of scraping the screen or in this case the content of another program. If …

Member Avatar for cgeier
0
3K
Member Avatar for lynns40

Have you tried booting into safe-mode? If you get the screen back there, you can re-install/update your graphics drivers.

Member Avatar for Oxiegen
0
125
Member Avatar for silvercats

There is no right or wrong way in how you place those brackets. It's your code. You do it in whatever way feels best for you. Other java developers who might read your code will understand it just fine.

Member Avatar for samson.dadson.3_1
0
506
Member Avatar for deceptikon

Wouldn't have been easier to use iTextSharp instead? It's free and already have all the classes and methods for creating/manipulating PDF's and converting them to images.

Member Avatar for deceptikon
2
1K
Member Avatar for drbali

Do you know for a fact whether or not the recovery partition doesn't contain the factory install of Win7? If it does you can just find the correct button to press/hold while booting and reset the system. Otherwise, go right ahead and remove it all. You can do that during …

Member Avatar for drbali
0
174
Member Avatar for davy_yg

I think that the syntax you've used is slightly incorrect. If you go to the video in question and click on the share button, you will see the proper syntax to use as an object.

Member Avatar for gabrielcastillo
0
212
Member Avatar for Waldis_1

Simple SQL query: SELECT MAX(<column name>) FROM <table> The MAX() function works with both numbers and strings. http://msdn.microsoft.com/en-us/library/ms187751.aspx

Member Avatar for Santanu.Das
0
11K
Member Avatar for CrazyTesting

Have you tried a more conventional way to populate those lists? Like iterating through the rows. Just to check to see if you do get 4 records instead of 1. Have you also tried declaring those lists as new?

Member Avatar for castajiz_2
0
364
Member Avatar for Mz.AvIuM

Make a crystal report that looks just like that. That will allow you to put those underlines wherever you want.

Member Avatar for Santanu.Das
1
184
Member Avatar for mohan5346

Have you tried this in Windows Explorer: Click on Tools Click on Folder Options Click on the View tab Under Hidden files and folders click in the circle next to "Show hidden files, folders, and drives" If the files are just hidden and not deleted you should see them. If …

Member Avatar for Oxiegen
0
122
Member Avatar for Jake.20

The directory in which the php script resides in must be owned by the webserver. Also, check to see if the correct permissions are set. Scripts run by mod_php should require 0644 at the least.

Member Avatar for Jake.20
0
1K
Member Avatar for necrovore

Have you tried using BaseFont.GetDocumentFonts()? Perhaps this could be useful: http://itextsharp.10939.n7.nabble.com/How-to-get-the-list-of-embedded-fonts-in-a-PDF-td3153.html

Member Avatar for necrovore
0
1K
Member Avatar for HuePig

Because webpages are "dead" once you go to another page, you have to pass the selected value/s to the new page. Either with a querystring or with a json string or a session variable or a temporary cookie.

Member Avatar for Oxiegen
0
80
Member Avatar for jose.angelo.santos

I did that once in a project I was working on, but with SQL server. You could construct a SQL query in which the WHERE clause looks something like this: WHERE <field1> like '%<keyword>%' OR <field2> like '%<keyword>%' OR <field3> like '%<keyword>%' And so on.

Member Avatar for Oxiegen
0
91
Member Avatar for johmolan

I've had problems like this before myself. This usually happens if you also use a strongly typed dataset, in which case you have to manully change the generated code for the dataset so that it uses the "correct" connectionstring. The best solution would be to drop the local database and …

Member Avatar for Oxiegen
0
185
Member Avatar for kirera

Your question is not very detailed. Are you developing a software to be installed on two computers and communicate with each other?

Member Avatar for JorgeM
0
90