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

    Cross page Postback

    Having the same problem. I just created a samiliar thread. I am new to ASP.net also. It seems that even when a simple button is clicked on a single page the page_load event and all the above are always trigged therefore declaring the same variables and resetting them all the time
  2. antonio622

    Database Commands?

    I wasnt using the correct syntax: System.Data.SqlClient Thanks Anyhow
  3. antonio622

    Database Commands?

    I am quite new to ASP.net but I no stranger to the SQL and .net database design process. I know that ASP.net has numerous wizards as does Visual Studio.net has. I actually enjoy and like to access my database through code only. (using datatables) Including: (Declarations) Private...
  4. antonio622

    Sending WebForm data from one page to another!

    1) Use Querystring variables to pass the data (GET method) 2) Set the PostBackUrl to pass the data (POST method) 3) Server.Transfer 4) Store the values in the Session/Cache/Context objects Which is the better or faster of the 4 methods above? I like the Server.Transfer approach! I find it easier.
  5. antonio622

    Controlling a Remote Computer From WebBrowser

    I know this post is probably a long shot as far as getting any replies but I ran into something that amazed me yesterday. My neighbor called me because she couldnt get online on a new laptop her kids got for Christmas. Of course she was making a basic mistake configuring her internet connection...
  6. antonio622

    Sending WebForm data from one page to another!

    Thank you greatly for your response. I read through a book recently on ASP.net 2.0 and with my experience of Microsoft programming I skipped through the LOGIN SERVICE WIZARDS. I guess it would be great to experiment with it because it will contain some helpful code. I basically want to have...
  7. antonio622

    Sending WebForm data from one page to another!

    I'm back to ASP.net programming. Ive been writing games in DirectX for about 6 years and got away from Database programming. Before that I used the old ASP and now I am new to ASP 2.0 which I believe is a different animal. This post is about sending WebForm data from one .aspx page to another...
  8. antonio622

    At Home Server

    Thanks to all. I definately want to accomplish this using ASP.net. As for the Home Server I've just been accepted at AspSpider for hosting my ASP for free for now. The only question I have left is the database? Should I use Access or SQL Server?
  9. antonio622

    At Home Server

    I am setting up a small online business to service Home Owners who need contractors: Framers, Plumbers, HVAC, Flooring, etc. There will be a page for Contractors to Join and a page for Home Owners to join. Including UserNames and Passwords. And of course their info will be stored in a database...
  10. antonio622

    At Home Server

    Does anyone hsve any ideas or references on how to create a small home server on my computer so I can test my database apps from other computers? And also; Ive been created database programs in VB.net for a while without multi-user function on a sole computer. The last time I created a database...
  11. antonio622

    PictureBox Help

    I have 8 horses represented by 8 PictureBoxes and each horse overlaps each other in the race. The background color for each picture (bmp) is white. How can I make the white background not appear in each PictureBox so that only the horses appear? To see each horse behind and in front of others as...
  12. antonio622

    VB.Net 2005 & Windows Mobile

    I posted a recent question on this topic some time ago about the basics referring to mobile device types and general info. Thanks to all information recieved I purchased VS2005 Professional and A Verizon Pocket PC Phone. I had to install Compact Framework 2.0 onto the Windows Mobile 5 OS I...
  13. antonio622

    Windows Mobile Help

    I have one more question: I have Visual Basic.net 2003 Professional and it contains Mobile features. I have searched and found Visual Studio 2008 Beta. Does this contain Mobile Features?
  14. antonio622

    Windows Mobile Help

    Thanks to all! I just purchased the Verizon XV6700 Pocket PC & looking forward to diving into this project.
  15. antonio622

    Windows Mobile Help

    Ive been programming in C and VB.net for about 15 years. I am not currently employed as a software developer because I own a Heating & Air Conditioning business. In this field of work the laws and regulations are getting very strict. In a newly installed Heating and Air Conditioning system or a...
  16. antonio622

    .NET Compact Framework for Mobile Devices

    I have VB.Net 2005 Express Edition(Free Version). I want to create a Mobile application and I have downloaded the Compact Framework for Mobile Devices and when I open up VB.net and choose to create a new project the Mobile Device template doesnt exist. Is the omitted from the Express Edition...
  17. antonio622

    MaskedEditTextbox - Handling Space Character

    I have a masked edit textbox in my program with the mask value set to #### I can however enter a value like 5 55 which can cause alot of problems throughout the program. It seems that the space character, left & right arrow keys (which produce spaces) are the only character other then numbers...
  18. antonio622

    Retrieving Whole Number from a Decimal without Rounding?

    Thanks to all replies!!! Once again you have all helped me to move ahead in my project. I used computerjin approach.
  19. antonio622

    Retrieving Whole Number from a Decimal without Rounding?

    I do like this approach and if there is no better idea I will use it. I rather try to keep my number as a numeric variable without converting it to a string as I will use this returned value elsewhere in my code to calculate another numeric variable in my program. If I do take this approach...
  20. antonio622

    Retrieving Whole Number from a Decimal without Rounding?

    I have a variable declared as Single and I am trying to retrieve only the whole number without rounding up or down as in the following number: 3.959 I only want to assign 3 in the number above to another variable. If I do this in code using format number and read only the whole number of...

Part and Inventory Search

Back
Top