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 SkipVought 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: eramgarden
  • Order by date
  1. eramgarden

    idea needed: estimating size

    I'm processing an image by putting it o 500x700 ackground canvas... I like to know how I can tell where the image ends so i could insert a text below it ..something like height of the image..This is what I have ..images ca be of different heights and this isnt workig right: Dim b As...
  2. eramgarden

    Calendar control...

    see if this helps: http://aspnet.4guysfromrolla.com/articles/030202-1.aspx
  3. eramgarden

    Setting up visual studio.NET and Localhost to develop several projects

    That's what I usually do. But .Net does create a folder for you in wwwroot. Open new projects , then choose "empty web application", name it and will create the directory for you.
  4. eramgarden

    LAUNCH the local Email (say Outlook) rather than SEND email automatic?

    I'm doing an email app with VB6. Doing that using CDO outlook dll. Look on Microsoft's site for CDO info. Also, on the VB6 forum on this site, there's a guy who uses email app a lot. Paul Brent I think. He might be able to help you.
  5. eramgarden

    Easiest Java question ever..

    I'm not a Java developer but someone gave me a code and I need to see how one of the routines work... When I click on <appname>.jpx to open it, i get a msg that "JBuilderw.exe" is not found... I had downloaded a developer Free edition from java.sun.com ... I had removed it and I can not...
  6. eramgarden

    dynamically showing information

    I used this link to code a datagrid from scratch: http://aspnet.4guysfromrolla.com/articles/040502-1.aspx
  7. eramgarden

    Change HTML Code

    someone suggested 2 things to me: One to organize what I want to display in groups and offer links to those groups.. also, someone said to create the textboxes/controls on the fly...and gave me this code: <asplaceholder id="thisPlace" runat="server"/> in code (and please keep in mind this...
  8. eramgarden

    Only one DataTextField?

    found my answer..either what I did or use New ListItem.
  9. eramgarden

    Only one DataTextField?

    I have a RadioButtonList and I want to display firstname and lastname next to each radio button... issue is firstname and lastname are seprate fields.. My workaround was this but wondering if there's another way of doing this .. This is the HTML: <asp:radiobuttonlist...
  10. eramgarden

    dynamically showing information

    I am not so sure about how I would then format the information displayed ..I havent tried this myself but maybe creating the fields to be displayed on the fly... somone gave me this sample code but i havent tried it myself <asplaceholder id="thisPlace" runat="server"/> in code (and please...
  11. eramgarden

    Newbie Question to Display Database Grid

    http://aspnet.4guysfromrolla.com/articles/040502-1.aspx
  12. eramgarden

    ASP.Net is only compatible with IE???

    TargetSchema only gives me 3 option: IE 5.0 IE 3.02/Navigator 3.0 Navigator 4.0 Hmmm...the pain continues...
  13. eramgarden

    Height

    I have a 500x700 canvas, have an image on top of it... I want to find where the image ends on the canvas and add a line of text to the bottom ...images can be of different height and width I tried to use Height of canvas, height of image , subtract...but i dont think that would work because...
  14. eramgarden

    How to find NEWLY inserted Data

    can u use "select top 10 * from <table> where ..."... Or "top <whatever rows u want> * from <table> where.." Or, can u you relate this table to another table that has datetime or identity?
  15. eramgarden

    howcome line breaks in outlook??

    I have a VB app that sends a line of URL to receipients... for one them, this one line breaks in 2 Is there a setting or something in Outlook for number of characters per line or something?? I think she has either outlook 2000 or 2003. any ideas?
  16. eramgarden

    Rectangle

    I want to create a canvas/rectangualr background, 500x700 and then put my image on top of the canvas This is what I have but i only get a white rectangle with the font and NO IMAGE on top of it.. what am I missing? Dim strFileToConvert As String strFileToConvert = "C:\source1.Tif"...
  17. eramgarden

    ASP.Net is only compatible with IE???

    I added "Page.IsValid" on the onClick of the submit button and now Mozilla catches the validators... However..howcome Mozilla gets rid of button background colors and button sizes?? This is the .Net code with image colors and sizes <TABLE id="Table1" cellSpacing="0" cellPadding="0"...
  18. eramgarden

    ASP.Net is only compatible with IE???

    I checked the "designer" and it is set to "JScript". In IE I cant get pass the login UNLESS i enter the values in the 2 textboxes and choose a dropdown value. This is correct In Mozilla , the validtor sometimes works, sometimes it doesnt check for the validation and goes to the next page...
  19. eramgarden

    ASP.Net is only compatible with IE???

    I'm developing my first ASP.Net project. Have a book from Mike Gunderloy..I think he has something in his book that ASp.Net is compatible with Mozzila and Netscape... On my login page, i have a field validator that makes sure a value is picked from a dropdown list. In IE, it works and...
  20. eramgarden

    convert TIF to PDF: doable in .net??

    I'm working on a image converter application... I'm converting TIFF to JPG... But i like to know how I can convert TIFF to PDF any sample code/websites/ideas?

Part and Inventory Search

Back
Top