Jump to content
Xtreme .Net Talk

DayWalker

Avatar/Signature
  • Posts

    51
  • Joined

  • Last visited

About DayWalker

  • Birthday 12/14/1975

Personal Information

  • Visual Studio .NET Version
    Visual Studio 2003
  • .NET Preferred Language
    VB.Net

DayWalker's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi there I have a VB app that the user enters in data into a textbox then prints it out on a form. The textbox is a multiline now when it is printed onto the form it runs off the edge and doesnt start a new line. Basically i need to split the text into 60 characters and put them in a array then run through the array and print the text.....hope it sounds ok...... I am abit lost here dont really know where to start. Any help to get me started will be appreciated
  2. Thanks MikeJ but could you perhaps show me a example im lost in a thoughtless state.
  3. I was wondering if anyone could help. I hav created a document with VB ,The user enters in a description into a textbox and when they click the button it prints out what they have typed on to the document. The only thing is sometimes the string is long so it goes off the page to the right and does not start at a new line (vbcrlf). Here is a piece of my code: Dim strCode As String strCode1 = txtCode1.Text e.Graphics.DrawString(strCode1, fntInput, Brushes.Black, 40, 425) Any help would be great thanks. :rolleyes:
  4. I have a windows app that i have created. The first time you use it you need to enter in a software key. I write a file to the HDD and and every time the program is started again it checks to see if the file exists and reads the key. My problem is that i want to encrypt the key( at the moment i am using a streamwriter and you can view the file in Notepad) so that it cant be viewed. Is this possible?:confused:
  5. Declare the forms in a module. And refrence the checkboxes as Form1.CheckBox1.CheckState.....ect
  6. ASP.Net. Sorry for the ignorance but how would i go about doing that?
  7. I have a real starter question here. I am filling a dataset from a sql db. I then bind data to a drop down list so the user can select a certain model. Once the user has selected the model i want to bind the models specifications into labels so that it will be displayed. For the life of me i cant get it to work in ASP. :confused:
  8. No not at all. I found the problem though i have a form that loads ontop of the main form at startup. For some reason Win98 did not like this piece of code i put in : Form1.TopMost = True After i commented that out it worked fine??
  9. I have deployed a windows app to a Windows 98 second edition machine. All the necessary updates have been loaded(MDAC2.7, IE6, DotnetFrameworkv1.1). It installs fine but when you click on the exe it gives me a error saying "This program has preformed a illegal operation and will be shut down".This app works fine on 200 and xp. And according to Microsoft should work on 98 as well. Any help would be GREATLY appreciated.
  10. Yeah if you dont wanna use underscores try camel casing eg: firstName; lastName ect. Try stay clear from spaces will only cause more confusion in coding.
  11. I was wondering if anybody could assist me. I have a windows app and it is connecting to a SQL db. Now the server name is not the same in all the locations. And it will be a huge task to redo the connection string for each location just to change the server name. Is there a way that i can make the app search the network for a server (kinda like sql server service) or by using the app.config somehow?
  12. No just as a welcome note on the top of the page that will display the user logged on.eg"ref=UID" Datahighway's syntax seems to be the easiest. I am new to ASP.
  13. Thanks i will try that
  14. Great, thanks for the help
  15. Starter question... How can i change the font and position of the output when i use response.Write in ASP.Net? The output is always at the top left of the page.
×
×
  • Create New...