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

    editbin debugger

    Does the ProcInfo method get executed between the debug compile and the execution of the EXE so that I can use the debugging? Or am I still stuck with doing a compile, manually running the editbin, and then doing a run?
  2. bont

    editbin debugger

    Sorry, I don't think you understood my question. I am not trying to run a dos command at run time. I have the problem that after I compile my EXE, I must go to a DOS prompt, find the EXE and run the EDITBIN function upon the EXE to increase the stack size. This means I can not use the...
  3. bont

    editbin debugger

    I am trying to find a way that I can automatically change the stack size of my newly compiled EXE when I am debugging from VS.NET 2005. Any ideas how to execute this: EDITBIN /STACK:2000000 [MY.EXE]
  4. bont

    panel control

    I am using the Adobe API to do the tedious task of generating PDF from scratch. I can create the most common tasks (new pages, importing pages, text boxes, buttons, etc), but I am wondering if there is any object that may work like a .net panel. The data is purely for display, so my intention...
  5. bont

    C# conversion byte arrays

    I have C# code as such: if ((attributeValue[i] < '\x20') && (attributeValue[i] != '\t') && (attributeValue[i] != '\n') && (attributeValue[i] != '\r')) { I am trying to convert it and much like it to vb.net I currently have this If (Asc(attributeValue(i)) < 20 And (attributeValue(i) <>...
  6. bont

    display page using multiple XML

    I am not quite sure what purpose quoting and disecting obvious reasons for the nature of a project has to do with solving the initial question? 1) Yes, it is possible to have SQL server supplied by your host system, but if you haven't guessed it.. It is NOT an option here to use SQL on my...
  7. bont

    display page using multiple XML

    Actually, when using a web host system, SQL Server is not possible. Also, efficiency, in this case would be most efficient as the XML is static and only updated periodically. XSLT could be done via ASP (preferred) or using Javascript (most efficient as it uses client's resources). In addition...
  8. bont

    display page using multiple XML

    Yes, it would be extremely easy to do this with DB; however, I am looking for efficiency, and would like to limit server time. Static HTML from fragmented XML data should do this the best. The question is how can I make the XML the most fragmented when it come from the primary indices (the...
  9. bont

    display page using multiple XML

    I am hoping to display a music library. I can construct multiple XML, one for: - Artist - Albums - Album Details Each Unique detail will have its own file, such that individual artists have their own file, individual albums have their own file, etc. I guess my only real question is...
  10. bont

    Merging Dynamic PDF

    I have many files of PDF, each of them are the same form with dynamic text boxes. We assume the textbox fields within the individual PDF share the same field/control names. Apparently when we use the abiltiy to create a PDF from multiple dynamic PDF, ADOBE does NOT appear to rename the textbox...
  11. bont

    Just a simple sample

    This is on the right track, but not quite the architecture I am looking for. I would like define a completely separate class MyClass { - AddButton - RemoveButton - etc } My problem is that I can't figure out how to declare it in the webform, so that I can: A) Only have to declare...
  12. bont

    Just a simple sample

    I have been look desparately for a code behind example which dynamically generates controls via a separate class. I have been able to do some of it; however, I don't understand how to initiate my class to work during the life of the form, as what I would like to do is have a series of controls...
  13. bont

    Display retrieved SQL data from Dataset

    Hi all. I retrieved a table from my SQL Server, and have used a dataadapter to fill a dataset. I then can use the GetXml method to save the schema of the dataset as a string. I would like to output this to the screen as an actual XML document (not embedded into any type of html document)...
  14. bont

    Outlook Form Letter

    What I would like to do is similate a form letter in Outlook. I would like to have an area that I can allow the user to input some data. For example, maybe their name (X). When they hit send, I would like the body of the letter changed to: Hello, my name is X. I am having a very hard time...
  15. bont

    Form Vs. Template and VBA

    I would like to create some type of form that I can input my fields and it will put together a form letter and send it. I have outlook 2003 and VB.net, but can't seem to figure out the best way to do it all. I don't really know the difference between a form and template. When I edit a form, I...
  16. bont

    Viewing Excel in Form

    I generated a new XML document using the Excel schema. I then used the navigate function of the Microsoft Web Browser ActiveX object to open the XML. This works great; however, when I close the form, the reference to the XML file remains (in typical Excel Open Document fashion), which means I...
  17. bont

    Using Web Browser to Display Excel

    OK, so I thought I was being smart by using the navigate method of the microsoft web browser Active X Object. My problem is that when the user closes the form, I don't have any control over the document in the browser. This is so because the type of document is detected as a...
  18. bont

    Embedded HTML

    I wanted to build a generic form which does nothing but display a Microsoft Web Browser. I did this using the Active X Reference (Let me know if there is a better way in VB.net). My problem was that I pass 2 params during creation of the form object, the form title and the URL to load. I...
  19. bont

    Refresh Menuitems

    I have a mainmenu on a form. I have included code to periodically change the value of one of the menu subitems of the mainmenu. The problem is that I can't seem to figure out how to tell it the value has changed and to refresh. This is what I have tried: Private Sub...
  20. bont

    Floating Textbox on Listview

    OK All, I have an ammended code for this: ' At Top Private SelectedPlayer As ListViewItem Private PrevSelectedPlayer As ListViewItem Private Sub lst_PlayersAll_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles lst_PlayersAll.Click If Not...

Part and Inventory Search

Back
Top