Posts
 
Reputation
Joined
Last Seen
Ranked #159
Strength to Increase Rep
+9
Strength to Decrease Rep
-2
93% Quality Score
Upvotes Received
132
Posts with Upvotes
103
Upvoting Members
66
Downvotes Received
8
Posts with Downvotes
7
Downvoting Members
8
35 Commented Posts
~241.88K People Reached
Favorite Tags
c++ x 414
c x 38
php x 22
c# x 16

432 Posted Topics

Member Avatar for Reverend Jim

I think in TV and film that there is a term for just believing things or ignoring them for the sake of action and entertainment. I'd still like to add to this list however. A number of to super agents are are chasing a bad guy, the action and shots …

Member Avatar for Reverend Jim
10
3K
Member Avatar for LastMitch

I watched [Bad Grandpa](http://www.rottentomatoes.com/m/jackass_presents_bad_grandpa/) tonight. I never thought I'd laugh so much at silly pranks, but was creased over through the whole thing.

Member Avatar for LoanHensley
6
6K
Member Avatar for Suzie999

I'm setting up new install of win 10 home premium on a laptop for friend. After setting up the initial local admin account, I created standard local account for friend to use. I wanted to give her ability to install applications so she gets admin password, but I wanted to …

Member Avatar for parreirae1
1
930
Member Avatar for Suzie999

I'm reading data from SQLite database table. If the SQLiteDataReader encounters a negative double an InvalidCastException is thrown. Here is my code. public void DBToArray() { string stm = "SELECT * FROM mtable"; SQLiteCommand cmd = new SQLiteCommand(stm, sqlcon); SQLiteDataReader rdr = cmd.ExecuteReader(); while (rdr.Read()) { Console.WriteLine( rdr.GetInt32(0) + " …

Member Avatar for bngwebguru
0
1K
Member Avatar for Suzie999

Hi, I am following a walkthrough of [Entity Framework Code First to a New Database](https://msdn.microsoft.com/en-us/library/jj193542(v=vs.113).aspx) Everything appears to go as expected right through to the end of step 4, where it says "We can now inspect the schema that Code First created." The database shows up under data connections in …

0
243
Member Avatar for tenten..
Member Avatar for Suzie999

Hi all. I'm reading about SOLID way of coding and am only looking at single Responsibility of objects (S). I will be creating a string helper class and I'm wondering if I have two methods or more in the class, if I am still adhereing to SR if the methods …

Member Avatar for JamesCherrill
0
223
Member Avatar for Suzie999

Hi all, I have a lot of long boring work ahead of me, unless this long shot comes up roses. I have a lot of classes I need to add a ToByteArray() method to, and I'm wondering if Visual studio 2015 has any tricks up its sleeve where I can …

Member Avatar for Suzie999
0
380
Member Avatar for Ritesh_4

To use different applications on different adapters (internet connections) I have used forcebindip. https://r1ch.net/projects/forcebindip

Member Avatar for Suzie999
0
474
Member Avatar for Suzie999

Hi all. I'm working on a client server application, eventually to be a POS (point of sale) system. The model is something like, client (till) does not have access to the database, instead it sends data to the server application, which in turn deals with the database and any other …

Member Avatar for pritaeas
0
388
Member Avatar for Suzie999

Hi all. I've had a good look around for info, and come up short. Does anyone know of a way to get the thread id under which a service is running, from either safehandle or unsafe handle properties of the object? wmi with Win32_Service does not appear to provide it, …

Member Avatar for Suzie999
0
668
Member Avatar for Suzie999

Hi all, hope you are well. I'm trying to make my code as efficient as possible, and currently regarding logic I have a question. Is there a way, in the following single "if" query, to determine which of the conditions are true? if (mystring.Contains("left") || mystring.Contains("right")) { //which is it …

Member Avatar for JamesCherrill
0
311
Member Avatar for Suzie999

Hi. I invoke method from other thread which did not create ui. Appears to work well... DVG.Invoke((MethodInvoker)(() => dgv.Rows.Add(DGVR))); But I need return value from Add method, so I do... int Index = (int)DVG.Invoke((MethodInvoker)(() => dgv.Rows.Add(DGVR))); Unfortunately I get an error... "Object reference not set to an instance of an …

Member Avatar for Suzie999
0
230
Member Avatar for Suzie999

Here is example class, the commented code in constructor works as well as the initializer. My question is, what is the correct way? class NClass { public: int _pid; std::wstring _name; NClass(int pid, wchar_t * name) : _name(name) { //_name = name; } void Print() { std::wcout << _name; std::getchar(); …

Member Avatar for Suzie999
0
3K
Member Avatar for Suzie999

I'm having trouble calling unmanaged dll function from the windows win32 apis. I've tried many ways, but the following was my first and what I think should work. using System.Diagnostics; using System.Runtime.InteropServices; namespace Win32DllImports { class Program { [DllImport("Urlmon", EntryPoint = "ObtainUserAgentString", CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Ansi)] private static …

Member Avatar for Suzie999
0
385
Member Avatar for Aeonix

Perhaps I don't know what I'm talking about, but it's quite unreasonable to expect any host to be around for the rest of your life, and perhaps quite foolhardy to expect hosting to be as hosting is at all in 10 years. and unfair to ask personal recommendation from experience …

Member Avatar for ctrls
0
679
Member Avatar for Haider85
Member Avatar for rproffitt
0
441
Member Avatar for Phillip_3
Member Avatar for JermaneJermane
Member Avatar for Suzie999

Hi all, I'm having trouble finding information for what I need. I think it's because I don't really know the nane of what I'm looking for, so keywords are eluding me in my search. I hope my explanation might give someone a clue who can help or at least tell …

Member Avatar for Suzie999
0
267
Member Avatar for screenedcreamy
Member Avatar for Mr.M
0
145
Member Avatar for Suzie999

Hi folks. I'm looking for some pointers on how to "stream" a video file which is online. I have no control over its location it could be http://anywhere.com/ontheweb.mp4 for example. In my browser if I put the link into the address bar, it will simply download it to HDD. I …

Member Avatar for kamilacbe
1
683
Member Avatar for Suzie999

Having problems getting my code to run on non dev machines. All machines are win 10 and my code targets .Net 4.6 which is supposed to ship with it. On one machine I had a problem where an exception to do with System.Data.SQLite was thrown and on another I had …

Member Avatar for ddanbe
0
172
Member Avatar for KevinAdam
Member Avatar for Reverend Jim
0
311
Member Avatar for Suzie999

My project uses local sql database. I tried the app on a non development machine for first time. Got a message saying it was downloading required files, sql 2008 express, at a whopping 600MB+ file. Please tell me I've done something wrong, and any user of my app will not …

Member Avatar for Suzie999
0
351
Member Avatar for chetan12

I think it's fine to say, that you are *basically* looking at the "travelling salesman problem" Reasearch that.

Member Avatar for tinstaafl
0
386
Member Avatar for dreamvivek

How are you testing that the table is not added to? Check the .mdf file in debug folder.

Member Avatar for Suzie999
0
180
Member Avatar for nagarjuna9

https://www.daniweb.com/programming/threads/502682/i-have-one-error-plz-currect-it#post2197317

Member Avatar for ddanbe
0
118
Member Avatar for nagarjuna9

Please do daniweb members the courtessy of outlining your error. Thanks.

Member Avatar for Suzie999
0
255
Member Avatar for Suzie999

I have many checkboxes on my form, I decided to create a custom checkbox to use instead. I thought I could just change the following two lines of code in Mainform.designer.cs... `private System.Windows.Forms.CheckBox chkapp;` to `private CustCheckBox chkapp;` and `this.chkapp = new System.Windows.Forms.CheckBox();` to `this.chkapp = new CustCheckBox();` And I …

Member Avatar for Suzie999
0
3K
Member Avatar for Suzie999

I'm trying to draw a border around some controls in order to highlight them, but I'm getting unexpected behaviour, in that nothing is drawn. Here is a current event method. I've tried a few variations. private void checkBox1_Paint(object sender, PaintEventArgs e) { if (statechanged) { //Debug.WriteLine(checkBox1.Checked.ToString()); statechanged = false; ControlPaint.DrawBorder( …

Member Avatar for Suzie999
0
2K
Member Avatar for jayamkoko

https://www.daniweb.com/programming/software-development/threads/484455/i-want-to-save-the-capture-fingerprint-into-database-

Member Avatar for jayamkoko
0
1K
Member Avatar for Devon_1

Might be worth taking a look at https://gist.github.com/anonymous/fe757151d37a7f229386

Member Avatar for rproffitt
0
228
Member Avatar for mpdph09
Member Avatar for Suzie999
0
201
Member Avatar for toxicandy

I think a potential problem might be that word.length() is greater than the size/length of dir.

Member Avatar for rubberman
0
272
Member Avatar for Suzie999

I'm not even sure what it's called or even if it's possible, what I'm trying to do. I'm hoping the code might explain it. Each class that derives from Base has a method named oPrint, and I want to call them in the below fashion(ish) if possible. namespace nSpace { …

Member Avatar for Suzie999
0
338
Member Avatar for IntegratedTweak

Installing malware detection and/or removal software on an already infected laptop is quite close tp pointless. I don;t suggest it impossible to restore to working order, just that your time and resources would be better spent moving important data to an external device and cleansing it from a clean computer. …

Member Avatar for Noor_7
1
338
Member Avatar for Suzie999

I recently started to develop a project under visual studio 2015 on my windows 10 machine. I zipped it up and moved it to my windows 7 machine (physical not VM), also visual studio 2015. All it is, is a helper class for reading and writing to the registry. On …

Member Avatar for rproffitt
0
226
Member Avatar for Hamza_13
Member Avatar for JOSheaIV
0
246
Member Avatar for Sameer_6

To get a string from a method called categdisplay, you will first and foremost need a method called categdisplay. And probably return a `new` string from it.

Member Avatar for Suzie999
0
272
Member Avatar for Darth Vader

I've not done this in c# but I'm sure the windows api will be quite ckunky for it and might not even work on non standard win32 windows and controls, So I point you toward [ui automation]( https://msdn.microsoft.com/en-us/library/ms747327(v=vs.110).aspx)

Member Avatar for Suzie999
0
730
Member Avatar for rose_2
Member Avatar for Dani

> web hosting costs are over $5000/mo I'd change my host, that's just ridiculous. Is it hosted on the moon or something?

Member Avatar for invisal
0
607
Member Avatar for Suzie999

I have a windows form application, which uses some user settings (Settings.settings) One of those settings if of type bool and set to default of False. In my form_load event I check that value, if it is true then a new form is started where user enters a password, and …

Member Avatar for Teme64
0
179
Member Avatar for wh196785615

class Account { Account() { } ~Account() { } } class Savings : public Account { } class Checking : public Account { } There's your start, now show some willing. Few will do your homework for you.

Member Avatar for David W
0
182
Member Avatar for JOSheaIV

Here is an image of this topic as I see it on my PC. http://postimg.org/image/x98hk6vvl/ Notice anything? It's a mobile phone image in the middle of my screen. I don't have a problem scrolling, It's not hard, I just don't like to scroll past vast wasted space.

Member Avatar for Popc0rn
1
2K
Member Avatar for Suzie999

Tried to cash out over 8 weeks ago, but still just "pending". Has this been dropped now, or was it ever even real?

Member Avatar for diafol
1
201
Member Avatar for progteacher2
Member Avatar for deceptikon
0
113
Member Avatar for El Ticha
Member Avatar for SalmiSoft

Not a part of the site I'd go to, I certainly don't see a New tab anywhere. I'm probably missing it somehow. (edit) And of course I see it immediately after posting.

Member Avatar for diafol
0
235

The End.