Topics
-
- 1 reply
- 1.8k views
I want to create a web page essentially that others can utilize in their sites but pass vars back too. I know I can use a web service and allow others to call my functions and use the data but I want to create the page data for them as well. I know I can use I frames, but then I can not pass variables back. Can I create a control/aspx page and host it so someone else can use it within their aspx page? how do I do this, where to begin? I have done the image from aspx page emulation but not the same as it is only a display page/image. I want to allow interactive features in my page. Any help or direction would be much appreciated.
Last reply by joe_pool_is, -
- 1 reply
- 2k views
Hi, I have a aspx (with ajax control toolkit) that the code behind calls a method from another assembly. This method will call 100 other methods thus it will take long time. Is there any pattern/best practices on how to display progresses on this long method call? (i.e., at 10:00am, method 1 is started, 10:05am, method 1 is completed, ... etc). Event could be used to let the code behind to catch the progress messages. Thanks for any suggestion, Alan.
Last reply by nate, -
- 1 reply
- 1.5k views
Hello, I'm newbie to ASP. Please help we've 5usercontrols in 5 different files, we used them in a defaul.aspx. Now i have problem. I used Ajax tab's controller for 5 tab's i used 5 usercontrols in first user control we have a Add Button if we click on that Add button then it must navigate to 3rd usercontrol i.e 3rd Ajax tab. How can i do it? Can any one kindly help me init? I tried every thing no clues for me. Please can any one help me ? here is the screenshot please look http://i51.tinypic.com/n5r511.jpg -Ajay
Last reply by nate, -
-
- Leaders
- 10 replies
- 2k views
What would be the best approach to generate a random number that does NOT have the same equal chance of coming up. Although I would prefer an arc, a line would also fit for the job. Arc: ---- 0 # ## ### #### 50 ##### ######## ########### ################# 100 ######################## Line: ----- 0 # #### ####### ########## 50 ############# ################ ################### ###################### 100 ######################### So the above example tells the chance of randomizing a number between 0 to 100, where the more '#' equals a better chance of scoring. I could manually script the chances values inside an array …
Last reply by EFileTahi-A, -
-
-
- Administrators
- 1 reply
- 1.3k views
hi all, this is my first post here, i stored 2 files in my application resources in VB.NET and i want to copy these 2 files to a location using a folder dialog i tried this code but it didn't work If FolderBrowserDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then File.Copy(My.Resources.MyFile, FolderBrowserDialog1.SelectedPath) any code i can try? Regards.
Last reply by PlausiblyDamp, -
-
-
- Administrators
- 4 replies
- 3.2k views
problem statement is to open the image file on form & edit the image in same form & to set the properites of the object in that image when clcik on the image & then provide the edited image to controller which will run a robo on it Input image is autocad factory map I also wanted to know how can i get the object of autocad files as they have table block structure inside their file format i wnat to store these image so what should i use???? Can any body help in any of above case?////
Last reply by EFileTahi-A, -
-
-
- Administrators
- Leaders
- 7 replies
- 4k views
I have 4 forms.. MAINFORM.. FORM1 FORM2 FORM3 In my mainForm .. I have 3 button and 1 panel... I want to create application in which.. If i click button1.. PANEL will display form1.. if i click button2 .. panel will display form2.. if i click button3 .. panel will display form3...
Last reply by EFileTahi-A, -
-
-
- Leaders
- 1 reply
- 6.4k views
This is a Hard question(apparently simple): How do I COPY the selected text from a webBrowser page, and paste it to a text file( for example)? I have this until now: private void webBrowser1_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e) { //the 67 is the mousebutton no4 (I have 5 5buttons and a scrolwhell-A4Tech_X7 mouse) //the mousebutton no4 is set to "ctrl+c" keys (Copy) if (e.KeyValue == 67) textBox2.Text=webBrowser1.DocumentText; } Until now i cant manage to copy a text selection from webBrowser. How to do that? Thank you.
Last reply by snarfblam, -
-
-
- Leaders
- 5 replies
- 2.2k views
I suck at threading but now I really need it... I have an VideoTexture class that uses an internal thread to monitor the events of the video. when the video is done it raises an event complete. Now the event is captured in my XNA game class and it loads another video (Actually switches to another one that was loaded in the background) Since the videoTexture is pretty heavy on resources I need to dispose of it. I can't call a thread abort since that would kill my thread I use to make the switch. How do I solve this?
Last reply by snarfblam, -
-
- 0 replies
- 3k views
im doing a streaming application. It have 2 source udp video streams. and my application should re-stream one of the udp source . and when i press a button i need to switch between the 2 source streams. can anyone tell me how i can re-stream the video im getting from the 2 udp streams. Also my re-stream should be on udp too can anyone help????
Last reply by tripodhipole, -
-
- Leaders
- 2 replies
- 2.6k views
Hai everybody, I'm new here. I need help to solve my problem in vb. I using vb 2008. Actually I creating my application that can solve boot crash for Windows 7. I started code using batch file and convert into .exe format for application solution. The application solution is transfer file like: - ntoskrnl.exe - bootmgr - ntfs.exe - hal.dll Then I execute it using vb form. In real environment everything is going nice. But when I boot that application solution that I already integrate using vb form. The application solution is running as usual but there is no transfer file into directory that I specify. When I boot the application, directory C:\Windows\ …
Last reply by enciktangankida, -
-
-
- Leaders
- 1 reply
- 3.7k views
Encryption and Decryption in vb.net possible? 1)when my form load text.exe to text.enc file encrypted but when my form closed text.enc to text.exe file decrypted sample file name(text.exe file)(encrypted file text.enc)(decrypted file text.exe) How? plz give me sample..
Last reply by snarfblam, -
-
- 0 replies
- 1.3k views
Hi everyone, I still have one more problem getting total/available virtual memory, maybe I'm doing something wrong and just wanted to know your professional comments :) Select Case My.Computer.Info.TotalVirtualMemory Case Is >= 1073741824 GetRAMInfo += FormatNumber(My.Computer.Info.TotalVirtualMemory / 1073741824, 0) + " GB" + vbNewLine Case 1048576 To 1073741823 GetRAMInfo += FormatNumber(My.Computer.Info.TotalVirtualMemory / 1048576, 0) + " MB" + vbNewLine Case 1024 To 1048575 GetRAMInfo += FormatNumber(My.Computer.Info.TotalVirtualMemory / 1024, 0) + " KB" + vbNewLine Case 0 To 1023 GetRAMInfo += FormatNumber(My.Computer.I…
Last reply by usvpn, -
-
- Administrators
- 4 replies
- 2k views
hello, i am new to VB.net and I am trying to make a simple program to write to a table (test1) with two fields (ID primary key and name nchar(50)) Also I am using dataset and dataadapter I also have a form that binds the 2 fields. I have this button that binds the fields successufully Private Sub btn_bind_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_bind.Click Dim cmdupdate As New SqlClient.SqlCommand() Dim cmdselect As New SqlClient.SqlCommand() Dim prm As SqlClient.SqlParameter cnn.ConnectionString = "server=(local)\MSSMLBIZ;" & _ "initial catalog=test;" & _ …
Last reply by PlausiblyDamp, -
-
-
- Leaders
- 1 reply
- 1.7k views
Hi, I want to develop windows application/tool like selenium, using dot net... but not finding any solution on how to record/capture data from any browser using APIs....dont hv APIs also.... is anyone has any solution?
Last reply by snarfblam, -
-
-
- Administrators
- *Experts*
- 5 replies
- 101.3k views
255(dec) = FF(hex) = 11111111(BIN) I have a decimal number (Dim i As Byte / Integer) an i need to convert it to string and transform it to hex or binary. I know how to do this manually, but i think in .NET are implemented instructions for tihs. Example: Dim i As Byte = 255 Dim str As String str = i.ConvertToHEX ' How to do this? Console.WriteLine str ---- Output : FF Thanx predseda
Last reply by VBExpert, -
-
-
- Administrators
- 1 reply
- 1.3k views
Accesing Another Class Methods Yooo, Super-askingdude here! Is there a way to access Class methods and variables without using the Shared statement or the New statement? Here's my code: Public Class BigClassy Public vPublicVariable As Integer Public MyStructy As Structy ' I'm not sure if I have to use NEW here End Class Public Structure Structy ' Creating something like "Public BC as new BigClassy" here will do? Public Sub FindBigClassyVariable() BigClassy.vPublicVariable = 100 ' This returns an error of course End Sub End Structure Do I have to create a new instance of BigClassy within Structy to access the current value of …
Last reply by PlausiblyDamp, -
-
- 4 replies
- 2.9k views
I've got nice a nice piece of software that can serialize and deserialize settings from my project just fine on one PC, but I need to be able to deserialize the file on another PC running a similar (but different) application. I've searched here and online, and it seems I need to use "Assembly.LoadFile(string pathToAssembly)," but are there any directions on how to do this? I'm not sure how to get the path to the assembly if it is running on another PC. Would this require each PC to have a static IP that I could ping and get this information (our network administrator wouldn't go for that). Should I deploy the assembly for the other PC with this application? Woul…
Last reply by joe_pool_is, -
-
- Administrators
- 4 replies
- 3.6k views
Any thoughts on whether this will be a success or a flop? I was only 6 or 7 when my brother had one. Just seeing it on the website takes me back. I don't know if I can indulge in one for these prices. I think it's a pretty cool idea, but I think it's too pricey to have as a second system to just goof around with. Do you think there is a market that exists for this type of nostalgia at these prices? http://www.commodoreusa.net/CUSA_C64.aspx
Last reply by jcsites, -
-
- 0 replies
- 2.4k views
how can i enable the audio graph in my vlc plugin,, im using VB.NET to develop a mosaic application. the audio graph is working on my vlc player after changing some settings. but i dont knw how to setup the same settings on my vlc plugin through vb.net. i have tried using string arrays into the the 'add target' method's options.. but no luck.. can anyone help me out????????????????
Last reply by tripodhipole,
-
Who's Online 0 Members, 0 Anonymous, 18 Guests (See full list)
- There are no registered users currently online