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?
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...
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]
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...
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) <>...
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...
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...
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...
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...
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...
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...
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...
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)...
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...
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...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.