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 biv343 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: aryajur
  • Content: Threads
  • Order by date
  1. aryajur

    Create a file stream in VBA

    Hi, I need to open a file as a stream to pass it to a method of a library. How do I do that? The file is not a text file it will be a binary file. Any help would be really appreciated. Thanks
  2. aryajur

    How to handle events from dynamically generated controls?

    Hi, I am trying to generate controls dynamically at runtime. I am able to do that using the code below but I don't have a clue how to handle events from these controls. Any help would really be appreciated. Sub test4() ' Note: a textbox has no caption, hence the caption string...
  3. aryajur

    Spreadsheet

    Hello, I want to make a small spreadsheet program using Visual C++. Could someone give me some suggestions or tips on how I can go about making the GUI? Is there any way I can create a table in the window or do I have to take something like a canvas and draw the table in it?
  4. aryajur

    undefined error

    I have a Javascript file (.js) and when I try to run it by double clicking it I get an error that 'navigator' is undefined. Error Code is 800A1391. The initial lines of code for the file is: var agent = navigator.userAgent.toLowerCase(); if (agent.indexOf("konqueror")!=-1) agent = "konqueror"...
  5. aryajur

    How to Program the COM Port

    I need to program the COM port to read and write data from it. How can I do that in VC++. I tried the following program but it gives an exception when it is executed: /* This program is used to pull data from the serial port */ #include <dos.h> #include <stdio.h> #include <conio.h> #define...
  6. aryajur

    Problem defining extern variable

    Hello, I am using an Assembly module to link with a Visual C++ program. I have defined a variable in the CPP file in the global scope as extern &quot;C&quot; int i; and then I am using this _i variable in my assembly file. But when I build the project I get the following error message...
  7. aryajur

    Why doesn't this code run ??

    Why doesn't this code display the letter 'a' when I run it?? I assembled and linked it using Qeditor of MASM version 8 and then executed the exe file from the command prompt on Windows 2000. Nothing happens and the control just returns to the command prompt. .386 .model flat...
  8. aryajur

    Which code is synthesizable?

    Hello, I am very new to VHDL and I am still learning but I have one very basic confusion. I have read that VHDL follows a top down approach to design generally and it is very convenient. What I don't understand is suppose we make a VHDL program for some circuit, we may be starting from...
  9. aryajur

    Transmission Gates ??

    Is there any way to realise transmission gates in VHDL?
  10. aryajur

    How to display a JPG file in a frame

    Hello, I wanted to know how can we display a jpg image in a frame. What classes and methods can be used?
  11. aryajur

    How to make a Frame appear at the center

    Hello, I need to know how can one create a frame and display it exactly at teh centre of the current windows screen. If I try to get the dimensions by getMaximumSize() it returns a huge value for the height and width something like 32767. So I cannot get the screen simensions. How should I do this.
  12. aryajur

    How to Maximize a frame

    I was making this GUI with the AWT package. I cannot find a way to dreate a Frame and display it on the screen in a Maximized form. Please can anybody help me with this. I want to know how u can create a Frame inherited class and display the frame on the screen in the maximised form. I tried...
  13. aryajur

    How to get a tristate condition

    Hello, I am very new to VHDL and I have just started learning. I was curious to know how can one get a tristate condition to a gate in a VHDL code. Can it be done?
  14. aryajur

    How can I access a serial port in VC++?

    Hello, Can anybody tell me how can I access a serial port ot communicate to another port in VC++?
  15. aryajur

    Hot can I access the serial port?

    Hello, Can anyone help me as to how can I access the serial port thru a Java application ?
  16. aryajur

    How to draw basic shapes?

    Hello, I need to draw some basic shapes, especially quadilaterals given the 4 input co ordinates of it. How should I go about it. Can anybody give me any example code for this? I know nothing about graphics programming in VC++ I have only done graphics programming in Turbo C++. Please suggest...
  17. aryajur

    Hello World for MASM 32 !!

    Hello, I am new to using MASM 32 and I tried the following program in the MASM 32 version 8. The problem is that it assembles and links fine but when I run it Windows does not like it and gives an illegal function call. .386 .model flat, STDCALL .data message db...
  18. aryajur

    Strange Exception and Outcome

    I have a MIDlet running on the Sun´s Wireless Toolkit 2.0. The MIDlet has 2 threads running simultaneously. One thread is changing some variables while the other one is simply reading them. My problem is that SOMETIMES (not always, thats the irritating part) the Wireless Toolkit ´s KToolbar...
  19. aryajur

    Can I know the amount of Free memory

    I need to know the amount of free memory remaining on a system. Can this be done in Java. If it can be done please tell me how? Are there any classes??
  20. aryajur

    Problem in java.util.Date;

    I have created a form in a midlet and in the constructor of the Form I do this timeObject = new Date(1, 0, 1, 0, 45, 0); But when I try to compile it I get an error message in WTK saying &quot;cannot resolve symbol&quot; with the arrow pointing towards new. I have imported import...

Part and Inventory Search

Back
Top