Search results for query: *

  • Users: swu
  • Order by date
  1. S

    Image file batch processing (Out of memory error)

    Does anyone have a sample code for batch processing image files. I have some rough code put together but I keep getting an out of memory error. Can anyone recommend an effecient way to do this? Thanks in advance.
  2. S

    Get path and exe file for process.

    I'm trying to get the path and exe file for a process. I'm trying the following with no sucess. app = pProcess.StartInfo.FileName and app = pProcess.MainModule.FileName.ToString Any suggestions? Thanks in advance.
  3. S

    Can't Combine Strings from ASCIIencoding.GetString

    From this code snipet: Dim image As Bitmap = New Bitmap("c:\test.jpg") Dim propItems As PropertyItem() = image.PropertyItems Dim encoding As New System.Text.ASCIIEncoding() Camera = encoding.GetString(propItems(1).Value) MsgBox(Camera & " " & Camera) I...
  4. S

    Version Control Colaboration with multiple developers

    Are there any freeware or opensource solutions to assist with version control of vb.net code. We will be working over the internet, but could set up a VPN. Recommended best practices and recommnedations are welcomed. thanks in advance
  5. S

    GP4 image files

    Thx Thanks John, as always you are the man.
  6. S

    GP4 image files

    Could gp4 image files be converted to other image formats using vb.net? Thanks in advance.
  7. S

    detect a form name opened by another application.

    WoW! Perfect John, works like a charm!
  8. S

    Post data to a website (MySQL)?

    I need to get data from a vb.net to a webpage, where I want to be able to manipulate the data and display it online. My first thought is mysql. This process seems like a steep learning curve. Does anyone have any good sample code for connecting vb.net to a mysql Db? Thanks in advance.
  9. S

    detect a form name opened by another application.

    Does any one have a sample or a starting point for vb.net code that can detect when a form is opened by another app and read the name on the form? I want to create an app that runs in the sys tray and detects when another program opens a particular dialog box/form. Thanks in advance.
  10. S

    Modify multiple text boxes with sub

    I'm trying to modify multiple textboxes with a sub routine. This is a rough snipet I was testing, how do I set an object current via code? sub tboxmod() Dim n As Integer Dim Tname As String For n = 1 To 2 Tname = "TextBox" & n Dim TBox As TextBox Set TBox = Tname TBox.Text = "n" Next n End...
  11. S

    c# to vb.net application to control windows media player

    Could someone assist me in converting this code to vb.net, I tried some of the online converters but it isn't translating well. private System.Int32 iHandle; private void btnStop_Click(object sender, System.EventArgs e) { Win32.SendMessage(iHandle, Win32.WM_COMMAND, 0x00004979...
  12. S

    place textbox input handling code in a function?

    thanks Thanks vis . . . that will work The method I was looking at was passing the textbox object to the function, but yours will work just as well. I was having an issue passing a textbox object to a function. my code was something like Private Function nput(Tbox As TextBox) Dim Tbox As...
  13. S

    place textbox input handling code in a function?

    Could someone give me some direction/post a sample of how to handle user interaction with textboxes without having to cut and paste code for each text box? Basically I would like to create a few functions to handle testing and formatting of text box input by the user. I have the code for each...
  14. S

    Where to buy just VB.net

    eday/amazon If vs xpress 2005 doesn't work for you. Search ebay and amazon for .net 2003 deluxe The learning edition comes with vb.net standard...
  15. S

    Simple RSS Feed Reader

    I'm looking for some sample code that will create a simple rss reader. Anyone with some info to point me in the right direction. I just want the data to be visble on a form, maybe in a dropdown box. I'm not real familiar with databases, but maybe this is a good opportunity to learn. Thanks...
  16. S

    app to check for missing numerical files

    I have alot of files that contain a numeric in their file name that is sequential. i.e. file001.doc file002.doc, etc. I would like to write a vb.net app to check the directory and list any files missing from the sequence. I need help with what direction to start in. Thanks in advance! swu
  17. S

    Problem with Interop Assembly . . .

    Thanks! Thanks again!
  18. S

    Extend Object Model/Add functions to Objects

    Hope everyone had a great thanksgiving holiday! My question is basically how to ask my question. Being a newbe to .net I don't think I'm getting the terminology right. Basically I have an object model I'm working with that contains roadway alignments and profiles. I can access certain...
  19. S

    Problem with Interop Assembly . . .

    I am trying to access Autodesk Land Desktop through an interop. I need some basic .net troubleshooting. I created an interop with COMtoNET freeware so I can access the Land Desktop class library through .net. I think the library works with VB6, but there is a problem going to .net and...
  20. S

    Trial and error equation solving, what's most efficient?

    Anyone have any samples for trial and error solving. Basically I have two equations. I solve for the value of the first one and then use trial and error for a variable in the second one until it equals the solution of the first equation. A brute force in increments of 0.0001 gives me the...
Back
Top