Click here to Skip to main content
       

C#

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page  Show 
GeneralRe: The .exe application file isn't obfuscated after installing setup ?membertaibc25 Feb '13 - 3:12 
Thanks Pete very much,
 
Could you please tell me more how to use PostBuild process ?
 
I'm using the Crypto Obfuscator software to obfuscate assembly files.
 
And I can see the properties of Setup project include the PostBuildEvent but I don't know how to use it (I am using Visual Studio 2010)
 
Thanks and regards,
Tai
GeneralRe: The .exe application file isn't obfuscated after installing setup ?protectorPete O'Hanlon25 Feb '13 - 4:43 
Have a look at this[^]
I was brought up to respect my elders. I don't respect many people nowadays.

CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

GeneralRe: The .exe application file isn't obfuscated after installing setup ?membertaibc25 Feb '13 - 4:53 
Hi Pete, thank you
 
Could you tell me more detail about creating obfuscated setup project ?
 
My solution includes some project:
1. Start up project (create application file)
2. Library projects (create dll files)
3. Merge project (include obfuscated assembly files)
4. Setup project
 
Thanks and regards,
AnswerRe: The .exe application file isn't obfuscated after installing setup ?memberSamer AlRawi26 Feb '13 - 17:41 
Hi, You can drag and drop the project file to Eazfuscator.Net and it will handle the Obfuscation of your binaries every time you compile with release, if you are using different Obfuscator check how to obfuscate the project file, I believe rebuilding your solution is recompiling the .exe and overwrite your Obfuscated .exe then the setup project will include the new non-Obfuscated file.
GeneralRe: The .exe application file isn't obfuscated after installing setup ?membertaibc28 Feb '13 - 14:36 
Thanks Samer,
 
I am trying to use Crypto Obfuscator and Dotfuscator. I only rebuild setup project (not the solution) but it make the .exe recompiling. I don't know why ?
QuestionC#memberMohanKrishna.Kota24 Feb '13 - 4:06 
how to perform update and delete operations on a grid view in which the data is already bounded on the time of page load
 
here is my code:
<asp:GridView ID="gvUsers" runat="server" CellPadding="4" ForeColor="#333333"
                GridLines="None" AutoGenerateDeleteButton="True" AutoGenerateEditButton="True"
                OnRowEditing = "gvUsers_RowEditing" OnRowDeleting = "gvUsers_RowDeleting" OnRowUpdating = "gvUsers_RowUpdating" >
                <RowStyle BackColor="#FFFBD6" ForeColor="#333333" />
                <FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
                <PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" />
                <SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="Navy" />
                <HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
                <AlternatingRowStyle BackColor="White" />
 
            </asp:GridView>
 

c# Code:
 
protected void Page_Load(object sender, EventArgs e)
    {
 
        if (Session["Office"] == null)
        {
            Response.Redirect("Login.aspx");
        }
        else
        {
            Session.Timeout = 1;
            L1.Text = "District:&nbsp;&nbsp;&nbsp;" + Session["district"].ToString();
            L3.Text = "Department:&nbsp;&nbsp;&nbsp;" + Session["department"].ToString();
            L4.Text = "Office:&nbsp;&nbsp;&nbsp;" + Session["Office"].ToString();
 
            con.Open();
 
            if (Session["department"].ToString() == "NIC")
            {
                SqlCommand cmd1 = new SqlCommand("select * from DeptMaster", con);
                DataSet ds = new DataSet();
                SqlDataAdapter da = new SqlDataAdapter(cmd1);
                SqlCommandBuilder cmb = new SqlCommandBuilder(da);
                da.Fill(ds, "deptmaster");
                gvUsers.DataSource = ds.Tables["deptmaster"];
                gvUsers.DataBind();
            }
            else
            {
                SqlCommand cmd1 = new SqlCommand("select * from OfficeMaster where Office ='" + Session["Office"].ToString() + "'", con);
                DataSet ds = new DataSet();
                SqlDataAdapter da = new SqlDataAdapter(cmd1);
                SqlCommandBuilder cmb = new SqlCommandBuilder(da);
                da.Fill(ds, "deptmaster");
                gvUsers.DataSource = ds.Tables["deptmaster"];
                gvUsers.DataBind();
            }
            con.Close();
        }
    }
Mohan@Coding.com

AnswerASP.NETmemberJegan Thiyagesan25 Feb '13 - 12:14 
Hi,
This question looks like ASP.Net not C#, you might get a better answer, if you ask this question under ASP.Net category
 
Jegan
Think! Don't write a line of code unless you absolutely need to.

General[TUTORIAL] Native Cocoa Apps with C# and MonoMacmemberJake Rieger23 Feb '13 - 14:36 
I thought I would show you guys a quick tutorial on how to build native cocoa apps using C# and MonoMac. I will be showing you how to make the famous "Hello World" app.
 
Lets Begin!
 
You will need the following:
MonoDevelop IDE
MonoDevelop Framework SDK
XCode 4.x
 
One you have those, open up MonoDevelop. Click on "new solution" Drop down the C# category and select "Mac (open source)" and create a MonoMac project.
 
Now once that is done you should have some files and folders. Double click the MainWindow.xib file and XCode should open. Add a button and a label. Now click the middle button above Editor in the top right of XCode. Find "Automatic" and click on it and go to "MainWindowController.h" Now right click and drag the button to the code and add an outlet called "guiButton" or whatever you want. Do the same with the label. Now right click and drag from the button again but this time select action and name it "buttonClicked."
 
Ok, that's done. Save and close XCode. Now go back to MonoDevelop and open MainWindow.designer. A bunch of new code should have been added. Verify that the outlets and action have been added before continuing.
Your file should look like this:
 
// WARNING
//
// This file has been generated automatically by MonoDevelop to store outlets and
// actions made in the Xcode designer. If it is removed, they will be lost.
// Manual changes to this file may not be handled correctly.
//
using MonoMac.Foundation;
 
namespace dontgivemeerrors
{
	[Register ("MainWindowController")]
	partial class MainWindowController
	{
		[Outlet]
		MonoMac.AppKit.NSTextField guiTextField { get; set; }
 
		[Outlet]
		MonoMac.AppKit.NSButton guiButton { get; set; }
 
		[Action ("buttonClicked:")]
		partial void buttonClicked (MonoMac.Foundation.NSObject sender);
		
		void ReleaseDesignerOutlets ()
		{
			if (guiTextField != null) {
				guiTextField.Dispose ();
				guiTextField = null;
			}
 
			if (guiButton != null) {
				guiButton.Dispose ();
				guiButton = null;
			}
		}
	}
 
	[Register ("MainWindow")]
	partial class MainWindow
	{
		
		void ReleaseDesignerOutlets ()
		{
		}
	}
}
 
Ok, now open MainWindowController.cs and find "#endregion" Go under it and add the following line of code:
 
partial void buttonClicked (MonoMac.Foundation.NSObject sender)
{
 
}
 
Replace "buttonClicked" with name of your action. Now for the final step. Add this to that line of code:
 
partial void buttonClicked (MonoMac.Foundation.NSObject sender)
{
     this.guiLabel.StringValue = "Hello World";
}
 
Now run the app by pressing the icon with 2 gears and a green gear on the top right of MonoDevelop. Press the button and the label text should change to "Hello World."
 
Thats it. Most of your code will be under the action void. To find your .app file, go to YourUserName -> Projects -> NameOfProject -> NameOfProject -> bin -> Debug
 
Happy Coding! Smile | :)
 
- Team HsM
HSM

GeneralRe: [TUTORIAL] Native Cocoa Apps with C# and MonoMacmvpDave Kreskowiak23 Feb '13 - 14:39 
Great! This is not the place for it though. Write it up as a tip/trick, or if oyu go into a lot more detail, an article.

GeneralRe: [TUTORIAL] Native Cocoa Apps with C# and MonoMacmemberMycroft Holmes24 Feb '13 - 18:17 
24 hours from now this will be multiple pages deep in the forum, never to see the light of day again. As Dave suggested write it up as a tip/trick where it will come up as a result in the search most of us use.
Never underestimate the power of human stupidity
RAH

Questionprogramememberongwere23 Feb '13 - 9:35 
hello there... please how kind design program that identifies the head from the image save in the computer
AnswerRe: programememberSoMad23 Feb '13 - 10:37 
I believe you are asking about Face Detection and Face Recognition. There are many great articles here on CodeProject, so put those terms into the Search box and see what you can find.
 
I will start you off by presenting some of the articles I really like.
 
This is one of the best articles, but the source code is in C++:
Face Detection C++ Library with Skin and Motion Analysis[^]
 
Another great article focused on the technical aspects:
Haar-feature Object Detection in C#[^]
 
This great article is focused on making a program using existing libraries:
Multiple face detection and recognition in real time[^]
 
Best of luck
Soren Madsen
"When you don't know what you're doing it's best to do it quickly" - Jase #DuckDynasty

GeneralRe: programememberManfred R. Bihy23 Feb '13 - 11:37 
Something went wrong in trying to upvote your answer. I'll try again. It is kind of hard using this new interface from my Galaxy Tablet 7. Smile | :)
 
Edit: Seems I've got it right this time. Wink | ;)
"I had the right to remain silent, but I didn't have the ability!"
Ron White, Comedian


GeneralRe: programememberSoMad23 Feb '13 - 11:46 
No problem. I have trouble doing that on my phone too. The new arrows are especially tricky because they only appear on mouse-over Sniff | :^)
 
Soren Madsen
"When you don't know what you're doing it's best to do it quickly" - Jase #DuckDynasty

QuestionCustomize windows scroll bar in comboboxmemberKaizen20223 Feb '13 - 7:45 
I am trying to customize default windows scrollbar in combobox like below.
 
public partial class ComboEx : ComboBox
{
    internal ScrollbarEx vScrollBar;
    NativeListWindow listControl;
    public ComboEx()
    {
        InitializeComponent();
        DropDownHeight = 100;
        vScrollBar = new ScrollbarEx();
    }
 
    protected override void OnPaint(PaintEventArgs pe)
    {
        base.OnPaint(pe);
    }
 
    protected override void OnHandleCreated(EventArgs e)
    {
        base.OnHandleCreated(e);
        COMBOBOXINFO combInfo = new COMBOBOXINFO();
        combInfo.cbSize = Marshal.SizeOf(combInfo);
        Win32.GetComboBoxInfo( this.Handle, ref combInfo );
 
        listControl = new NativeListWindow(this, combInfo.hwndList);
    }
 
    protected override void WndProc(ref Message m)
    {
         if (m.Msg == (Win32.WM_REFLECT + Win32.WM_COMMAND))
        {
            if (Win32.HIWORD( (int)m.WParam ) == Win32.CBN_DROPDOWN)
            {
                COMBOBOXINFO combInfo = new COMBOBOXINFO();
                combInfo.cbSize = Marshal.SizeOf(combInfo);
                Win32.GetComboBoxInfo( this.Handle, ref combInfo );
 
                vScrollBar.Location = new Point( this.Width-23, 1 );
                vScrollBar.Size = new Size( 23, DropDownHeight );
                vScrollBar.Visible = true;
                Win32.SetParent(vScrollBar.Handle, combInfo.hwndList);
                Win32.ShowWindow(vScrollBar.Handle, ShowWindowCommands.Show);
                Win32.SetWindowPos(vScrollBar.Handle,HWND.TopMost, 155, 1, 23, 105, SetWindowPosFlags.SWP_SHOWWINDOW);
            }
        }
        base.WndProc(ref m);
    }
 
    // MyNativeWindow class to create a window given a class name.
    [System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name = "FullTrust")]
    internal class NativeListWindow : NativeWindow
    {
        // Constant values were found in the "windows.h" header file.
        private const int WS_CHILD = 0x40000000,
                          WS_VISIBLE = 0x10000000,
                          WM_ACTIVATEAPP = 0x001C;
 
        private int windowHandle;
 
        private ComboEx parent;
 
        public NativeListWindow(ComboEx owner,IntPtr handle)
        {
            AssignHandle(handle);
            parent = owner;
 
        }
 
        // Listen to when the handle changes to keep the variable in sync
        [System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name = "FullTrust")]
        protected override void OnHandleChange()
        {
            windowHandle = (int)this.Handle;
        }
 
        private void AdjustClientRect(ref RECT rect)
        {
            rect.right -= 23;
        }
 
        [System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name = "FullTrust")]
        protected override void WndProc(ref Message message)
        {
            // Listen for messages that are sent to the button window. Some messages are sent 
            // to the parent window instead of the button's window. 

            switch (message.Msg)
            {
                case Win32.NCCALCSIZE:
                    {
                        if (message.WParam != IntPtr.Zero)
                        {
                            NCCALCSIZE_PARAMS rcsize = (NCCALCSIZE_PARAMS)Marshal.PtrToStructure(message.LParam, typeof(NCCALCSIZE_PARAMS));
                            AdjustClientRect(ref rcsize.rect0);
                            Marshal.StructureToPtr(rcsize, message.LParam, false);
                        }
                        else
                        {
                            RECT rcsize = (RECT)Marshal.PtrToStructure(message.LParam, typeof(RECT));
                            AdjustClientRect(ref rcsize);
                            Marshal.StructureToPtr(rcsize, message.LParam, false);
                        }
                        message.Result = new IntPtr(1);
                        return;
                        break;
                    }
 
                    case Win32.WM_NCMOUSEMOVE:
                    {
                        base.WndProc(ref message);
                        Win32.SendMessage(parent.vScrollBar.Handle, (uint)message.Msg, message.WParam, message.LParam);
                        break;
                        break;
                    }
                    case Win32.WM_NCLBUTTONDOWN:
                    {
                        base.WndProc(ref message);
                        Win32.SendMessage(parent.vScrollBar.Handle, (uint)message.Msg, message.WParam, message.LParam);
                        break;
                    }
                    case Win32.WM_NCACTIVATE:
                    {
                        base.WndProc(ref message);
                        Win32.SendMessage(parent.vScrollBar.Handle, (uint)message.Msg, message.WParam, message.LParam);
                        break;
                    }
                    case Win32.WM_NCMOUSELEAVE:
                    {
                        base.WndProc(ref message);
                        Win32.SendMessage(parent.vScrollBar.Handle, (uint)message.Msg, message.WParam, message.LParam);
                        break;
                    }
                    case Win32.WM_NCLBUTTONUP:
                    {
                        base.WndProc(ref message);
                        Win32.SendMessage(parent.vScrollBar.Handle, (uint)message.Msg, message.WParam, message.LParam);
                        break;
                    }
                    case Win32.WM_NCHITTEST:
                    {
                        base.WndProc(ref message);
                        Win32.SendMessage(parent.vScrollBar.Handle, (uint)message.Msg, message.WParam, message.LParam);
                        break;
                    }
                    case Win32.WM_MOUSEMOVE:
                    {
                        base.WndProc(ref message);
                        if ((int)message.LParam > 0)
                        {
                            int x = Win32.LOWORD((int)message.LParam);
                            int y = Win32.HIWORD((int)message.LParam);
                            RECT rect = new RECT(); ;
                            Win32.GetWindowRect(new HandleRef(parent.vScrollBar, parent.vScrollBar.Handle),out rect);
                            Rectangle rc = new Rectangle(parent.vScrollBar.Location.X, parent.vScrollBar.Location.Y,
                                (rect.right - rect.left), (rect.bottom - rect.top));
                            if (rc.Contains(new Point(x, y)))
                            {
                                Win32.SetFocus(parent.vScrollBar.Handle);
                                Win32.SetWindowPos(parent.vScrollBar.Handle, HWND.TopMost, 155, 1, 23, 105, SetWindowPosFlags.SWP_SHOWWINDOW);
                                Win32.SendMessage(parent.vScrollBar.Handle, (uint)message.Msg, message.WParam, message.LParam);
                            }
                        }
                        break;
                    }
            }
            base.WndProc(ref message);
        }
    }
}
In the above code, I did the following 1. created a NativeWindow to catch the messages of combobox listcontrol by assigning combInfo.hwndList handle. 2. Placed my custom scrollbar(ScrollBarEx) in the non-client area of combobox listcontrol.
 
But my custom scrollbar(ScrollBarEx) doesn't receives any messages or focus. It looks like it is dead. Please look into this code and share some idea to make the scrollbar live.
AnswerRe: Customize windows scroll bar in comboboxmemberSledgeHammer0123 Feb '13 - 9:20 
Probably not the answer you are looking for, but Win32 / Winforms scrollbars are extremely tricky to skin. Win32 / Winforms in general is extremely tricky to skin well. It would behoove you to move to WPF for this. The entire concept of WPF is that everything can be easily skinned without you having to write any C# code (assuming you are not changing behavior). All done via XAML.
GeneralRe: Customize windows scroll bar in comboboxmemberKaizen20224 Feb '13 - 6:01 
Sorry I can't switch to WPF. Is there any idea to achieve this in winforms?
GeneralRe: Customize windows scroll bar in comboboxmemberSledgeHammer0124 Feb '13 - 8:20 
Oh well. In that case, you are in for a world of hurt lol Smile | :) . The common controls interact with the *real* internal window scrollbar, not your external scrollbar control, so you need to customize the internal one. The internal window scrollbar is not a control, but rather painted as part of the WM_NCPAINT process, so you'll need to override that and do all your own painting for the ENTIRE non client area.
 
BE WARNED: There is a major gotcha that people don't know about until they try to implement this. I only know about it because I've done it in the past Smile | :) ...
 
You [B]***CANNOT***[/B] achieve custom scrollbars without API hooking. No way, no how, no workaround that. Reason being is that Windows implements the scrollbars like this:
 
case WM_NCPAINT:
{
// random code to do random stuff
DrawScrollBars();
// more random code to do random stuff
break;
}
 
Now, thats all well and good, you could override the WM_NCPAINT message and prevent the stock DrawScrollBars() function from getting called.
 
However, the internal scrollbar functions that the common controls use do not go through WM_NCPAINT Smile | :) , they call DrawScrollBars() directly and there is no way to bypass that without API hooking Smile | :) .
 
So what you'll get is you'll get your pretty new scrollbars 75% of the time and the stock scroll bars flashing through 25% of the time.
 
Like I said, switch to WPF Smile | :) (or find an API hooking library).
Questionunable to start program, unrecognized error in windows web services frameworkmemberbonosa23 Feb '13 - 5:06 
My c# console app calls a managed c++ dll. The dll is added as a reference to the c# project. If I try to start in debug mode it says error while trying to run project. unable to start program, unrecognized error in windows web service framework. It is not a web application. If I run without debugging, the console pops up and my dll produces an error that the hdf5 header files don't match the hdf5 library my c++ dll is linked to (though it compiles and builds just fine). Both c# driver and c++ dll are 64 bit on a 64 bit machine. Both the F5 and ctrl F5 errors are puzzling. Any ideas what i should do to fix?
thanks,
saroj
Questionwhy System.NullReferenceException occurred?memberJassim Rahma23 Feb '13 - 1:54 
Hi,
 
I am using the following code to activate existing MDI child and refresh the grid at the same time. It was working fine until today but suddenly I am getting:\
 
System.NullReferenceException occurred
Message=Object reference not set to an instance of an object.
Source=Cure
StackTrace:
at cure_hospital_management.frmMain.repositoryItemFindFile_KeyDown(Object sender, KeyEventArgs e) in C:\Users\DELL USER\Documents\Visual Studio 2010\Projects\Cure\Cure\main_form.cs:line 1718
InnerException:

 
here is the code:
 
if (e.KeyCode == Keys.Enter && (sender as TextEdit).Text.Trim() != "")
{
    this.Cursor = Cursors.WaitCursor;
 
    is_form_exists = false;
 
    foreach (Form search_resul_form in this.MdiChildren)
    {
        frmSearchResult search_form = search_resul_form as frmSearchResult;
 
        if ((string)search_form.Tag == "BROWSE_PATIENTS")
        {
            // search_form.Activated(null, null);
            search_form.find_what = "FILE";
            search_form.find_text1 = (sender as TextEdit).Text.Trim();
            search_form.find_text2 = null;
            search_form.browse_result();
            search_form.Activate();
            is_form_exists = true;
            break;
        }
    }
 
    if (is_form_exists == false)
    {
        frmSearchResult SearchResultForm = new frmSearchResult(public_var);
        SearchResultForm.Tag = "BROWSE_PATIENTS";
        SearchResultForm.MdiParent = this;
        SearchResultForm.Dock = DockStyle.Fill;
        SearchResultForm.find_what = "FILE";
        SearchResultForm.find_text1 = (sender as TextEdit).Text.Trim();
        SearchResultForm.find_text2 = null;
        SearchResultForm.Show();
    }
 
    (sender as TextEdit).Text = "";
 
    this.Cursor = Cursors.Default;
}

 
Technology News @ www.JassimRahma.com

AnswerRe: why System.NullReferenceException occurred?memberAlan N23 Feb '13 - 2:04 
So, did you look at line 1718?
GeneralRe: why System.NullReferenceException occurred?memberJassim Rahma23 Feb '13 - 2:10 
this the line:
 
if ((string)search_form.Tag == "BROWSE_PATIENTS")

 
Technology News @ www.JassimRahma.com

GeneralRe: why System.NullReferenceException occurred?memberAlan N23 Feb '13 - 2:33 
    foreach (Form search_resul_form in this.MdiChildren)
    {
        frmSearchResult search_form = search_resul_form as frmSearchResult;
 
        if ((string)search_form.Tag == "BROWSE_PATIENTS")
        {
 
You will have to put in a break point and examine all the objects that may be null. Bear in mind that the error could have occurred before line 1718.
 
1) search_resul_form as frmSearchResult, will be null if search_resul_form is not a frmSearchResult or a derived type.
2) ((string)search_form.Tag == "BROWSE_PATIENTS" could fail for two reasons. Either search_form or Tag is null.
 
Alan.
GeneralRe: why System.NullReferenceException occurred?memberJassim Rahma23 Feb '13 - 2:44 
I have noticed the following:
 
if I start the application and then invoke the searcH_form then invoke any other form then call the search_form it will be activated normally without a problem
 
but If I start the application then call anyother form and then try to call the search_form then thsi error will occur.

 
Technology News @ www.JassimRahma.com

GeneralRe: why System.NullReferenceException occurred?memberAlan N23 Feb '13 - 2:54 
Possibly something is not being initialised properly. Bear that in mind, but concentrate on determining what is causing the null reference exception as that will direct your search towards the mistake in your code. Use the debugger to find the null object and go and do it now!
 
Alan.
AnswerRe: why System.NullReferenceException occurred?memberjschell24 Feb '13 - 7:05 
From the line number there are only two possibilities
 
frmSearchResult search_form = search_resul_form as frmSearchResult;
 
Either frmSearchResult is null or it is not a search_resul_form;
 
Either case will result in search_form being null. And that is the only possible cause of your error.
QuestionHow to read gmail mails using C# (only Unread Email ) [modified]groupAeroIT22 Feb '13 - 18:13 
Hi Guys,
 
I need a console based program to read a gmail mail using c#(Unread only). please can any one send my the link and class library of POP3 or IMAP.

modified 23 Feb '13 - 1:27.

AnswerRe: How to read gmail mails using C# (only Unread Email )mvpDave Kreskowiak22 Feb '13 - 18:22 
OK, so write it! What? You didn't really think WE were going to do it for you, did you?
 
Or did you mean to ask a question? I don't see one in your post.

AnswerRe: How to read gmail mails using C# (only Unread Email )mvpOriginalGriff22 Feb '13 - 21:42 
Is Google not working for you?
Or do you perhaps not know how to use it?
Hint: read a gmail mail using c#[^]
 
In future, please do at least basic research instead of wasting your time and ours.
If you get an email telling you that you can catch Swine Flu from tinned pork then just delete it. It's Spam.

AnswerRe: How to read gmail mails using C# (only Unread Email )memberMarco Bertschi23 Feb '13 - 8:02 
There is an API for that:
https://developers.google.com/google-apps/gmail/[^]
 
Why the heck can't you just use Google for searching APIs for Google products?
cheers
Marco Bertschi

Software Developer & Founder SMGT Web-Portal
CP Profile | My Articles | Twitter | Facebook | SMGT Web-Portal

Questionsimplest hacking software in C#memberMember 985741522 Feb '13 - 16:44 
can i make ant hacking software in C#
AnswerRe: simplest hacking software in C#mvpDave Kreskowiak22 Feb '13 - 18:21 
How the hell should we know?? We don't know anything about your skill set at all.
 
So, the default answer, since you're even asking the question, is no.

AnswerRe: simplest hacking software in C#memberSoMad22 Feb '13 - 19:13 
This is not a hacker site and I don't think anyone here will help you with this question.
 
Soren Madsen
"When you don't know what you're doing it's best to do it quickly" - Jase #DuckDynasty

AnswerRe: simplest hacking software in C#mvpOriginalGriff22 Feb '13 - 21:44 
No.
Ants are insects and are remarkably difficult to hack: they are very small, so hitting them with an axe is difficult, and they do not have internet access so virus code injection is next to impossible.
If you get an email telling you that you can catch Swine Flu from tinned pork then just delete it. It's Spam.

GeneralRe: simplest hacking software in C#memberJibesh22 Feb '13 - 22:46 
The perfect and complete solution is this!!! Wink | ;)

GeneralRe: simplest hacking software in C#memberShubh Agrahari23 Feb '13 - 2:03 
it is not good to start learning with hacking......there is so many technologies that is best from hacking to learn.....and safe for career also...
AnswerRe: simplest hacking software in C#memberMarco Bertschi23 Feb '13 - 8:04 
Just to tell it to you: This is not Google and our services can only be used without sarcasm and dumb answers if you have searched Google before.
cheers
Marco Bertschi

Software Developer & Founder SMGT Web-Portal
CP Profile | My Articles | Twitter | Facebook | SMGT Web-Portal

AnswerRe: simplest hacking software in C#memberV.25 Feb '13 - 0:25 
The fact that you ask the question
Member 9857415 wrote:
can i make ant hacking software in C#

 
gives you the answer ! No you can't, otherwise you wouldn't ask.

Questionsourceafis problemememberarissem22 Feb '13 - 8:02 
i have a probleme with Fingerprint Identification iam using sourceafis to identify but i cant the Afis.Identify function
AnswerRe: sourceafis problememvpDave Kreskowiak22 Feb '13 - 8:47 
You can't WHAT?? Your post made no sense at all.
 
If you've got problems with a specific library, then your best source of information is the manufacturer of that library.

GeneralRe: sourceafis problemememberarissem22 Feb '13 - 8:55 
i cant get the afis.identify to work
and this is a free library
GeneralRe: sourceafis problememvpDave Kreskowiak22 Feb '13 - 9:26 
Well, then go back to the site where you got the library and see if there is a support link somewhere or maybe a forum dedicate to using that library, whatever it is.
 
I don't have enough information to even tell you who made it!
 
My bad. It's a SourceForge project. There's a Support link on it's page. Click that and follow the instructions to contact the people who made that library.

GeneralRe: sourceafis problemememberarissem23 Feb '13 - 3:21 
thanks
but the problem is i need to extract the template from the fingerprint each time i need to identify someone
and that takes 45 second depend on the database for me this to slow
my problem is with passing the database values
for exemple
List dtrows = dt.asEnumerable;
and then convert each datarows to bitmaps
and then convert pass the list of bitmaps to a list of fingerprints
and then pass the fingerprints to the persons
for exemple
person.fingerprints = fingerprints;
 
and then extract each fingerprint passed to the person with the Afis.extract(person) function
and then instead of using afis.identify function i use afis.verify which is toooo slow and i cant get afis.identify to work
GeneralRe: sourceafis problememvpDave Kreskowiak23 Feb '13 - 4:19 
AGAIN, your BEST source of information is to ask the people who wrote the library. NOT a bunch of people who have never used it, let alone heard of it.

GeneralRe: sourceafis problemememberarissem23 Feb '13 - 6:48 
thank you i did not read any guide
thanks again
GeneralRe: sourceafis problememvpDave Kreskowiak23 Feb '13 - 8:10 
!@#$%^& &$%^! Do you have someone wash your ass too? ASK YOUR QUESTION HERE --> http://sourceforge.net/p/sourceafis/discussion/1051112/[^]

Questionfile transer using wifi with out socket programming in c#memberraythatha721 Feb '13 - 23:02 
can any one tell me how to transfer file via wifi
SuggestionRe: file transer using wifi with out socket programming in c#mvpRichard MacCutchan21 Feb '13 - 23:56 
You already posted this question at I want to sync file using wifi in C# without using Socket Programming[^]. Please post in one forum only.
GeneralRe: file transer using wifi with out socket programming in c#memberraythatha728 Feb '13 - 23:25 
first sorry about that
 
actually i don't get any answer of my question so that's why i am posting the message also....
GeneralRe: file transer using wifi with out socket programming in c#mvpRichard MacCutchan1 Mar '13 - 0:36 
If you don't get an answer then it means that no one has the answer. Reposting the same question is not the way to go about it. Try editing the original and adding some more detail about your problem.
Use the best guess

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   


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