Maintain Privacy Of My Program?

Mar 3, 2010

I want to know that is it possible to convert exe file(made from vb2008) to vb source code..if it is possible then how can i maintain Privacy of my program.

View 2 Replies


ADVERTISEMENT

Maintain Value Of A Variable Program?

May 9, 2012

I have a string variable called str assigned with "John". I changed it to "Dave" when the first button is clicked. When the second is clicked, I displayed the value to a label. I wanna see Dave but I just see John. Why is that?

There is nothing on page load and nothing else where. I know I can put into a session but this is on the same page. Can I not do without session or viewstate. [code]...

View 1 Replies

Maintain Local Variable Value Between Calls In Program?

Jul 21, 2011

Public Function MethodOne(ByVal s As String) As String[code]...

I want to retain the value of i, but once it goes back into MethodOne, it loses its value. I tried making it static i As integer = 0, but this did not work.

View 2 Replies

VS 2010 Update Program But Maintain Database?

May 1, 2012

using visual studio 2010. I have a vb.net application that needs to be updated periodically. The software stores client lists in a database for the user, but when the user reinstalls the program after I send them an updated publish, the client list database is replaced with a fresh empty database.

Is there a way that the user can reinstall the software without losing their current database?

I don't know if I need to somehow make separate publishes. One for an initial install to set up the database, and then one for updates that leaves the client database untouched? I don't know how to go about it.

View 3 Replies

Privacy In VB Web Browser?

Jun 23, 2009

I have a pretty simple VB program (2008) that essentially works like an informational Kiosk. It has a few buttons to navigate to certain web pages. But I need to be able to protect the information that has been submitted to previous web pages so that another user can not find out that information. How can I disable the ability for a user to navigate back in the web browser? My code is basically just on-click events:Private [URL]..

View 4 Replies

VS 2010 Make Privacy Browsing?

May 18, 2012

Dim OrgValue As String '%USERPROFILE%AppDataLocalMicrosoftWindowsTemporary Internet Files
Private Sub Form1_Load(sender As Object, e As System.EventArgs) Handles Me.Load
'read the key of temp internet folder

[code].....

View 4 Replies

How To Maintain Application Modified Settings In The Settings Files After A Program Update

Sep 8, 2009

Is there a way to maintain application modified Settings in the settings files after a program update? i.e. I have 10 or so values in the settings file and the users can modify them... when I send a program update they revert back to what I initially programmed them to be.

View 3 Replies

Taking Screenshots Violates Privacy / Data Protection Law?

Jun 9, 2009

In my VB6 programs (internal to our organzation) I have always liked taking screenshots upon the occurence of an error to give me more clues as to its cause but somehow I have read somewhere that it may be in violation to some law (privacy / data protection).In the project I am currently developing and it will be for marketing I have used the same method but upon reading about the warning I am now somehow hesitant to use it although it has proved useful in the past.

View 16 Replies

Visual Studio Asp.net Webpage Privacy / Authentication Settings

Dec 8, 2011

I am using Visual studio 2010 vb asp.net.I want to secure my webpages from direct accessed by unauthorized person or only user can access the page. how to setup Visual studio vb asp.net webpage privacy.or Is there any plugin available for visual studio for securing pages

View 1 Replies

Maintain An App Activated?

Jul 21, 2011

I need to create a program that when it is opened, Focus will be always in that program until someone with any way will close it. I've tried to add Me.GetFocus() in the LostFocus event but nothing happens, I've tried to add Me.activate() when the Deactivate() event raises and when I debugged the program worked but when I run the biulded .exe file nothing happens again! how I can manage this Function?

View 6 Replies

Maintain DB Field Format

Mar 27, 2009

I have a table in Access with 3 fields Key (autonumber), Field1 (Text), LookUp1 (combobox).The combobox field is working off a list that I manually entered into it (there are only three options Opt1, Opt2, Opt3..When I import the datagridview control, the fields all come across as Text, and I lose that combobox option.Can someone tell me how I can maintain the format of the fields within Access when I import? [code]

View 7 Replies

Maintain Security In .net Applications ?

Aug 18, 2011

How do i maintain Security in VB.net Applications ? esp in databases

View 2 Replies

Maintain State Of Textbox - ASP.NET?

Jan 23, 2009

how to maintain state of textbox while postback

View 2 Replies

Maintain Usage Log For An Application?

Oct 13, 2010

Well there are several ways that you can implement such a log. You could write to a text file or XML file...or you could use the Windows Event log.

What do you envision using for logging purposes?

View 1 Replies

.net - How To Maintain Paging On Page Load

Sep 11, 2009

I am using vb.net code in which I am having a gridview control. Please see the below code

<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True"
AutoGenerateColumns="False" CssClass="innerGridTable" DataKeyNames="OrgID" DataSourceID="OrgGridViewDataSource">
<Columns>
<asp:CommandField ShowSelectButton="True" ButtonType="Button" SelectText="Select"
ControlStyle-CssClass="Button">

[Code]...

View 2 Replies

How To Maintain Position Of An Object W.r.t Window

Jan 18, 2011

i just want to know how to maintain the position of an object w.r.t the window in vb when i resize the window during run-time.i tried anchoring it from all sides and the object resizes along with it.

View 6 Replies

How To Maintain Scroll Position In DataGridView

Apr 1, 2010

I was wondering if there is a way to keep the same scroll position in a datagrid view as the app jumps around to various rows (driven by the user selecting different timestamps or address). After the jump happens, the horizontal slider moves all the way to the right, but I want it at the same position as before the jump (or at lease go all the way to the left).

I have tried numerous things (datatable.AcceptChanges(), etc) but haven't been able to figure it out yet.

View 1 Replies

How To Maintain Variable Value In Double DataType

Jun 22, 2012

Datatable contain some values like 0.0,10000.00,54678.94. I am getting that values using for loop and store it in a variable in double datatype. I want to add these nos and store it in a variable. Each time variable value changed.

for loop
Dim ds5 As dataset1.pro_dtsumDataTable = TA5.GetData(TextBox1.Text, users)
If (ds5.Rows.Count > 0) Then
Dim y As Double
y = Double.Parse(ds5(0)("sum(fld_primary)").ToString())
Dim y1 As Double
y1 = 0 + y
End If
Next

First time y1=0.0
Next time the value of y1 is not added to previous value.
I want the result y1=64679.34

View 1 Replies

Launch App From Shortcut & Maintain Focus?

Feb 22, 2011

I need to launch a mainframe login screen from a shortcut so that the target and start in paths are preserved.

Before I figured out that the 'target' and 'start in' paths were problematic I was calling the .exe from the server using the following code and then sending keystrokes to the mainframe login dialog:

Private Sub btnDB1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDB1.Click
Dim ProcID As Integer

[Code]...

...To launch the app from the shortcut, which works but I then can't call the process ID to set focus and send keystrokes to the login form.

View 3 Replies

Maintain PageViews In Global.asax (asp.net)?

Mar 25, 2010

I need a function in global.asax file which gets called only once when user enter a page url. application_beginrequest gets called 50-60 times in a single page( as to render a page several requests go to server.)

i though of a solution - I can write my fucntion in global.asax and call it on page load of other pages but in that solution I need to call it in every page. I would prefer something which is to be done only in global.asax

View 2 Replies

Maintain Zeros In Incremented Values?

Jul 18, 2012

How to maintain Zeros in incremented values ex: ECJ-00001

[Code]...

View 5 Replies

Best Way To Maintain An Autocomplete / Suggest List Across Sessions

Apr 7, 2009

I would like to maintain a list of all of the strings entered into a ComboBox across all uses of an application on a given PC, for use as the AutoCompleteSource for that ComboBox, i.e., I enter in "Fred" in the ComboBox, commit the data, close the application, reopen the application, reopen the ComboBox, type "F", receive the suggestion "Fred".Assuming I already have in place code to create and maintain such a list in memory and add new elements to it as they are entered into the ComboBox, etc., what do you suggest as the best way to save/load this data in between sessions?Possible complicating factors: This application will be deployed via OneClick deployment, and will search for updates online every time the application starts. I would prefer that if the application updates, the list still exists after the update has completed.

View 2 Replies

How To Maintain Aspect Ratio Of Form When Resizing

Jul 1, 2011

I use this code for maintaining aspect ration of form when resizing:

Public Class Form1
Public Structure Rect
Public left As Integer
Public top As Integer
Public right As Integer
Public bottom As Integer

[Code]...

View 9 Replies

Keep / Maintain The Split Characters When Splitting A STRING?

Apr 29, 2010

I have had a look at 2010 to see if any options have been added to

System.StringSplitOptions

and we still have;

None

or

RemoveEmptyEntries

Anyway after answering another STRING related question here.>>

[URL]

I thought about how the String.Split method works.

Often I have wanted to split a string on the characters that terminate a sentence such as a full stop >> . << ,

a question mark >> ? << or an exclamation mark >> ! << and still keep the string split characters.

[Code]....

View 10 Replies

Maintain A Running Total In A SQL Server Database?

Mar 4, 2011

I am using Visaul Studio 2010 to build a Windows Forms application to maintain a table in an SQL Server 2008 database. The table is named CASHBOOK and here are the further details:

DATE | DESCRIPTION | DEBIT | CREDIT | BALANCE
--------|----------------|---------|-----------|---------
1/1/2011| CASH BALANCE | | | 5000
1/1/2011| SALES | 2500 | | 7500
2/1/2011| PURCHASE | | 3000 | 4500
2/1/2011| RENT | | 4000 | 500
2/1/2011| SALES | 5000 | | 5500

I can use CASHBOOKTABLEADAPTER.INSERT(...) to insert appropriately, but my problem is how do I update the BALANCE column?

View 6 Replies

Maintain Aspect Ratio Of Container Form

May 21, 2010

I have the need to maintain a 4:3 aspect ratio on a Video control on a form. The forms (there could be up to 16 in a 4x4 layout) should all maintain a 4:3 aspect ratio when resized depending on clients monitor/resolution. The forms have a border and will keep them. The control is set to fill the form and is the only control on the form. Here is code that I use to create the initial layout:

[Code]...

View 1 Replies

Maintain Listbox Scroll Posstion After Postback?

Feb 12, 2009

I am developing FX software where Ticks are coming through socket and loading in listbox. but if i scroll down to see items its send back to me at top when new item add in listbox so what is way that scroll bar posstion remain at same where client want and its also keep add..

View 4 Replies

Sql - Maintain A Stock Report Using Crystal Reports?

Mar 12, 2011

I want to take the following result with the help of query in Crystal Reports:I have a stock table where three column's "type", "product", and "quantity" now I want that to drag two sql expressions in my report 1st is "INN" and 2nd is "Out" and it comes like if the "type" is purchase so it check the "product" field and ADD the quantity and if the type is Sale it less the quantity according to "product" So what query should I write to get the result?

View 1 Replies

Strip First 75 Characters Of String And Maintain Words

Jan 28, 2011

I am trying to strip the first 75 characters from various strings (sentences / phrases) and it seems right but I need to ensure that the now words are truncated in the process. Meaning that if the 75 character is part of a word it needs to fall back to the beginning of the word or nearest space..

I thought of stripping the entire string into separate words and then counting the length of combining the words and stopping when I reach the target but what do I do in the case when it is not a valid sentence just a bunch of characters jammed together. I thought of using grammar parsing tool libraries and parsing into tokens etc but that seems to over complicated.

if text.length() > 75 then
ctext = text.remove(text.length, 75) & "..."
endif

I put elipses at the end but using the above I also get the error:

does anyone have any better suggestions.

View 1 Replies

VS 2008 - How To Maintain Line Breaks In DB Column

Nov 30, 2011

I am reading a field from my database that has line breaks in it and displaying it on an aspx page. I want to maintain the line breaks on the page. I believe this is more of a VB.NET issue than a DB problem. [URL]

So this is what I tried:
If IsDBNull(CourseHours.Value) Then
EventDesription.CourseHours = ""
EventDesription.CourseHours1 = ""
EventDesription.CourseHours2 = ""
EventDesription.CourseHours3 = ""
[Code] .....

I am pretty sure that CourseHours.Value contains the cr-lf's I am looking for. I attached a screen shot of my debugging session. When I query CourseHours.Value I see boxes or squares which I believe is signitying CR-LF. But my split is only ending up with one array element and it is a long string with all the course hours concatenated. What do I need to Split on?

View 8 Replies







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