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: *

  1. blink416

    nmake apache include error

    im new to c and apache, and am trying to compile the sspi apache .so module (in windows), but am getting the fatal error below. cl /nologo /W3 /WX /LD /MT /Ot /Ox /Oi /Oy /Ob2 /GF /Gy /I "E:\inventions\xlib\ssp i\branches\ennio\include" /I "E:\inventions\xlib\httpd-2.2.19\include" /I...
  2. blink416

    Javascript Drag & Drop Sortable List Compatibility with Form Submit ?

    I got it to work with an 'ugly' workaround ... (which requires autocomplete to be turned off, however)
  3. blink416

    Javascript Drag & Drop Sortable List Compatibility with Form Submit ?

    I have a problem at http://research.psychol.cam.ac.uk/~kl278/experiments/recruitment.php under the heading Favourite Foods : I'm using a script to sort a list of items by drag and drop (http://tool-man.org/examples/sorting.html) and it works fine on its own. The issue arises when I wish to...
  4. blink416

    Execute contents of string variable as code ?

    Thanks, this should work ! ! p.s. i got another solution in http://www.vbforums.com/showthread.php?&p=2824315#post2824315
  5. blink416

    Execute contents of string variable as code ?

    The title basically describes the problem, a specific example here : Dim ResPath As String Dim Stim1Physical As String Sub AssignCustomImageToPictureBox() ResPath = "IntegratedFeaturesConnectedTemplate.My.Resources.Resources._" Stim1Physical = "BeautifulCode" 'refers to a picture in VS...
  6. blink416

    Pause Code Execution - Wait for User Action ?

    Thanks, I can use ShowDialog and show form again if needed (http://www.vbforums.com/showthread.php?t=458960). Cheers !
  7. blink416

    Pause Code Execution - Wait for User Action ?

    Thanks for such swift replies ! i can put these to use, but ideally i would need not to close a form to conclude FeatureA() [so that FeatureB() could be called from CentralCaller()] ... e.g. if im waiting for the user to just click a command button and that event in itself to allow for continued...
  8. blink416

    Pause Code Execution - Wait for User Action ?

    Hello ! I have the following problem : I have a central sub in form A. e.g. Sub CentralCaller() FeatureA() FeatureB() End Sub and say a sub called FeatureA in a module, which involves use of another form and interaction with a user of my application. e.g. Public Sub FeatureA() FormB.Show...
  9. blink416

    Change public VBA variable from VBScript in an Outlook custom form

    Thanks for the advice ! p.s. for the purposes of linking information an alternative solution was suggested at http://www.outlookcode.com/threads.aspx?forumid=3&messageid=20953
  10. blink416

    Optional/negotiable and Competing Tasks

    Any suggestions please ???
  11. blink416

    Tools for representing and deciding between alternative strategies

    Any references with regard to the original questions (1) and (2) ?
  12. blink416

    Change public VBA variable from VBScript

    Hello ! Here's the problem : how do i set the value of a variable that i have defined as a public variable in VBA in MS Outlook 2007 main project1 class, how do i set the value of that variable in VBScript that is placed in a custom form in Outlook ? e.g. in Outlook main project1 class ...
  13. blink416

    Change public VBA variable from VBScript in an Outlook custom form

    Hello ! Here's the problem : how do i set the value of a variable that i have defined as a public variable in VBA in MS Outlook 2007 main project1 class, how do i set the value of that variable in VBScript that is placed in a custom form in Outlook ? e.g. in Outlook main project1 class ...
  14. blink416

    Tools for representing and deciding between alternative strategies

    Thank you for the link Gil, Freemind seems to neatly do what standard bullet lists can't, with a nicely structured visual organization and the folding feature. Does Freemind allow the user to input custom values at each node - e.g. cost, time, value for effort etc - that could be used in...
  15. blink416

    Tools for representing and deciding between alternative strategies

    1) I'm looking for methodologies available for 'corporate project control processes', for tools that help in developing strategies for scientific research in which there are billions of paths that one could follow, most of which are cul-de-sacs. In order to deliver, I believe one has to very...
  16. blink416

    Optional/negotiable and Competing Tasks

    Thanks a lot ! On second thought, my aim is more than diagramming and that is why I'm not simply sticking with Visio. Although visualization is a necessary step in the process, selecting best strategies should involve comparing alternatives for their cost, time, resources and quality involved...
  17. blink416

    Optional/negotiable and Competing Tasks

    Thanks for the comments PDQBach, I tried the highlighting and it works very well. This solves the formatting problem, leaving the way in which I would like Project to operate on these optional tasks unresolved e.g. Project still includes these optional tasks in critical path analysis thus not...
  18. blink416

    Optional/negotiable and Competing Tasks

    Hello ! I'm wandering how would it be possible, if at all, to include tasks in a MS Project workflow that : 1) Are added-value / optional / negotiable tasks, meaning that doing these tasks would potentially provide extra value to the quality of the project, but their implementation is not an...
  19. blink416

    newrow in a dataset bound to a textbox

    Thanks !!! It turns out there was a problem with a default value, so I hopefully solved it like this. Strangely enough it did actually write to the database before but wouldnt show any records beyond the one missing a DateOfBirth value, so navigation became affected as well. Dim myRow As...
  20. blink416

    newrow in a dataset bound to a textbox

    I have a textbox bound to a dataset filled by an OleDB adapter. I can navigate through the records in the GUI (Me.BindingContext(DataSetContact, "Contact").Position += 1 etc) but have been unable to add a new row to the dataset (and database). What code could I use to allow the user to click on...

Part and Inventory Search

Back
Top