Variable Readable From All Forms?
Feb 7, 2010Variable readable from all forms?
View 14 RepliesVariable readable from all forms?
View 14 RepliesUsing Visual Basic 2008 Express. I need to pass a variable to another form. Or else make the variable visible to both forms.
View 4 RepliesI have a VBA form in Microstation I am using to try and help automate a task. The only problem I am having is I am reading a textbox (Filebox.Text) and setting it as the variable (FN). It works, because I used Msg.Box (FN) to test it. However, in two of the lines of code, I am trying to use (FN) to pass the typed in filename to the command to run in Microstation. Unfortunently, it gets passed on as (FN).dgn instead of the actual filenale typed into the textbox. Is there a way I can make the variable actually seen as a variable? Code on Pastebin: url....Also, not sure if this is the right section, 100% new to VBA, coming from a world Bashed together.
View 3 RepliesThis is my first Windows app to create since VB6. I've been in the world of ASP and ASP.NET for many years. However, now I have been asked to create a simple app that needs to be windows based.
[Code]...
Is there any way to take an xml string in .net and make it easyer to read? what i mean is can i convert this:
[Code]...
is there any built in class for this? as sql server 2005 seems to remove all formatting on xml to save space or some thing...
I downloaded a database from url... it was a zip archive. Anyway my question is, there are two files: virussignatures.dat and virussignatures.fmt. I've heard that I should extract the database as SQL by using BCP. The contents of virussignatures.fmt is: [code] I want to turn the virus signatures.dat to an XML or an understandable TXT.
View 1 RepliesI have ASN.1 format files. I have to convert into CSV(comma separated) format also readable one. Tell me the shortest way... Like Decoders etc.
View 1 RepliesIs There Any Possible Way To Convert Bytes To Readable text?
View 6 RepliesI am having trouble converting the Bytes() to a readable text.
I will be receiving packets from a UDP Connection, but due to lack of connectivity issues, they have provided me a .mem file that i am assuming is the whole stream of the packet.
So for now, i am trying to read the file and i get a collection of bytes(). but i cannot convert it to readable text.
i have been working on VS 2008 for past 6 months and right now i am working on some little project which requires the value in reg_binary in XP to be decoded to readable string of the original form
View 2 Repliesi came up to create my own because i need to encrypt 10character string and i want it to output also 10character string..security is not my concerned here..what i want is encrypted string is not readable by the user or is not obvious to user.. is this possible by the use of Xor method?..BTW,its better if the output is alphanumeric.
View 3 RepliesHow do I turn this:
20101028094024.500000+060
into a readable date and time.
I have a Socket application that, when data is received (on the Server side) and the client is recognized, the data is passed onto its own socket and stream, and the previous socket and stream is discarded.
The data is serialized with a binary formatter before sending and deserialized on receiving the data.
[Code]...
In developing a flash-based memory manager, I need to be able to view large quantities of data. With my eyes and monitor resolution, I can read hand-drawn 3x5 letters on a 4x6 matrix without too much difficulty, but none of the system TrueType fonts render optimally at that size. I've tried writing code to draw font shapes to off-screen bitmaps, and then use DrawImage to copy those bitmaps to the screen, but I can't get good performance. This is for development, not production, so performance doesn't have to be absolutely optimal, but I don't want to spend too long waiting for screens of data to refresh.
What would be the best way of either making .net display a font which is pixel-perfect what I want, or else building a bitmap out of lots of little pieces quickly? I'm using vb.net, so I can't simply generate a bitmap as a byte array and pass that to the Bitmap constructor unless someone can show me how to convert an array into an IntPtr.
I have a table with a column/field (type : nvarchar) that stores text. The text is read from a text file and written to the database using vb.net application.The text in the text file contains Turkish characters such as the u with 2 dots on top(in the future it will be in different languages )When I open the table, the text in the column is not readable.It converts the Turkish special character to some unreadable characters. Is there anyway to make the text readable in the table?
View 4 RepliesIs there anyway to store a string in the code of an application and not let it be readable by reflection? For example if I have:
Dim ServerAddress as String = "10.10.10.10"
Is there any way to make ServerAddress' content not readable.
Is it possible to use the streamWriter to read a .txt file thats in a web address online?
View 1 RepliesI was wondering which is the function / namespace I need to use in VS 2010 (using VB) to make a folder completely unaccesible (not even readable).
View 1 RepliesI am trying to pass to a "SendEmail" class that I created an attachment from a stream.Here is my stream from the form:
Private Sub button_Email_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button_Email.Click
Dim myimagestream As MemoryStream = New MemoryStream()
myimage.Save(myimagestream, Drawing.Imaging.ImageFormat.Jpeg)
Dim se As New SendEmail
[Code] .....
All seems to go fine until I get the email and try to open the attachment. The file is not readable but it's not a zero byte file.
I've added an attribute for a user readable display name to my Enum values.However my code to convert from the user readable display name back to the Enum (function ToEnum) seems very convoluted.I am wondering if I am missing a better way of doing this (I am using Visual Studio 2010 with SP1.) [code]
View 10 RepliesHow can I convert a (unix) timestamp (which I get from a web service as integer) to a human readable date?
View 3 RepliesGreetings, I'm looking for a way to encode a string into HTML that uses human-readable tags such as ê (=ê). At the moment, I am using the HttpUtility.HtmlEncode() function, but it appears to return numbered tags instead of human-readable ones. For example:
Dim str as string = HttpUtility;HtmlEncode("vente - en-tête")
'Expected: vente - en-tête
'Actually received: vente - en-tête
Is there a setting or function in ASP.Net to encode a string into HTML resembling the first comment?
EDIT: I am looking for this kind of functionality because the text is saved HTML-encoded in the database. The text comes from a bunch of MS Word documents that have been converted to HTML.
I have two windows forms in my application, and I want to have variables that work between them. How would I do this?
View 2 RepliesI want to calculate the score on one form and display the score on another form
View 7 Repliesi have a dialogbox (dialog1) i will assign the input from textbox a variable to the from1 but i cant do that.the variable in form1 is Dim get_from_dbox As Long i try to assign to it from dialog1 like below it fails form1.get_from_dbox = Textbox1.Text but i can assign to textbox??like that which works well
form1.RichTextBox1.Text=Textbox1.Text I am new programing i know i am wrong .don't know where?
I am struggling to find out how to use a msg box to display the value of a variable.
I've tried a number of permutations, and searched for hours to find a tip.
My code is currently:
Private Sub btnShowTotalCost_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnShowTotalCost.Click
If (radCorpTravel.Checked) Then
[Code].....
i have 2 forms -> form 1 and form 2
in form 1 -> 1 button
in form 2 -> 1 textbox and 1 button
when I click button in form 1, it will show the form 2..how can i pass the variable (data from textbox in form 2) into a variable in form 1 after clicking the button in form 2 ?
When I declare a variable as public, shouldn't it be available in another form? I am trying to write a windows mobile prg with 12 static mileage points, form1 has the 12 buttons for start point, but when I call form2 with the destination points, my start variable value is not carried over. I intend to then assign a mileage based on the two points and write to file on mobile device. We support 12 schools, and I want my employees to track mileage easily.
Public Class main
Public start As String = "start"
Public dest As String = "dest"
Public miles As Decimal = 0
[Code] .....
I want to create a variable to be used by multiple forms, so I created a module that looks like this:[code]I expected the title of that specific form to be "(Name)'s Settings"But instead, it just says "'s Settings," as if the variable had never been assigned a value.
View 4 RepliesIn my previous knowledge of programming, i used to use global.variable = true how could i achieve this so the variable could be used across all forms?
View 1 Replies