Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: whodaman
  • Content: Threads
  • Order by date
  1. whodaman

    Accesing Parent Class

    Hi all, I've been extreamly stuck trying to figure this out. How would you access the parent class? For example: Public Class Foo Dim myInt as Integer Dim cMoo as Moo Public Sub main() myInt = 0 cMoo.changeMyInt() End Sub End Class Public Class Moo [???: inherits...
  2. whodaman

    Desiging large programs - where to store global vars?

    Hi all, I am desiging an ecosystem modeling software. There is an enormous list of global variables that is shared/used throughout the program. I know from good programming techniques, the exe should contain almost nothing, which should house the user controls that call the main computational...
  3. whodaman

    VB DLL calling C++ DLL

    Is there away for VS to do this? I'm assuming it's managed DLL. Isn't this one of .Net's key capabilities? What I want to do is have a VB DLL that calls functions in a C++ DLL to speed up the code. I've tried setting the project dependcies and a few other things. I'm just lost with ideas...
  4. whodaman

    .Net equlivent for PictureBox.Scale?

    Hi all, what is the closest thing to picturebox.scale? What this does is changes the twips to any user defined size (hope that didn't confuse you even more). I know MSDN says the Scale method is no more in use, but does anyone know a work around of any sort? Here is the MSDN link...
  5. whodaman

    Passing an array to a COM dll function

    Hi all, I tried creating a class that has a function that accepts an array. I am not sure what i'm doing wrong. I'm using VC++ .Net and trying to bring the COM into VB .Net. I see all my other functions except setArr (the one that passes the array). // My class public __gc class Boxes...
  6. whodaman

    Automated way of finding global vars

    I have code with over 1000 global variables. I want to eleminate some of them. Is there an automated way to find all the subs(functions) that call this variable? Has anyone written any scripts like this before?
  7. whodaman

    change $HTTP_GET_VARS without changing others

    I would like to go to the same url ex: index.php?name=Models&orderby=tempOrder&sub=mysub&othersub=myOtherSub but simply change one of the variables such as orderby=myModel without knowing/changing the other variables. Is there a way I can define $HTTP_GET_VARS['orderby']=myModel; and refresh...
  8. whodaman

    Extract XML file from URL

    I have found code to use the MS XML parser 3.0 as you can see below. What I want to do this be able to load and parse the XML file from a given URL. I simiply gave the .load function a URL string. But this does not work. How do I go about this? Private Sub Form_Load() Dim objDoc As...
  9. whodaman

    Cross Platform, Client-side VB code

    I posted a similar thread earlier, but it did not answer my question. Here's another try. I will be developing a simulation game that has to be cross platform, web based, and clientside. The reason this is in the VB.net section is because we have extensive simulation codes written in VB 6, and...
  10. whodaman

    Create Java like interface with VB net code?

    I have hundreds of pages of complex simulation codes written in VB 6. I would like to upgrade this to VB.net and have a web-based application, i.e., java class, or flash that has the interactivity and can do real-time simulation calculations (preferably on the client side). Does anyone have...
  11. whodaman

    Hits Manipulator Problem

    I currently run Webanalizer and my website has been getting a lot of hits / referrals from a lot of X-rated sites. This seems is a big problems in trying to get an accurate user reading. I really don't know much about this and would like to find out how I can get around this problem. Thank you
  12. whodaman

    Inserting Data in MySQL via file error

    Hi all, I tried excuting this command in MySQL using myPhpAdmin. I got this error: SQL-query : LOAD DATA LOCAL INFILE 'C:\\WINNT\\TEMP\\php25CE.tmp' INTO TABLE `data_pprc` FIELDS TERMINATED BY ';' OPTIONALLY ENCLOSED BY '"' ESCAPED BY '\\' LINES TERMINATED BY '\n' MySQL said: The...
  13. whodaman

    Best way of storing grids in database?

    Hi all, I am trying to store a large grid i.e 20480x10240. Think of this data as a picture, where each value represents a data. I would like to store this data into a database and be able to query a smaller area within that gird, much like cropping that picture and only transfering that...
  14. whodaman

    What is the Best 3D realtime animation software for VB?

    Is it 3d studio max? What other 3D animation software can VB talk to in real time? Thank you in advance
  15. whodaman

    Copy entire Document in MFC Window

    Hi all, I am trying to copy an entire document in a window, not just the window. I tried the following code: void CopyWndToClipboard( CWnd *pWnd ) { CBitmap bitmap; CClientDC dc(pWnd); CDC memDC; CRect rect; memDC.CreateCompatibleDC(&dc); pWnd->GetClientRect(rect)...
  16. whodaman

    String in VC++ Console Application

    I have been trying to manipulate strings around but cannot find a way to do so. I've tried #include<string> and using string myString;. I've tried CString. I really am lost how to manipulate strings in VC++ Console Application. Can people do it? Is there a sample code for this?
  17. whodaman

    Create animation on mouseover command

    Hi all, What I am trying to create an animation without creating animated gif's. I was thinking on having a mouseover command call a function that changes the image.src in a given amount of time. How can this be done? This is what I have now... i'm not sure why it doesn't really work. Can...
  18. whodaman

    Connecting to MySQL server error...

    I cannot seem to connect with my Server. I suspect it is the wrong connection string -> DRIVER={MySQL ODBC 3.51 Driver}. I am using MySQL 3.23.41 on the webhoster. Is this the right connection string to use? Dim conn As ADODB.Connection Set conn = New ADODB.Connection Dim...
  19. whodaman

    Display Text in certain location in Swing

    Hi, i've done this before but have spent the last 2 hours trying to find it again. What I am trying to do is display a string in any location (x,y). I am using a Swing applet. Thank you in advance.
  20. whodaman

    Control Speed of Video Display

    Hi all, What I would like to do is Load two video files on two different windows. From there, I would like to be able to control the speed of the video. Is this possible? If so, how would one do that? Or do I have to extract each video frame into a BMP and display it from there? Regards

Part and Inventory Search

Back
Top