I'm creating a DLL file that has a reference to another DLL file.Is it possible to create a DLL file with the other one inside (thus not referring to another DLL file somewhere outside, but referring to itself).Eg: I've a.dll referring to b.dll.I want to include b inside a, hence having one dll file instead of 2.I know this is not the purpose of dynamic link libraries, but my libraries are about 15kb and with not page fault so often. So it doesn't really matter.
This is what I am trying to do. I need to create some data inside my app and send it to another app as a file. But this 'file' should never be written to the hard drive. It will only ever exist in RAM.
Im wonder how i can create a textfile from the text inside in the textbox. I have already begun with the code, but i get an error.
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Dim output As String = Nothing output = TextBox2.Text output = GetFileContents("C: est.txt") End Sub
I have a class that add extra information about a column for linq2sql (see code below) right now, I have to explicitly tell what column I want that info on, how would you put that code with a loop on every column in every table from a dbml file? I was doing my test on a very very small DB, now I have to implement it on a much more bigger database and I really don't want to do it manually for every tables/columns it will take hours.
how it's being used:
Partial Class Contact ''contact is a table inside a dbml file.
Private _ContactIDColumn As ExtraColumnInfo Private _ContactNameColumn As ExtraColumnInfo Private _ContactEmailColumn As ExtraColumnInfo
im new to coding (started coding last month) so im a little stuck on how to do this, im making some emulation programs to learn coding with, and a part of it is to point the app to a .iso/.bin file and scan the data inside of the iso/bin to check if a file exists.[code]My issue is i cant find any class examples, or any information etc on how to code it so my application can see the data inside of the iso/bin instead of just see'ing the iso/bin file, so that i can then check the data inside the iso to see if the file exists etc.Im a novice still at coding so making a new class myself to look inside the iso/bin is to complex for me.
I'll tell you what I'd like to do which is to create a directory listing of every file inside a specified directory and then use a loop to upload each file in this directory to a remote folder via FTP.
I create a new mdi child inside my mdi parent. do the work, save the data and close the form.Then I open the same form again, different record, and it opens up cascading as if the 1st form is still open. (even though it is closed)I've search the net for the past hour, and can find no concrete information regarding this issue.Now imagine sales department creating 100 sales orders a day. they keep on having the issue to move the form back to the top.
I have File Like "Sample.bak" and when I compress it to be "Sample.zip" I lose the file extension inside the zip file I meann when I open the compressed file I find "Sample" without any extension.
I use this code :
Dim name As String = Path.GetFileName(filePath).Replace(".Bak", "") Dim source() As Byte = System.IO.File.ReadAllBytes(filePath) Dim compressed() As Byte = ConvertToByteArray(source) System.IO.File.WriteAllBytes(destination & name & ".Bak" & ".zip", compressed)
Or using this code :
Public Sub cmdCompressFile(ByVal FileName As String)
'Stream object that reads file contents Dim streamObj As Stream = New StreamReader(FileName).BaseStream
[CODE]...
I need to compress the file without loosing file extension inside compressed file.
I need to call a web service to receive a JSON object which I'll parse before rendering the content. Here's the code for the same:[code...]
This works as a stand alone ASP.Net page. However, I need this as a Web Part to port to a Sharepoint site. Using the method described here I've given the above code in the RenderControl() method. I get the error "The "CustomWebPart" Web Part appears to be causing a problem. Request for the permission of type 'System.Net.WebPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed."[code...]
Like in topic.I want adddashes to variable.So textbox1.text = "Nice "weather" is..."BUT it's not working :/ when I'm using dashes VB 2010 thinks that I want close
I am trying to create a new instance of a form if its not allready been created the only problem is is that the instance creation is inside a worker thread.[code]...
Basically, I am looking to create a program with the CMD (command prompt) window inside of it.Along with a drop-down list, containing a few pre-made codes.For example;Is the easiest way to kinda accurately show what i'm attempting.Cross-thread operation not valid: Control 'txtResults' accessed from a thread other than the thread it was created on.
i would like to ask if how do i create a column of picturebox.. something like a thumbnail, with a specified number of columns inside a form.. the number of picturebox depends on a variable.. has anyone done this?something likeimage1 image2 image3image4 image5 image6
I need some pointers to how I get my VB6 Application to extract some data from a website. I have a page address where an xml file is sitting and I need to know how to make the prog reach out and grab it.
I have question that very difficult for me, I have one File that contains 2 Image File in footer of File, The Image File is Jpg and Bmp File, in Offset 200 of File contain Jpg File and in end of Size Jpg File, there are BMP File.
I am trying to create an application that will copy files with a "*.1" extension over to another directory and change the file extension to .tif. The problem is that the *.1 files are located within zip files. Is it possible to copy files out of a zip file without having to extract it? The code I have so far is below. I have only gotten to the point to list all *.zip files found in a specific directory in a listbox. I am really looking to list all *.1 files found within all .zip files in a specific directory. Once they are all listed in the listbox, I will then chose a destination directory, copy them to the destination directory and change the files from a .1 extension to a .TIF extension.
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click ListBox1.Items.Clear() FolderBrowserDialog1.SelectedPath = "C:\"
I have an external project (DLL) that I have referenced in my project. One of the requirements of using that DLL is to include an XML file in the same directory as the DLL. Now I know in a production environment I could just add that DLL to the GAC and place the XML file in that same folder. However, that doesn't help me when I'm trying to debug it. I have tried including it into the BIN directory but it never gets moved to the Temp directory when compiled.
I have a text document that stores around 200 commands ,each on its own line with a value of either 0 or 1 after them. This determins if that command is ON or OFF.
I need to be able to manipulate the on/off values for 5 specific commands using a check box to say "turn this one on" if box is marked. or vice-versa.[code]...
I have a form called Form1. wherein Form1 has a split panel container. on the right side of Form1 is a web browser window. the right side are the buttons. one button there is calling another form. but there's a problem on this Form called Form2. I have google earth EXE and it's component files together with the same folder of the project. The Form2 will call the googleearth.exe file now... I know the program syntax