Posts
 
Reputation
Joined
Last Seen
Ranked #241
Strength to Increase Rep
+11
Strength to Decrease Rep
-2
97% Quality Score
Upvotes Received
111
Posts with Upvotes
91
Upvoting Members
74
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
3
27 Commented Posts
~416.62K People Reached
Interests
Judo
Favorite Tags

602 Posted Topics

Member Avatar for vegaseat

God is dead - Nietzsche, Who's laughing now? - God "The only place success comes before work is in the dictionary" - unknown Stupidity is doing the exact same thing again and again in the hope it works and being suprised when it doesn't. - unknown Fail to prepare, prepare …

Member Avatar for Reverend Jim
15
13K
Member Avatar for Reverend Jim

What really annoys me especially with having a young < 1 child in the house is you are watching the show at a reasonable volume when suddenly the adverts come on at what sounds like twice the volume waking the sleeping baby.... Also, in terms of most sci-fi, why if …

Member Avatar for Reverend Jim
10
3K
Member Avatar for Duki
Member Avatar for Quinncunx

Hi If Sortedlist doesn't work for you you can also try a DataTable. A DataTable has a DefaultView property, which is a DataView for the table and a DataView has a Sort property which allows you to sort your data by any column in either direction e.g. "PlayerPoints Desc"

Member Avatar for randysoft1
0
3K
Member Avatar for devianleong

Try moving the line `con.open()` to above `cmd = new oledbcommand(sql, con)` i.e. have your connection open first To check that the connection is open before executing the command, you may want to try this: If Con.State = ConnectionState.Open Then dim dr as OleDBDataReader = cmd.ExecuteReader .... End if

Member Avatar for Ansh8390
0
2K
Member Avatar for G_Waddell

Hi good people of Danniweb, I've looked at a lot of examples on line and I cannot figure out what is going wrong. My program has to transfer a simple delimited text file from the local machine up to a specified directory on a FTP server. After I have run …

Member Avatar for Dennis_22
0
2K
Member Avatar for Nebil

Hi Are you using a common networked database for all users? Or is it that you are deploying the database with the program i.e. one database per user?

Member Avatar for YASHNIT
2
8K
Member Avatar for dibakarmishra

For the save dialog part, there is a built in [SaveFileDialog Class](http://msdn.microsoft.com/en-us//library/system.windows.forms.savefiledialog.aspx) This will enable you to put up an on screen Save File Dialog without having to design your own interface etc. (like we used to have to do in VB 6.0)

Member Avatar for Mr.M
0
2K
Member Avatar for Ancient Dragon
Member Avatar for jkon
4
4K
Member Avatar for Papa_Don

Hi you have added the panel twice once to the Main panel and once to the form: 'Adding to main panel pnlMainPanel.Controls.Add(pnlOrderLine) pnlMainPanel.Visible = True 'Adding to Form i.e. me Me.Controls.Add(pnlOrderLine)

Member Avatar for Enrique_2
0
3K
Member Avatar for G_Waddell

Hi, I've recently "inherited" a part built project from a developer who as left our company. He had decided to use Entity Framework but I am finding it to be unstable and slow. I periodically have to reimport objects and stored procedures from the database as the model gets corrupted. …

Member Avatar for Aleksey_2
0
4K
Member Avatar for MukeshZ

I know this thread is inactive BUT VB.net has a built in text parser for handling delimited files such as CSV: [MSDN: Read CSV File Content](http://msdn.microsoft.com/en-us/library/cakac7e6.aspx)

Member Avatar for deceptikon
0
20K
Member Avatar for G_Waddell

Hi, I'm writing code to connect to Oracle through ODP so I added a reference to the Oracle.DataAccess dll on my machine. Trouble is I'm writing a 64 bit app and I appear to have both x86 and 64 bit versions of this dll on my machine. No matter which …

Member Avatar for JOSheaIV
0
344
Member Avatar for G_Waddell

Hi All, I think I maybe falling victim to the "double hop"! We have a windows form program that uses a 3rd party web service to validate bank details (BIC, IBAN etc.) It uses a class we developed that creates a uri and passes it through the firewall upto the …

0
119
Member Avatar for G_Waddell

Hi All, This issue keeps reocccuring and I can not for the life of me figure out why. When I add ANY AJAX control to my ASP.Net project, I end up getting an error that a reference in the designer is not defined. For example, if I add an UpdatePanel, …

0
143
Member Avatar for Reverend Jim

My main pet peeve is when an oh so helpful “spelling” program insists on marking up words as misspellings (or worse, “auto-correcting”,) when they are typed correctly because I write in English not American English. E.g. colour, (and ironically,) localise etc.

Member Avatar for Reverend Jim
7
5K
Member Avatar for cgeier

Hi, Seeing same behaviour here, it opens I close it, it reopens - it's annoying...

Member Avatar for Dani
0
265
Member Avatar for cagrifromearth

Hi, You need to give more detail. What methods are you using for the log in (Off the shelf package? your own design?)? How are you storing if the user is logged in or not? Maybe post some code? For example if you use a session variable to hold if …

Member Avatar for Lau_1
0
120
Member Avatar for wilsonchama

Hi, A bit Rusty at PDF creation so forgive me but you don't seam to be adding Rows to your pdfTable. Anyway I would put a check in to see if the datagrid cell had a value: '...... For Each cell As DatagridViewCell in rows.cells If cell.value isnot Nothing andalso …

Member Avatar for zinist
0
4K
Member Avatar for no123

Is this a class or code behind a form? Anyway for a class, create a `Sub New()` and set your `location` variable to the location you want then run your `ShowMapImage`. If it is a window just do it in the `OnLoad` event

Member Avatar for G_Waddell
0
207
Member Avatar for mazintech

Take the relevent fields from one table and pass into an insert statement to run on the other one... Perhaps if you show what you have tried so far we can give help and guidence

Member Avatar for G_Waddell
0
83
Member Avatar for razree

Hi, There are a couple of things I'd try (some of which you may have done already) 1. Check the Build version under the Project properties 2. Under the Build menu I would Clean the solution then Build and deploy

Member Avatar for G_Waddell
0
255
Member Avatar for Riaz_2

Just loop through the rows in your grid extract the data you need then use a stored procedure(prefered,) or a SQL Insert statement to add to the other table?

Member Avatar for G_Waddell
0
86
Member Avatar for batoolhussain

Hi, You're retreiving the image file as a binary object from the database and then you're trying to open directly in the browser? Do you set the content Type in the response so the browser knows what you are sending it? e.g. `Response.ContentType ="image/jpg"`

Member Avatar for David_50
0
193
Member Avatar for nimz143

Hi, I don't see where you are setting your Connections connection string, you look to be passing in blank strings on the New DRConnection object (unless you are hiding the values your using for posting here.) so how does your DRConnection know what it is to connect to?

Member Avatar for nimz143
0
1K
Member Avatar for G_Waddell

Hi all, I've searched in the ASP.Net and AJAX forums but I can't see any matches to this issue. The reason I'm posting in the ASP.NET forum is that the Error is being caused by my ASP.NET designer page. Myself and another developer are both working on different parts of …

Member Avatar for G_Waddell
0
312
Member Avatar for batoolhussain

Hi, You've posted a similar issue on another post...(I answered that one for you) but in that one you were opening the file directly in the browser, this post you are wanting to open the image inside a page? Could you post your ASP.Net page code?

Member Avatar for G_Waddell
0
340
Member Avatar for Ketsuekiame

<M/> > he only posted once and hasn't returned... Could that be because he is a newbie and the reaction to their first post (probably sent as an intro,) was basically F off and stop spamming?

Member Avatar for overwraith
15
1K
Member Avatar for André_2

Hi, Are you using a datasource to provide the dropdown values? Could the values be either NULL values or spaces?

Member Avatar for krishnap2w2
0
611
Member Avatar for Rahul47

Hi I take it this is the standard Menu strip class? In which case, you are not actually selecting an item, you are clicking on it. So what you would do is use the on click event of each item to populate the messagebox or carry out the other actions. …

Member Avatar for tinstaafl
-1
4K
Member Avatar for G_Waddell

Hi All, I'm writing an app that prints of batches of documents to clients for posting. The printer uses OMR to collate and fold the documents into envelopes automatically. The document inputs will either be Word or Adobe Acrobat. I have routines to print off each document type while adding …

Member Avatar for Bala2507
0
447
Member Avatar for G_Waddell

Hi, I have to correct some data in SQL Server 2008 R2 database for an accounting system that was accidently over written. Basically I've to take stock items with fixed prices and compare those fixed prices against Sales Order Transactions for the stock item and correct entries where the transaction …

Member Avatar for isozworld
0
160
Member Avatar for frnds2vivek
Member Avatar for G_Waddell

Hi, Not sure what exactly is happening here as I'm used to dealing with Microsoft SQL server rather than Oracle but here goes: I have a C# project that connects to an Oracle database using the OracleCommand Object to bring back records but I've been noticing some strange behaviour. Here …

Member Avatar for Cesc_1
0
214
Member Avatar for iAssistant

Unseasonably sunny with a temperature of about 10 Degrees Centigrade in Ireland today

Member Avatar for Stuugie
0
4K
Member Avatar for help distressed

My opinion is for certain tasks no. That being said I do have a Google tablet, my wife has an IPad and my son has a tablet too. One thing I can see a tablet being really handy for is instead of having to cart a load of textbooks into …

Member Avatar for Ancient Dragon
0
501
Member Avatar for moketemelton

Hi, Looking at your code, you are referencing a class OExcelHandler to populate your dataset, with out knowing what happens in the class I can't help. If it uses a dataadaptor, you could be able to specify the Update command if it is accessible.

Member Avatar for G_Waddell
0
215
Member Avatar for diafol

I think Ireland will beat France. 1. France didn't beat Scotland , Scotland snatched defeat from the jaws of victory - too many silly errors - trying to bypass attacking players when you're about to get a two man overlap! 2. This weekend is St. Patricks Day weekend! 3. BOD's …

Member Avatar for diafol
0
278
Member Avatar for Sifiso21031085

In Ireland they wasted millions of euro on electronic voting machines that ended up sitting in a warehouse unused. The problem was the press, IT professionals and eventually general public all spoke out because there was no real audit trail to prove non vote tampering and double voting BUT here's …

Member Avatar for mike_2000_17
0
595
Member Avatar for Sheeping

hi, Looking at your code it should be something like: `dim MyKeyValue as string = CType(myKey.GetValue("prevhost.exe"),String)`

Member Avatar for G_Waddell
0
605
Member Avatar for Abhishek_12
Member Avatar for Gen_2

Hi, If you are using a single dataset to hold the two tables you can also specify a [DataRelation](http://msdn.microsoft.com/en-us/library/ay82azad(v=vs.110).aspx) between them. You can then get the [child records of the parent record](http://msdn.microsoft.com/en-us/library/d6s958d6(v=vs.110).aspx) and vice versa. Again you will still need to specify a parent primary key to child foreign key …

Member Avatar for G_Waddell
0
247
Member Avatar for G_Waddell

Hi all, I have a Windows 7 64 bit client that is running a 32 bit of software and so needs a 32 bit ODBC connection to the database. I of course ignored the Administrative Tools > ODBC manager because that will open the 64 bit and instead went to …

0
214
Member Avatar for debasisdas
Member Avatar for James_28
8
17K
Member Avatar for geoffy0404

Hi, You need a variable to hold the current value and a second one to hold the "target" value... The timer control fires depending on the interval you set for it in milliseconds. dim iCount as integer 'Count or current value dim iLimit as intger 'Limit value sub Timer1_timer() iCount …

Member Avatar for mridul.ahuja
0
272
Member Avatar for mizzrain.rain
Member Avatar for dre-logics

Hi You should try posting to the database forum, my MySQL knowledge is limited but someone there should help The MySql section is here: [Web Development, Databases, MySQL](http://www.daniweb.com/web-development/databases/mysql/126)

Member Avatar for dre-logics
0
655
Member Avatar for Nebil

Hmmm... I think I understand what you are trying to do Why not have the menu items show only the appropriate options on the called form? e.g. sub MenuItem1_OnClick() dim MyForm as new form1 with MyForm .Item1.visible = true .Item2.visible = false .item3.visible = false .item4.visible = true 'and so …

Member Avatar for Reverend Jim
0
144
Member Avatar for Deep Modi

Hi You will need to based your new class on a richtextbox to allow different formating within the text. You will also need to overwrite the ToString to parse the input and format the text accordingly

Member Avatar for Deep Modi
0
145
Member Avatar for alina.nazchowdhury

Hi Does it highlight where the end of statement is expected? Also do you handle if cmdLetter(index) is out of bounds?

Member Avatar for alina.nazchowdhury
0
337

The End.