Avoid Public Key Spoofing?

Aug 26, 2011

I am doing an activation server which will enable users to activate their software. The problem is that they own the public key.. the verification method needs the public key to check signature of the license file. My concern is that someone could generate their own license file using two key (public and private) and then change the public key on the client which would spoof his current license.

Is there any way of avoiding this ? Where should the public key be stored ? You have to take into consideration that the checkup is done on client and the signature is created on server.

View 2 Replies


ADVERTISEMENT

Asp.net - Access A Module Or A Public Class With Public Shared Members From Inline Vb Code <% .. %>?

Feb 10, 2011

I can access a module from code behind but not from the aspx page in inline VB code <% ... %>.

View 2 Replies

Declare A Public Param For Public Class Form1?

Apr 7, 2011

Imports System
Imports System.Threading
Imports System.ComponentModel[code]....

how to declare "smsport" on class smscomms as public so that it can be access in class form1 or button1_click event.

View 5 Replies

Declare A Public Variable And A Public Sub In An Aspx Webpage?

Aug 26, 2010

How do declare a public variable .aspx web page that can be used in all the pages within my web application?

View 3 Replies

Any Way To Avoid UnauthorizedAccessException

Jan 21, 2010

Is there any way to avoid UnauthorizedAccessException, i get it every time when I try to do this:[code]Is there any way to make that script read-write?

View 10 Replies

C# - How To Avoid Using Enums

Feb 15, 2010

Until asking a question on here I never considered (enums) to be a "bad thing." For those out there that consider them not to be best practice, what are some approachs/patterns for avoiding their use in code?

Edit:

public Enum SomeStatus
Approved = 1
Denied = 2
Pending =3
end Enum

View 5 Replies

[Public Sub / Public Function] Equals [Sub / Function] Declaring A Function Or Sub?

Jun 12, 2011

I want to know what implies to declare a function or a sub using public or directly Sub / Function i.e.:

Public Function Whatever()
' Process
End Function

versus.

Function Whatever()
' Process
End Function

View 4 Replies

Asp.net - Re-use An Ado.net Datatable So As To Avoid Re-querying?

Jun 11, 2011

Is it possible to re-use a DataTable in .net? Here's an example from code-behind:

[Code]...

View 3 Replies

Avoid Adding A Or B Or C Twice To The Datagrid?

May 13, 2009

i have a list of items in a listbox:-

A
B
C

and i have a button that adds these items by selecting them to a datagrid how can i avoid adding A or B or C twice to the datagrid?

View 2 Replies

Avoid Another Instance Of Application?

Jan 14, 2010

I can cheack another instance running r not then i closed the newly created instance

but nw my problem is i need to show the previously running instance if the previous instance minimized or hided

i m using the foolowing code to find the previous instance[code]...

View 7 Replies

Avoid Deleting When None Selected

Sep 2, 2011

My [code]...

But how i avoid when you selected nothing, you can delete.

View 2 Replies

Avoid Doubling In Combobox?

Aug 10, 2010

I have following code that is generating random no. between 1 to 10. This is working fine. But, I do not want doubling in combobox (cmbRnd is my combo box). How can I avoid it?

Private Sub cmdRnd_Click(ByVal sender As Object, ByVal e As EventArgs) Handles cmdRnd.Click
Dim random As New Random(), i As Integer = 1

[Code]....

View 2 Replies

Avoid Duplicate Value In Datgrideview?

Nov 11, 2010

How can I Avoid Duplicate values In datagrideview. IF found dublicate values in will change the row backcolour and show me the rows.

View 1 Replies

Avoid File Is Being Used By Another Process?

May 27, 2011

I am trying to check whether file exists or not. if not create and write something into it.The file is getting created but not updating and getting error message says it is being used by another processCode snippet:

Public shared sub MyXml()
If Not System.IO.File.Exists("configfile.xml") Then
Dim writer As New System.Xml.XmlTextWriter(fullPath.ToString + "configfile.xml", Nothing)

[code].....

View 1 Replies

Avoid Rounding Off Numbers?

Apr 20, 2011

how to avoid rounding off numbers

Code below

Dim acc = 0
Dim i
Dim x() = {699.68, 632.70}

[Code].....

View 2 Replies

Avoid The Changing The Date?

Jan 3, 2012

I would like to ask about how to code datetime in CONSOLE vb.net. I already got the format but my problem is after I inputted another data today to the database. In this image,my data retrieval was error. The ID (1,2,3,4,5,6)should be jan 2. Unfortunately, the output was today after Ive put new data to the database. I was confused on how to code to avoid changing the date.

[Code]...

View 2 Replies

Delay To Avoid Garbage?

Jun 15, 2009

I'm trying to introduce delay to my code so that it would read in the noise or garbage data.
I'm receiving the data from RFID to pic thru RS232.Is there any simple delay that i can use? I seriously don't understand threading.

View 1 Replies

How To Avoid A Null Reference

Jan 8, 2011

I have been trying to use sockets in VB.NET and once I cannot understand how to avoid a null reference. [code] I have tried introducing sock as 'New Socket', but this gives me 'Overload resolution failed because no accessible New can accept this number of arguments'.I also cannot simply add '= Nothing' onto the end of my declaration since this still gives a null reference.

View 6 Replies

How To Avoid Blank Lines

Sep 21, 2010

i have coded as below but once the record deleted and when the application write to text file again it gives an error says index was outside the bounds of the array any solution?

Dim stream As New IO.StreamWriter("C:Documents and SettingsAdministratorDesktopBill PaymentBillPaymentRecords.txt", False)
stream.WriteLine("")
stream.Close()

View 2 Replies

How To Avoid If ... Else And Switch Cases

Aug 3, 2010

I have been programming for alot of time. Generally i program in some languages like PHP, ASP.net, Java, JavaScript and others. In all languages i have to use alot of if else statments . Like if value= 10 then ... if i review my code then i find alot of if conditions. So i would like to minimise them but how not sure. one point was using classes somewhat minimised but still they are more... like task, cat, sec and type:

[Code]...

View 9 Replies

How To Avoid Loops In Networks

Aug 14, 2010

I have a matrix for example (10 x 10) which represents 10 nodes. The matrix called MyMat(9,9) The rows of this matrix represent the source node (From Node) and the columns represents target node (To Node). It has 14 links which are randomly distributed. The non zero values represent the connections between nodes.

[Code]...

View 6 Replies

How To Avoid Overlapping Of PictureBoxes

Jun 13, 2012

I am making an application in which number of pictureboxes created at runtime but they do not overlap to each other. I wrote a code bt its only for two pictureboxes.How can i do that for number of pictureboxes..

Public Class Form1
Dim pic1, pic2 As Rectangle
Dim drag, iscollided As Boolean
Dim mousex, mousey As Integer
Private Sub pic_Mousemove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
[Code] .....

View 1 Replies

How To Avoid Radiobutton To Autoselect

May 14, 2009

I need the user to choose one on a group of RadioButton controls. The problem is that on form load, one RadioButton is automatically selected. I does not want one selected, unless the user checks it, but cannot find how to disable automatic selection.

View 2 Replies

IDE :: Avoid Open A Project Twice?

Dec 1, 2009

it happened to me a lot - i double click a solution file and open it - change it and find out that its openned twice on my computer. IN VB6 - you could not open the same vbp twice - how can I do that in vb.net 2005/2008

View 3 Replies

Jquery - Avoid Refreshing A Div If The Div Has Been Used?

Jul 29, 2011

i have a div inside a iframe. It will be refreshing very 10 seconds.the div place holder has 4 text boxes controls. if any of the textbox is used then i want to not to refresh the div.

View 1 Replies

Want To Avoid A Number In List

Apr 21, 2011

[code] I am getting a run time error for this code. How can I change it. and how to limit the loop to print number from 1 to 42 and not 5 in the list ?

View 2 Replies

Asp.net - Avoid Reloading All XML Data For Each Repeater?

Jan 26, 2011

I am trying to place a repeater within a repeater using xml data. I have it working exactly as I want, but the method I have used reloads the data for each repeater. I think I need to cast as an XmlNode but I'll be honest - I have no idea where to start. Here is my code - I'd like to keep everything in the code behind if possible.

[Code]...

View 2 Replies

Avoid Adding In Database That Has Been Already Save?

Mar 15, 2012

how can i avoid data duplicate in the database?i mean if i add in the fields that has been already save it will still save.i don't know how to query or filter not to add the same info.i have the code below but it still save if i input same as already in the database.[code]i want is to query first before it add the data to avoid same info.

View 6 Replies

Avoid Assembly.LoadFrom Blocking?

Jul 31, 2011

I create a .net dll on the fly with codedom then I load it with Assembly.LoadFrom like this:

Private Sub Test()
Dim ASM As Assembly = Assembly.LoadFrom("test.dll")
'Do some stuff with the loaded assembly...

[code]....

View 1 Replies

Avoid Connection Timeout Expired?

Dec 9, 2009

The following is my connectionstring: server=(local);database=JnJ3;uid=sa;pwd=sa May I know how can I avoid timeout expired because I keep on receiving error message when deal with huge amount of data.The timeout period elapsed prior to completion of the operation or the server is not responding.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved